diff --git a/.github/workflows/dev_index_dump.yml b/.github/workflows/dev_index_dump.yml index 07f8c5a6c..32966abaf 100644 --- a/.github/workflows/dev_index_dump.yml +++ b/.github/workflows/dev_index_dump.yml @@ -8,7 +8,6 @@ on: schema-version: required: true description: Schema version to index - default: 'test' type: choice options: - v1 @@ -53,18 +52,19 @@ jobs: if: github.event.ref == 'refs/heads/dev' needs: check_permission steps: + - name: checkout + uses: actions/checkout@v2 - name: Index dump file id: indexdatadump run: | cd .github/workflows python -m pip install --upgrade pip pip install requests==2.23.0 - if [[ ${{ github.event.inputs.data-env }} == "v1" ]]; then + if [[ ${{ github.event.inputs.schema-version }} == "v1" ]]; then python index_dump.py -u ${{ secrets.INDEX_DUMP_DEV_API_URL }} -f ${{ github.event.inputs.release-dump }} -e ${{ github.event.inputs.data-env }} -he ${{ secrets.INDEX_DEV_API_HEADERS }} else python index_dump.py -u ${{ secrets.INDEX_DUMP_DEV_API_URL_V2 }} -f ${{ github.event.inputs.release-dump }} -e ${{ github.event.inputs.data-env }} -he ${{ secrets.INDEX_DEV_API_HEADERS }} fi - - name: Notify Slack if: always() uses: edge/simple-slack-notify@master @@ -73,5 +73,5 @@ jobs: with: channel: '#ror-curation-releases' color: 'good' - text: 'DEV full index from dump status: ${{ steps.indexdata.outcome }}. From file: ${{ github.event.inputs.release-dump }}. Schema version: ${{ github.event.inputs.data-env }}. Data env: ${{ github.event.inputs.release-dump }}Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + text: 'DEV full index from dump status: ${{ steps.indexdatadump.outcome }}. From file: ${{ github.event.inputs.release-dump }}. Schema version: ${{ github.event.inputs.schema-version }}. Data env: ${{ github.event.inputs.data-env }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' diff --git a/.github/workflows/dev_manual_index.yml b/.github/workflows/dev_manual_index.yml index e712a66bb..ca86ae86a 100644 --- a/.github/workflows/dev_manual_index.yml +++ b/.github/workflows/dev_manual_index.yml @@ -2,6 +2,13 @@ name: DEV manual deploy from dev branch on: workflow_dispatch: inputs: + schema-version: + required: true + description: Schema version + type: choice + options: + - v1 + - v2 directory-name: type: string required: true @@ -15,7 +22,7 @@ env: jobs: check_permission: runs-on: ubuntu-latest - if: github.event.ref == 'refs/heads/dev' + #if: github.event.ref == 'refs/heads/dev' steps: - name: Get Permission uses: octokit/request-action@v2.x @@ -34,7 +41,7 @@ jobs: fi check_validation: runs-on: ubuntu-latest - if: github.event.ref == 'refs/heads/dev' + #if: github.event.ref == 'refs/heads/dev' needs: check_permission steps: - name: checkout @@ -49,6 +56,7 @@ jobs: uses: actions/checkout@v2 with: repository: ror-community/validation-suite + ref: schema-v2 path: validation-suite - name: Validate files id: validatefiles @@ -58,11 +66,22 @@ jobs: cd validation-suite python -m pip install --upgrade pip pip install -r requirements.txt - if [[ -f "../${{ github.event.inputs.directory-name }}/relationships.csv" ]]; then - python run_validations.py -i ../files -f ../${{ github.event.inputs.directory-name }}/relationships.csv -p ../files/ --no-geonames - else - python run_validations.py -i ../files --no-geonames - fi + if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then + curl https://raw.githubusercontent.com/ror-community/ror-schema/schema-v2/ror_schema.json -o ror_schema.json + if [[ -f "../${{github.event.pull_request.head.ref}}/relationships.csv" ]]; then + python run_validations.py -i ../files -v 1 -s ror_schema.json -f ../${{github.event.pull_request.head.ref}}/relationships.csv -p ../files/ --no-geonames + else + python run_validations.py -i ../files -v 1 -s ror_schema.json --no-geonames + fi + fi + if [[ ${{ github.event.inputs.schema-version }} == 'v2' ]]; then + curl https://raw.githubusercontent.com/ror-community/ror-schema/schema-v2/ror_schema_v2_0.json -o ror_schema_v2_0.json + if [[ -f "../${{github.event.pull_request.head.ref}}/relationships.csv" ]]; then + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json -f ../${{github.event.pull_request.head.ref}}/relationships.csv -p ../files/ --no-geonames + else + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json --no-geonames + fi + fi - name: Notify Slack if: always() uses: edge/simple-slack-notify@master @@ -74,7 +93,7 @@ jobs: text: 'Validation status during DEV manual index: ${{ steps.validatefiles.outcome }}. In directory: ${{ github.event.inputs.directory-name }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' copy-files: runs-on: ubuntu-latest - if: github.event.ref == 'refs/heads/dev' + #if: github.event.ref == 'refs/heads/dev' needs: check_validation steps: - name: checkout @@ -89,8 +108,8 @@ jobs: run: | cd ./${{ github.event.inputs.directory-name }} zip files.zip *.json - aws s3 cp files.zip s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ github.event.inputs.directory-name }}/files.zip - aws s3 ls s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ github.event.inputs.directory-name }}/files.zip + aws s3 cp files.zip s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ github.event.inputs.directory-name }}-${{ github.event.inputs.schema-version }}/files.zip + aws s3 ls s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ github.event.inputs.directory-name }}-${{ github.event.inputs.schema-version }}/files.zip - name: Notify Slack if: always() uses: edge/simple-slack-notify@master @@ -106,7 +125,13 @@ jobs: cd .github/workflows python -m pip install --upgrade pip pip install requests==2.23.0 - python index_files.py -u ${{ secrets.INDEX_DEV_API_URL }} -d ${{ github.event.inputs.directory-name }} -he ${{ secrets.INDEX_DEV_API_HEADERS }} + if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then + python index_files.py -u ${{ secrets.INDEX_DEV_API_URL_V1 }} -d ${{ github.event.inputs.directory-name }}-v1 -he ${{ secrets.INDEX_DEV_API_HEADERS }} + fi + if [[ ${{ github.event.inputs.schema-version }} == 'v2' ]]; then + python index_files.py -u ${{ secrets.INDEX_DEV_API_URL_V2 }} -d ${{ github.event.inputs.directory-name }}-v2 -he ${{ secrets.INDEX_DEV_API_HEADERS }} + fi + - name: Notify Slack if: always() uses: edge/simple-slack-notify@master @@ -115,5 +140,5 @@ jobs: with: channel: '#ror-curation-releases' color: 'good' - text: 'DEV index status: ${{ steps.indexdata.outcome }}. From directory: ${{ github.event.inputs.directory-name }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + text: 'DEV index status: ${{ steps.indexdata.outcome }}. Using version ${{ github.event.inputs.schema-version }}. From directory: ${{ github.event.inputs.directory-name }}-${{ github.event.inputs.schema-version }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' diff --git a/.github/workflows/dev_merge.yml b/.github/workflows/dev_merge.yml index 221c5768f..cc5d4949d 100644 --- a/.github/workflows/dev_merge.yml +++ b/.github/workflows/dev_merge.yml @@ -39,8 +39,8 @@ jobs: run: | cd ./${{ env.release_branch }} zip files.zip *.json - aws s3 cp files.zip s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV}}/${{ env.release_branch }}/files.zip - aws s3 ls s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ env.release_branch }}/files.zip + aws s3 cp files.zip s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV}}/${{ env.release_branch }}-v2/files.zip + aws s3 ls s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ env.release_branch }}-v2/files.zip - name: Notify Slack if: always() uses: edge/simple-slack-notify@master @@ -49,14 +49,14 @@ jobs: with: channel: '#ror-curation-releases' color: 'good' - text: 'Copy status to DEV S3 Bucket: ${{ steps.copyfiles.outcome }}. On branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_REF_NAME}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + text: 'Copy status to DEV S3 Bucket: ${{ steps.copyfiles.outcome }}. Using v2. On branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_REF_NAME}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' - name: Index file id: indexdata run: | cd .github/workflows python -m pip install --upgrade pip pip install requests==2.23.0 - python index_files.py -u ${{ secrets.INDEX_DEV_API_URL }} -d ${{ env.release_branch }} -he ${{ secrets.INDEX_DEV_API_HEADERS }} + python index_files.py -u ${{ secrets.INDEX_DEV_API_URL_v2 }} -d ${{ env.release_branch }}-v2 -he ${{ secrets.INDEX_DEV_API_HEADERS }} - name: Notify Slack if: always() uses: edge/simple-slack-notify@master @@ -65,5 +65,5 @@ jobs: with: channel: '#ror-curation-releases' color: 'good' - text: 'DEV index status: ${{ steps.indexdata.outcome }}. On branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_REF_NAME}. Directory: ${{ env.release_branch }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + text: 'DEV index status: ${{ steps.indexdata.outcome }}. Using v2. On branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_REF_NAME}. Directory: ${{ env.release_branch }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' diff --git a/.github/workflows/dev_pull_request.yml b/.github/workflows/dev_pull_request.yml index 108255d2a..1c1206424 100644 --- a/.github/workflows/dev_pull_request.yml +++ b/.github/workflows/dev_pull_request.yml @@ -49,6 +49,7 @@ jobs: uses: actions/checkout@v2 with: repository: ror-community/validation-suite + ref: schema-v2 path: validation-suite - name: Validate files id: validatefiles @@ -58,10 +59,11 @@ jobs: cd validation-suite python -m pip install --upgrade pip pip install -r requirements.txt + curl https://raw.githubusercontent.com/ror-community/ror-schema/schema-v2/ror_schema_v2_0.json -o ror_schema_v2_0.json if [[ -f "../${{github.event.pull_request.head.ref}}/relationships.csv" ]]; then - python run_validations.py -i ../files -f ../${{github.event.pull_request.head.ref}}/relationships.csv -p ../files/ --no-geonames + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json -f ../${{github.event.pull_request.head.ref}}/relationships.csv -p ../files/ --no-geonames else - python run_validations.py -i ../files --no-geonames + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json --no-geonames fi - name: Notify Slack if: always() @@ -71,5 +73,5 @@ jobs: with: channel: '#ror-curation-releases' color: 'good' - text: 'Validation status during PR to DEV: ${{ steps.validatefiles.outcome }}. On branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_HEAD_REF}. In directory: ${env.GITHUB_HEAD_REF}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + text: 'Validation status during PR to DEV: ${{ steps.validatefiles.outcome }}. Using v2. On branch: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/tree/${env.GITHUB_HEAD_REF}. In directory: ${env.GITHUB_HEAD_REF}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' diff --git a/.github/workflows/generate_dump.yml b/.github/workflows/generate_dump.yml index 523e11f17..bb35d37bd 100644 --- a/.github/workflows/generate_dump.yml +++ b/.github/workflows/generate_dump.yml @@ -2,6 +2,13 @@ name: Create data dump on: workflow_dispatch: inputs: + schema-version: + required: true + description: Release schema version + type: choice + options: + - v1 + - v2 new-release: type: string description: Name of the directory that the new release is located in @@ -35,7 +42,7 @@ jobs: with: repository: ror-community/curation_ops token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} - ref: dump-csv + ref: v2-crosswalk path: ./curation_ops - name: Set up Python environment uses: actions/setup-python@v2 @@ -45,7 +52,12 @@ jobs: id: gendumpscript run: | cd ./curation_ops/generate_dump/ - python generate_dump.py -r ${{github.event.inputs.new-release}} -e ${{github.event.inputs.prev-release}} -i '../../ror-records-test' -o '../../ror-records-test' + if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then + python generate_dump.py -r ${{github.event.inputs.new-release}} -e ${{github.event.inputs.prev-release}} -i '../../ror-records-test' -o '../../ror-records-test' -v 1 + fi + if [[ ${{ github.event.inputs.schema-version }} == 'v2' ]]; then + python generate_dump.py -r ${{github.event.inputs.new-release}} -e ${{github.event.inputs.prev-release}} -i '../../ror-records-test' -o '../../ror-records-test' -v 2 + fi - name: cat error file if: ${{ steps.gendumpscript.outcome != 'success'}} run: | @@ -73,4 +85,4 @@ jobs: with: channel: '#ror-curation-releases' color: 'good' - text: 'DEV Data dump ${{github.event.inputs.new-release}} generation status: ${{ steps.commitdumpfile.outcome }} Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + text: 'DEV Data dump ${{github.event.inputs.new-release}} generation status: ${{ steps.commitdumpfile.outcome }}. Using base version ${{ github.event.inputs.schema-version }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' diff --git a/.github/workflows/generate_relationships.yml b/.github/workflows/generate_relationships.yml index a2fd1592c..63cfa3feb 100644 --- a/.github/workflows/generate_relationships.yml +++ b/.github/workflows/generate_relationships.yml @@ -2,6 +2,13 @@ name: Create relationships on: workflow_dispatch: inputs: + schema-version: + required: true + description: Schema version + type: choice + options: + - v1 + - v2 directory-name: type: string description: Name of parent directory containing records to generate relationships for. Needed only if different from branch name. @@ -30,8 +37,13 @@ jobs: run: | python -m pip install --upgrade pip pip install requests==2.23.0 - 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 + curl https://raw.githubusercontent.com/ror-community/curation_ops/v2-crosswalk/generate_relationships/generate_relationships.py -o generate_relationships.py + if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then + python generate_relationships.py relationships.csv -v 1 + fi + if [[ ${{ github.event.inputs.schema-version }} == 'v2' ]]; then + python generate_relationships.py relationships.csv -v 2 + fi - name: commit error file if: ${{ steps.genrelshp.outcome != 'success'}} working-directory: ${{ env.WORKING_DIR }} @@ -42,7 +54,7 @@ jobs: if: ${{ steps.genrelshp.outcome == 'success'}} uses: stefanzweifel/git-auto-commit-action@v4 with: - file_pattern: ${{ env.WORKING_DIR }}/**.json + file_pattern: ${{ env.WORKING_DIR }}/*/*.json commit_message: Apply relationship changes to files - name: Set env variable for notification if: always() @@ -61,4 +73,4 @@ jobs: with: channel: '#ror-curation-releases' color: 'good' - text: 'DEV relationship generation 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' + text: 'DEV relationship generation status: ${env.VALIDATION_STATUS}. Using version ${{ github.event.inputs.schema-version }}. 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' diff --git a/.github/workflows/index_dump.py b/.github/workflows/index_dump.py index 217523fc6..d52967649 100644 --- a/.github/workflows/index_dump.py +++ b/.github/workflows/index_dump.py @@ -28,6 +28,7 @@ def main(): dataenv = args.dataenv headers = args.headers full_url = os.path.join(url, filename, dataenv) + print(full_url) response = send_request(full_url, headers) if not(response.ok): print(response.text) diff --git a/.github/workflows/main_manual_index.yml b/.github/workflows/main_manual_index.yml deleted file mode 100644 index 62e21211a..000000000 --- a/.github/workflows/main_manual_index.yml +++ /dev/null @@ -1,86 +0,0 @@ -name: DEV manual deploy from Main branch -on: - workflow_dispatch: - inputs: - release-tag: - type: string - required: true - description: Name of the release tag that you would like to deploy to DEV - es-version: - description: Elastic search version to deploy to - required: true - default: 7 - type: choice - options: - - 6 - - 7 -env: - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }} - -jobs: - check_permission: - runs-on: ubuntu-latest - if: github.event.ref == 'refs/heads/main' - steps: - - name: Get Permission - uses: octokit/request-action@v2.x - id: get_permission - with: - route: GET /repos/${{ github.repository }}/collaborators/${{ github.actor }}/permission - env: - GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} - - name: output - run: | - export role_name=${{ fromJson(steps.get_permission.outputs.data).role_name }} - if [[ "$role_name" == "maintain" || "$role_name" == "admin" ]]; then - exit 0 - else - exit 1 - fi - copy-files: - runs-on: ubuntu-latest - if: github.event.ref == 'refs/heads/main' - needs: check_permission - steps: - - name: checkout - uses: actions/checkout@v2 - with: - ref: refs/tags/${{ github.event.inputs.release-tag }} - - name: Install aws cli - id: install-aws-cli - uses: unfor19/install-aws-cli-action@v1.0.2 - - name: Zip and copy files - id: copyfiles - run: | - cd ./${{ github.event.inputs.release-tag }} - zip files.zip *.json - aws s3 cp files.zip s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ github.event.inputs.release-tag }}/files.zip - aws s3 ls s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ github.event.inputs.release-tag }}/files.zip - - name: Notify Slack - if: always() - uses: edge/simple-slack-notify@master - env: - SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} - with: - channel: '#ror-curation-releases' - color: 'good' - text: 'Copy status to dev S3 Bucket: ${{ steps.copyfiles.outcome }}. From directory: ${{ github.event.inputs.release-tag }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' - - name: Index file - id: indexdata - run: | - cd .github/workflows - python -m pip install --upgrade pip - pip install requests==2.23.0 - python index_files.py -u ${{ secrets.INDEX_DEV_API_URL }} -d ${{ github.event.inputs.release-tag }} -es ${{ github.event.inputs.es-version }} -he ${{ secrets.INDEX_DEV_API_HEADERS }} - - name: Notify Slack - if: always() - uses: edge/simple-slack-notify@master - env: - SLACK_WEBHOOK_URL: ${{ secrets.CURATOR_SLACK_WEBHOOK_URL }} - with: - channel: '#ror-curation-releases' - color: 'good' - text: 'DEV index status to ES ${{ github.event.inputs.es-version }}: ${{ steps.indexdata.outcome }}. From directory: ${{ github.event.inputs.release-tag }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' - diff --git a/.github/workflows/main_release.yml b/.github/workflows/main_release.yml index bddb4f7c1..4e2283986 100644 --- a/.github/workflows/main_release.yml +++ b/.github/workflows/main_release.yml @@ -50,8 +50,8 @@ jobs: run: | cd ./${{ github.event.release.tag_name }} zip files.zip *.json - aws s3 cp files.zip s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ github.event.release.tag_name }}/files.zip - aws s3 ls s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ github.event.release.tag_name }}/files.zip + aws s3 cp files.zip s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ github.event.release.tag_name }}-v2/files.zip + aws s3 ls s3://${{ secrets.ROR_DATA_S3_BUCKET_DEV }}/${{ github.event.release.tag_name }}-v2/files.zip - name: Notify Slack if: always() uses: edge/simple-slack-notify@master @@ -67,7 +67,7 @@ jobs: cd .github/workflows python -m pip install --upgrade pip pip install requests==2.23.0 - python index_files.py -u ${{ secrets.INDEX_DEV_API_URL }} -d ${{ github.event.release.tag_name }} -es 7 -he ${{ secrets.INDEX_DEV_API_HEADERS }} + python index_files.py -u ${{ secrets.INDEX_DEV_API_URL_v2 }} -d ${{ env.release_branch }}-v2 -he ${{ secrets.INDEX_DEV_API_HEADERS }} - name: Notify Slack if: always() uses: edge/simple-slack-notify@master @@ -76,4 +76,4 @@ jobs: with: channel: '#ror-curation-releases' color: 'good' - text: 'DEV index status: ${{ steps.indexdata.outcome }}. From directory: ${{ github.event.release.tag_name }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + text: 'DEV index status: ${{ steps.indexdata.outcome }}. Using v2. From directory: ${{ github.event.release.tag_name }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' diff --git a/.github/workflows/remove_relationships.yml b/.github/workflows/remove_relationships.yml index 636734a29..a79c7471b 100644 --- a/.github/workflows/remove_relationships.yml +++ b/.github/workflows/remove_relationships.yml @@ -2,6 +2,13 @@ name: Remove relationships to inactive records on: workflow_dispatch: inputs: + schema-version: + required: true + description: Schema version + type: choice + options: + - v1 + - v2 directory-name: type: string description: Name of parent directory containing new/updated records with inactive statuses. Needed only if different from branch name. @@ -30,8 +37,13 @@ jobs: run: | python -m pip install --upgrade pip pip install requests==2.23.0 - 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 + curl https://raw.githubusercontent.com/ror-community/curation_ops/v2-crosswalk/remove_relationships/remove_relationships.py -o remove_relationships.py + if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then + python remove_relationships.py -v 1 + fi + if [[ ${{ github.event.inputs.schema-version }} == 'v2' ]]; then + python remove_relationships.py -v 2 + fi - name: commit error file if: ${{ steps.remrelshp.outcome != 'success'}} working-directory: ${{ env.WORKING_DIR }} @@ -61,4 +73,4 @@ jobs: 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' + text: 'DEV relationship removal status: ${env.VALIDATION_STATUS}. Using version ${{ github.event.inputs.schema-version }}. 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' diff --git a/.github/workflows/update_addresses.yml b/.github/workflows/update_addresses.yml index 06a25c908..d876906df 100644 --- a/.github/workflows/update_addresses.yml +++ b/.github/workflows/update_addresses.yml @@ -2,6 +2,13 @@ name: Update addresses on: workflow_dispatch: inputs: + schema-version: + required: true + description: Schema version + type: choice + options: + - v1 + - v2 directory-name: type: string description: Name of parent directory containing new/updated records. Needed only if different from branch name. @@ -30,9 +37,14 @@ jobs: 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/update_address_only/update_addresses.py -o update_addresses.py - python update_addresses.py + pip install git+https://github.com/ror-community/update_address.git@v2-locations + curl https://raw.githubusercontent.com/ror-community/curation_ops/v2-crosswalk/update_address_only/update_addresses.py -o update_addresses.py + if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then + python update_addresses.py -v 1 + fi + if [[ ${{ github.event.inputs.schema-version }} == 'v2' ]]; then + python update_addresses.py -v 2 + fi - name: commit error file if: ${{ steps.updateaddresses.outcome != 'success'}} working-directory: ${{ env.WORKING_DIR }} @@ -62,4 +74,4 @@ jobs: with: channel: '#ror-curation-releases' color: 'good' - text: 'DEV address update 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' + text: 'DEV address update status: ${env.VALIDATION_STATUS}. Using version ${{ github.event.inputs.schema-version }}. 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' diff --git a/.github/workflows/update_labels.yml b/.github/workflows/update_labels.yml index 1c97c99c9..e4dfba52c 100644 --- a/.github/workflows/update_labels.yml +++ b/.github/workflows/update_labels.yml @@ -2,6 +2,13 @@ name: Update labels in related records on: workflow_dispatch: inputs: + schema-version: + required: true + description: Schema version + type: choice + options: + - v1 + - v2 directory-name: type: string description: Name of parent directory containing records to generate relationships for. Needed only if different from branch name. @@ -29,10 +36,15 @@ jobs: working-directory: ${{ env.WORKING_DIR }} run: | python -m pip install --upgrade pip - curl https://raw.githubusercontent.com/ror-community/curation_ops/move-generate-rel/update_related_records/requirements.txt -o requirements.txt + curl https://raw.githubusercontent.com/ror-community/curation_ops/v2-crosswalk/update_related_records/requirements.txt -o requirements.txt pip install -r requirements.txt - 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 + curl https://raw.githubusercontent.com/ror-community/curation_ops/v2-crosswalk/update_related_records/update_related.py -o update_related.py + if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then + python update_related.py -v 1 + fi + if [[ ${{ github.event.inputs.schema-version }} == 'v2' ]]; then + python update_related.py -v 2 + fi - name: commit changed files if: ${{ steps.updatelabels.outcome == 'success'}} uses: stefanzweifel/git-auto-commit-action@v4 @@ -56,4 +68,4 @@ jobs: with: channel: '#ror-curation-releases' color: 'good' - text: 'DEV update labels in related records 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' + text: 'DEV update labels in related records status: ${env.VALIDATION_STATUS}. Using version ${{ github.event.inputs.schema-version }}. 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' diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 92cef6644..0c08fc589 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -2,6 +2,13 @@ name: Validate files on: workflow_dispatch: inputs: + schema-version: + required: true + description: Schema version + type: choice + options: + - v1 + - v2 with-relationship: type: boolean description: Check box to validate with relationships @@ -29,6 +36,7 @@ jobs: uses: actions/checkout@v2 with: repository: ror-community/validation-suite + ref: schema-v2 path: validation-suite - name: Get directory name if: "${{ github.event.inputs.directory-name != '' }}" @@ -39,33 +47,64 @@ jobs: - name: Validate files id: validatefiles run: | + echo ${{ github.event.inputs.schema-version}} 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 + curl https://raw.githubusercontent.com/ror-community/ror-schema/schema-v2/ror_schema.json -o ror_schema.json + curl https://raw.githubusercontent.com/ror-community/ror-schema/schema-v2/ror_schema_v2_0.json -o ror_schema_v2_0.json ls ../files/ - if [[ ${{ github.event.inputs.skip-geonames }} == true ]]; then - 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/ --no-geonames - else - python run_validations.py -i ../files -p ../files/ --no-geonames + if [[ ${{ github.event.inputs.schema-version }} == 'v1' ]]; then + echo "validating v1" + if [[ ${{ github.event.inputs.skip-geonames }} == true ]]; then + if [[ ${{ github.event.inputs.with-relationship }} == true ]]; then + if [[ -f "../${{ env.WORKING_DIR }}/relationships.csv" ]]; then + python run_validations.py -i ../files -v 1 -s ror_schema.json -f ../${{ env.WORKING_DIR }}/relationships.csv -p ../files/ --no-geonames + else + python run_validations.py -i ../files -v 1 -s ror_schema.json -p ../files/ --no-geonames + fi + elif [[ ${{ github.event.inputs.with-relationship }} == false ]]; then + python run_validations.py -i ../files -v 1 -s ror_schema.json --no-geonames + fi + else + if [[ ${{ github.event.inputs.with-relationship }} == true ]]; then + if [[ -f "../${{ env.WORKING_DIR }}/relationships.csv" ]]; then + python run_validations.py -i ../files -v 1 -s ror_schema.json -f ../${{ env.WORKING_DIR }}/relationships.csv -p ../files/ + else + python run_validations.py -i ../files -v 1 -s ror_schema.json -p ../files/ + fi + elif [[ ${{ github.event.inputs.with-relationship }} == false ]]; then + python run_validations.py -i ../files -v 1 -s ror_schema.json fi - elif [[ ${{ github.event.inputs.with-relationship }} == false ]]; then - python run_validations.py -i ../files --no-geonames fi - else - 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 + if [[ ${{ github.event.inputs.schema-version }} == 'v2' ]]; then + echo "validating v2" + if [[ ${{ github.event.inputs.skip-geonames }} == true ]]; then + if [[ ${{ github.event.inputs.with-relationship }} == true ]]; then + if [[ -f "../${{ env.WORKING_DIR }}/relationships.csv" ]]; then + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json -f ../${{ env.WORKING_DIR }}/relationships.csv -p ../files/ --no-geonames + else + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json -p ../files/ --no-geonames + fi + elif [[ ${{ github.event.inputs.with-relationship }} == false ]]; then + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json --no-geonames + fi + else + if [[ ${{ github.event.inputs.with-relationship }} == true ]]; then + if [[ -f "../${{ env.WORKING_DIR }}/relationships.csv" ]]; then + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json -f ../${{ env.WORKING_DIR }}/relationships.csv -p ../files/ + else + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json -p ../files/ + fi + elif [[ ${{ github.event.inputs.with-relationship }} == false ]]; then + python run_validations.py -i ../files -v 2 -s ror_schema_v2_0.json fi - elif [[ ${{ github.event.inputs.with-relationship }} == false ]]; then - python run_validations.py -i ../files fi fi + - name: Notify Slack if: always() uses: edge/simple-slack-notify@master @@ -74,4 +113,4 @@ jobs: with: channel: '#ror-curation-releases' color: 'good' - text: 'Validation status ${{ steps.validatefiles.outcome }} in ${env.GITHUB_REPOSITORY}. On branch: ${{ env.WORKING_DIR }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' + text: 'Validation status ${{ steps.validatefiles.outcome }} in ${env.GITHUB_REPOSITORY}. Using version ${{ github.event.inputs.schema-version }}. On branch: ${{ env.WORKING_DIR }}. Please check: ${env.GITHUB_SERVER_URL}/${env.GITHUB_REPOSITORY}/actions/runs/${env.GITHUB_RUN_ID}' diff --git a/rc-v1.36/00pnhhv55.json b/rc-v1.36/00pnhhv55.json index ce29606a0..b4339f76e 100644 --- a/rc-v1.36/00pnhhv55.json +++ b/rc-v1.36/00pnhhv55.json @@ -56,8 +56,8 @@ ], "addresses": [ { - "lat": 28.63576, - "lng": 77.22445, + "lat": 28.62137, + "lng": 77.2148, "state": null, "state_code": null, "city": "New Delhi", diff --git a/rc-v1.36/011gakh74.json b/rc-v1.36/011gakh74.json index 1b7c06920..8440468a2 100644 --- a/rc-v1.36/011gakh74.json +++ b/rc-v1.36/011gakh74.json @@ -16,8 +16,8 @@ ], "addresses": [ { - "lat": -37.32167, - "lng": -59.13316, + "lat": -37.3287, + "lng": -59.1369, "state": null, "state_code": null, "city": "Tandil", diff --git a/rc-v1.36/036xsg644.json b/rc-v1.36/036xsg644.json index d00a211fc..bc5a46690 100644 --- a/rc-v1.36/036xsg644.json +++ b/rc-v1.36/036xsg644.json @@ -19,9 +19,9 @@ "id": 1562820, "city": "Việt Trì", "geonames_admin1": { - "name": "Phú Thọ", + "name": "Phú Thọ Province", "id": 1905577, - "ascii_name": "Phú Thọ", + "ascii_name": "Phú Thọ Province", "code": "VN.83" }, "geonames_admin2": { diff --git a/rc-v1.36/03fwpw829.json b/rc-v1.36/03fwpw829.json index c6fff9abb..e99e2d761 100644 --- a/rc-v1.36/03fwpw829.json +++ b/rc-v1.36/03fwpw829.json @@ -25,10 +25,10 @@ "code": "IN.07" }, "geonames_admin2": { - "name": null, - "id": null, - "ascii_name": null, - "code": null + "name": "Central", + "id": 8335421, + "ascii_name": "Central", + "code": "IN.07.095" }, "license": { "attribution": "Data from geonames.org under a CC-BY 3.0 license", diff --git a/rc-v1.36/03yxgmm62.json b/rc-v1.36/03yxgmm62.json index 2586466bc..27cf6e6cd 100644 --- a/rc-v1.36/03yxgmm62.json +++ b/rc-v1.36/03yxgmm62.json @@ -31,9 +31,9 @@ "code": "AU.08" }, "geonames_admin2": { - "name": "Fremantle", + "name": "City of Fremantle", "id": 7839507, - "ascii_name": "Fremantle", + "ascii_name": "City of Fremantle", "code": "AU.08.53430" }, "license": { diff --git a/rc-v1.36/04mfj5474.json b/rc-v1.36/04mfj5474.json index de78e7aad..cfb6a1e38 100644 --- a/rc-v1.36/04mfj5474.json +++ b/rc-v1.36/04mfj5474.json @@ -71,7 +71,7 @@ } ], "country": { - "country_name": "Netherlands", + "country_name": "The Netherlands", "country_code": "NL" }, "external_ids": { diff --git a/rc-v1.43-v2/new/0008vp155.json b/rc-v1.43-v2/new/0008vp155.json new file mode 100644 index 000000000..9ddf91f88 --- /dev/null +++ b/rc-v1.43-v2/new/0008vp155.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2624019, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 56.37797, + "lng": 9.66065, + "name": "Bjerringbro" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0272 5010" + ], + "preferred": "0000 0005 0272 5010" + }, + { + "type": "wikidata", + "all": [ + "Q123026777" + ], + "preferred": "Q123026777" + }, + { + "type": "fundref", + "all": [ + "501100018870" + ], + "preferred": "501100018870" + } + ], + "id": "https://ror.org/0008vp155", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pdjf.dk" + } + ], + "names": [ + { + "value": "Grundfos Fond", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Poul Due Jensen Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Poul Due Jensen Fond", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Grundfos Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Grundfos (Denmark)", + "type": "child", + "id": "https://ror.org/05rdv5n40" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/0009eea46.json b/rc-v1.43-v2/new/0009eea46.json new file mode 100644 index 000000000..383563774 --- /dev/null +++ b/rc-v1.43-v2/new/0009eea46.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011160" + ], + "preferred": "501100011160" + } + ], + "id": "https://ror.org/0009eea46", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://vrlab.buaa.edu.cn" + } + ], + "names": [ + { + "value": "State Key Laboratory of Virtual Reality Technology and Systems", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Virtual Reality Technology and Systems", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "虚拟现实技术国家重点实验室", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "虚拟现实技术与系统国家重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "Beihang University", + "type": "parent", + "id": "https://ror.org/00wk2mp56" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/001d55x84.json b/rc-v1.43-v2/new/001d55x84.json new file mode 100644 index 000000000..8db5693eb --- /dev/null +++ b/rc-v1.43-v2/new/001d55x84.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 4348599, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.98067, + "lng": -77.10026, + "name": "Bethesda" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8306 5685" + ], + "preferred": "0000 0004 8306 5685" + }, + { + "type": "wikidata", + "all": [ + "Q16932298" + ], + "preferred": "Q16932298" + }, + { + "type": "fundref", + "all": [ + "100015326" + ], + "preferred": "100015326" + } + ], + "id": "https://ror.org/001d55x84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://commonfund.nih.gov" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/National_Institutes_of_Health_Common_Fund" + } + ], + "names": [ + { + "value": "NIH Common Fund", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institutes of Health Common Fund", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Division of Program Coordination Planning and Strategic Initiatives", + "type": "parent", + "id": "https://ror.org/02e3wq066" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/002c90p59.json b/rc-v1.43-v2/new/002c90p59.json new file mode 100644 index 000000000..c2707733c --- /dev/null +++ b/rc-v1.43-v2/new/002c90p59.json @@ -0,0 +1,72 @@ +{ + "locations": [ + { + "geonames_id": 1786657, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 38.46806, + "lng": 106.27306, + "name": "Yinchuan" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/002c90p59", + "domains": [], + "links": [], + "names": [ + { + "value": "Ningxia Forestry Research Institute Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ningxia Forestry Research Institute Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ningxia Forestry Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ningxia Forestry Research Institute Company Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "宁夏林业研究院股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/007bytg49.json b/rc-v1.43-v2/new/007bytg49.json new file mode 100644 index 000000000..1102f8fb2 --- /dev/null +++ b/rc-v1.43-v2/new/007bytg49.json @@ -0,0 +1,76 @@ +{ + "locations": [ + { + "geonames_id": 683506, + "geonames_details": { + "country_code": "RO", + "country_name": "Romania", + "lat": 44.43225, + "lng": 26.10626, + "name": "Bucharest" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/007bytg49", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.acadsudest.ro" + } + ], + "names": [ + { + "value": "Institutul de Studii Sud-Est Europene", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institutul de Studii Sud-Est Europene al Academiei Române", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "The Romanian Academy’s Institute for South-East European Studies", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institute for South-East European Studies", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Romanian Academy", + "type": "parent", + "id": "https://ror.org/0561n6946" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/007xgfy35.json b/rc-v1.43-v2/new/007xgfy35.json new file mode 100644 index 000000000..b2190d11a --- /dev/null +++ b/rc-v1.43-v2/new/007xgfy35.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 1815456, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.77359, + "lng": 119.95401, + "name": "Changzhou" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/007xgfy35", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.trinasolar.com" + } + ], + "names": [ + { + "value": "TrinaSolar Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "TrinaSolar Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TrinaSolar Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TrinaSolar", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "天合光能股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/0083c5602.json b/rc-v1.43-v2/new/0083c5602.json new file mode 100644 index 000000000..1b2d4f9cd --- /dev/null +++ b/rc-v1.43-v2/new/0083c5602.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2891122, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 54.32133, + "lng": 10.13489, + "name": "Kiel" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8308 2557" + ], + "preferred": "0000 0004 8308 2557" + }, + { + "type": "fundref", + "all": [ + "501100013859" + ], + "preferred": "501100013859" + } + ], + "id": "https://ror.org/0083c5602", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.damp-stiftung.de" + } + ], + "names": [ + { + "value": "Damp Stiftung", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Damp Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Damp-Stiftung", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/008j47576.json b/rc-v1.43-v2/new/008j47576.json new file mode 100644 index 000000000..70f13aa5a --- /dev/null +++ b/rc-v1.43-v2/new/008j47576.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 202061, + "geonames_details": { + "country_code": "RW", + "country_name": "Rwanda", + "lat": -1.94995, + "lng": 30.05885, + "name": "Kigali" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q119702803" + ], + "preferred": "Q119702803" + } + ], + "id": "https://ror.org/008j47576", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mkur.ac.rw" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Mount_Kigali_University" + } + ], + "names": [ + { + "value": "Mount Kigali University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Mount Kenya University Rwanda", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MKUR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/008jep717.json b/rc-v1.43-v2/new/008jep717.json new file mode 100644 index 000000000..bb749bdb6 --- /dev/null +++ b/rc-v1.43-v2/new/008jep717.json @@ -0,0 +1,59 @@ +{ + "locations": [ + { + "geonames_id": 1049261, + "geonames_details": { + "country_code": "MZ", + "country_name": "Mozambique", + "lat": -19.11639, + "lng": 33.48333, + "name": "Chimoio" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8751 5410" + ], + "preferred": "0000 0000 8751 5410" + }, + { + "type": "wikidata", + "all": [ + "Q21485207" + ], + "preferred": "Q21485207" + } + ], + "id": "https://ror.org/008jep717", + "domains": [], + "links": [], + "names": [ + { + "value": "Instituto Agrário de Chimoio", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/0090gef29.json b/rc-v1.43-v2/new/0090gef29.json new file mode 100644 index 000000000..3ed6a9e85 --- /dev/null +++ b/rc-v1.43-v2/new/0090gef29.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2016, + "external_ids": [], + "id": "https://ror.org/0090gef29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aelinfedema.org" + } + ], + "names": [ + { + "value": "Asociación Española de Linfedema", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spanish Association of Lymphedema", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "AEL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/009q0jm69.json b/rc-v1.43-v2/new/009q0jm69.json new file mode 100644 index 000000000..b591152e8 --- /dev/null +++ b/rc-v1.43-v2/new/009q0jm69.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 5475352, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.31232, + "lng": -106.77834, + "name": "Las Cruces" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q45133446" + ], + "preferred": "Q45133446" + }, + { + "type": "fundref", + "all": [ + "100011499" + ], + "preferred": "100011499" + } + ], + "id": "https://ror.org/009q0jm69", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aes.nmsu.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/New_Mexico_State_University_Agricultural_Experiment_Station" + } + ], + "names": [ + { + "value": "Agricultural Experiment Station", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Agricultural Experiment Station, New Mexico State University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "New Mexico State University Agricultural Experiment Station", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "AES NMSU", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "NMSU AES", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "New Mexico State University", + "type": "parent", + "id": "https://ror.org/00hpz7z43" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/009xdmc59.json b/rc-v1.43-v2/new/009xdmc59.json new file mode 100644 index 000000000..97b6d0975 --- /dev/null +++ b/rc-v1.43-v2/new/009xdmc59.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 3128026, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + } + } + ], + "established": 1948, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0617 3682" + ], + "preferred": "0000 0004 0617 3682" + }, + { + "type": "wikidata", + "all": [ + "Q124670480" + ], + "preferred": "Q124670480" + } + ], + "id": "https://ror.org/009xdmc59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bam.edu.es" + } + ], + "names": [ + { + "value": "Escuela Universitaria de Magisterio Begoñako Andra Mari", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Begoñako Andra Mari Irakasleen Unibertsitate Eskola", + "types": [ + "label" + ], + "lang": "eu" + }, + { + "value": "Begoñako Andra Mari Teacher Training University College", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "BAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Universidad de Deusto", + "type": "related", + "id": "https://ror.org/00ne6sr39" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00b67z867.json b/rc-v1.43-v2/new/00b67z867.json new file mode 100644 index 000000000..3b9b4cc96 --- /dev/null +++ b/rc-v1.43-v2/new/00b67z867.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2038180, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 43.88, + "lng": 125.32278, + "name": "Changchun" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011234" + ], + "preferred": "501100011234" + } + ], + "id": "https://ror.org/00b67z867", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ascl.jlu.edu.cn" + } + ], + "names": [ + { + "value": "State Key Laboratory of Automotive Simulation and Control", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Automotive Simulation and Control", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Laboratory of Automobile Simulation and Control", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Lab of Automobile Simulation and Control", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "汽车动态模拟国家重点实验室", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "汽车仿真与控制国家重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "Jilin University", + "type": "parent", + "id": "https://ror.org/00js3aw79" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00b88za07.json b/rc-v1.43-v2/new/00b88za07.json new file mode 100644 index 000000000..9a05beb17 --- /dev/null +++ b/rc-v1.43-v2/new/00b88za07.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0823 8812" + ], + "preferred": "0000 0001 0823 8812" + } + ], + "id": "https://ror.org/00b88za07", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iris-recherche.qc.ca" + } + ], + "names": [ + { + "value": "Institut de recherche et d’informations socioéconomiques", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IRIS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00bb4nn95.json b/rc-v1.43-v2/new/00bb4nn95.json new file mode 100644 index 000000000..b91c63591 --- /dev/null +++ b/rc-v1.43-v2/new/00bb4nn95.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": 2021, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q108542422" + ], + "preferred": "Q108542422" + } + ], + "id": "https://ror.org/00bb4nn95", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nfdi4datascience.de" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/NFDI4DataScience" + } + ], + "names": [ + { + "value": "NFDI4DS", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NFDI4DataScience", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NFDI for Data Science and Artificial Intelligence", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "parent", + "id": "https://ror.org/05qj6w324" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00brnhb09.json b/rc-v1.43-v2/new/00brnhb09.json new file mode 100644 index 000000000..e850e54a3 --- /dev/null +++ b/rc-v1.43-v2/new/00brnhb09.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5889745, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 49.21679, + "lng": -68.14894, + "name": "Baie-Comeau" + } + } + ], + "established": 1946, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8062 3186" + ], + "preferred": "0000 0004 8062 3186" + } + ], + "id": "https://ror.org/00brnhb09", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cisss-cotenord.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de la Côte-Nord", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de la Côte-Nord", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00bsxeq86.json b/rc-v1.43-v2/new/00bsxeq86.json new file mode 100644 index 000000000..f9bace96a --- /dev/null +++ b/rc-v1.43-v2/new/00bsxeq86.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 3054643, + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 47.49835, + "lng": 19.04045, + "name": "Budapest" + } + } + ], + "established": 2008, + "external_ids": [], + "id": "https://ror.org/00bsxeq86", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://syreon.eu" + } + ], + "names": [ + { + "value": "Syreon Research Institute (Hungary)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Syreon Research Institute", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00c746491.json b/rc-v1.43-v2/new/00c746491.json new file mode 100644 index 000000000..4d39f9e71 --- /dev/null +++ b/rc-v1.43-v2/new/00c746491.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 1684308, + "geonames_details": { + "country_code": "PH", + "country_name": "Philippines", + "lat": 14.5243, + "lng": 121.0792, + "name": "Taguig" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7777 4717" + ], + "preferred": "0000 0004 7777 4717" + }, + { + "type": "wikidata", + "all": [ + "Q114556703" + ], + "preferred": "Q114556703" + }, + { + "type": "fundref", + "all": [ + "501100010217" + ], + "preferred": "501100010217" + } + ], + "id": "https://ror.org/00c746491", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://nrcp.dost.gov.ph" + } + ], + "names": [ + { + "value": "National Research Council of the Philippines", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Philippines National Research Council", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DOST-NRCP", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "NRCP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Department of Science and Technology", + "type": "parent", + "id": "https://ror.org/05tgxx705" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00d4pqn65.json b/rc-v1.43-v2/new/00d4pqn65.json new file mode 100644 index 000000000..c6b7d1165 --- /dev/null +++ b/rc-v1.43-v2/new/00d4pqn65.json @@ -0,0 +1,90 @@ +{ + "locations": [ + { + "geonames_id": 5713376, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 45.48706, + "lng": -122.80371, + "name": "Beaverton" + } + } + ], + "established": 2001, + "external_ids": [], + "id": "https://ror.org/00d4pqn65", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ohsu.edu/vaccine-gene-therapy-institute" + } + ], + "names": [ + { + "value": "Vaccine and Gene Therapy Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Vaccine & Gene Therapy Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Oregon Health & Science University Vaccine and Gene Therapy Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OHSU Vaccine and Gene Therapy Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "VGTI", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "OHSU VGTI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Oregon Health & Science University", + "type": "parent", + "id": "https://ror.org/009avj582" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00deq0f50.json b/rc-v1.43-v2/new/00deq0f50.json new file mode 100644 index 000000000..9b43ed69e --- /dev/null +++ b/rc-v1.43-v2/new/00deq0f50.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 1649378, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -6.2349, + "lng": 106.9896, + "name": "Bekasi" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109919472" + ], + "preferred": "Q109919472" + } + ], + "id": "https://ror.org/00deq0f50", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pelitabangsa.ac.id" + } + ], + "names": [ + { + "value": "Universitas Pelita Bangsa", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Pelita Bangsa University", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00e45qp82.json b/rc-v1.43-v2/new/00e45qp82.json new file mode 100644 index 000000000..a7c353478 --- /dev/null +++ b/rc-v1.43-v2/new/00e45qp82.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 658225, + "geonames_details": { + "country_code": "FI", + "country_name": "Finland", + "lat": 60.16952, + "lng": 24.93545, + "name": "Helsinki" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6090 6859" + ], + "preferred": "0000 0004 6090 6859" + }, + { + "type": "wikidata", + "all": [ + "Q45131748" + ], + "preferred": "Q45131748" + }, + { + "type": "fundref", + "all": [ + "100010119" + ], + "preferred": "100010119" + } + ], + "id": "https://ror.org/00e45qp82", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.foundationweb.net/perklen/understod.html" + } + ], + "names": [ + { + "value": "Stiftelsen Dorothea Olivia, Karl Walter och Jarl Walter Perkléns Minne", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Dorothea Olivia, Karl Walter and Jarl Walter Perkléns Memorial Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00enf6a78.json b/rc-v1.43-v2/new/00enf6a78.json new file mode 100644 index 000000000..6a8a02284 --- /dev/null +++ b/rc-v1.43-v2/new/00enf6a78.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6115047, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 52.00017, + "lng": -71.99907, + "name": "Quebec" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 4636" + ], + "preferred": "0000 0004 4910 4636" + }, + { + "type": "wikidata", + "all": [ + "Q109018003" + ], + "preferred": "Q109018003" + } + ], + "id": "https://ror.org/00enf6a78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciusss-ouestmtl.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré universitaire de santé et de services sociaux de l'Ouest-de-l’Île-de-Montréal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUSSS de l'Ouest-de-l'Ile-de-Montréal", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00ew61678.json b/rc-v1.43-v2/new/00ew61678.json new file mode 100644 index 000000000..f05de7a75 --- /dev/null +++ b/rc-v1.43-v2/new/00ew61678.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9967 6377" + ], + "preferred": "0000 0000 9967 6377" + }, + { + "type": "wikidata", + "all": [ + "Q30274428" + ], + "preferred": "Q30274428" + }, + { + "type": "fundref", + "all": [ + "100013316" + ], + "preferred": "100013316" + } + ], + "id": "https://ror.org/00ew61678", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://serdp-estcp.mil" + } + ], + "names": [ + { + "value": "Strategic Environmental Research and Development Program", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SERDP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United States Department of Defense", + "type": "parent", + "id": "https://ror.org/0447fe631" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00f2pe266.json b/rc-v1.43-v2/new/00f2pe266.json new file mode 100644 index 000000000..5c4f00068 --- /dev/null +++ b/rc-v1.43-v2/new/00f2pe266.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 1645133, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": 1.66711, + "lng": 101.44316, + "name": "Dumai" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109912239" + ], + "preferred": "Q109912239" + } + ], + "id": "https://ror.org/00f2pe266", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iaitfdumai.ac.id" + } + ], + "names": [ + { + "value": "Institut Agama Islam Tafaqquh Fiddin Dumai", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IAITF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00f7n9887.json b/rc-v1.43-v2/new/00f7n9887.json new file mode 100644 index 000000000..ba897a3f7 --- /dev/null +++ b/rc-v1.43-v2/new/00f7n9887.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 448001, + "geonames_details": { + "country_code": "UG", + "country_name": "Uganda", + "lat": -0.54306, + "lng": 30.13694, + "name": "Ishaka" + } + } + ], + "established": 2020, + "external_ids": [], + "id": "https://ror.org/00f7n9887", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.spparenet.org/special-journals/" + } + ], + "names": [ + { + "value": "Special Pathogens Research Network Ltd.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Special Pathogens Research Network Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spparenet", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Special Journals Publisher", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SJP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00fp4q488.json b/rc-v1.43-v2/new/00fp4q488.json new file mode 100644 index 000000000..311bfc760 --- /dev/null +++ b/rc-v1.43-v2/new/00fp4q488.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1907, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1009 6390" + ], + "preferred": "0000 0001 1009 6390" + }, + { + "type": "wikidata", + "all": [ + "Q120043481" + ], + "preferred": "Q120043481" + }, + { + "type": "fundref", + "all": [ + "100015902" + ], + "preferred": "100015902" + } + ], + "id": "https://ror.org/00fp4q488", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://eoseurope.org" + } + ], + "names": [ + { + "value": "European Orthodontic Society", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Europäische Gesellschaft für Orthodontie", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "EOS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00g1jn849.json b/rc-v1.43-v2/new/00g1jn849.json new file mode 100644 index 000000000..25c68607c --- /dev/null +++ b/rc-v1.43-v2/new/00g1jn849.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2654710, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.82838, + "lng": -0.13947, + "name": "Brighton" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011049" + ], + "preferred": "501100011049" + } + ], + "id": "https://ror.org/00g1jn849", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cied.ac.uk" + } + ], + "names": [ + { + "value": "Centre on Innovation and Energy Demand", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre on Innovation & Energy Demand", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CIED", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Sussex", + "type": "parent", + "id": "https://ror.org/00ayhx656" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00h3w1m15.json b/rc-v1.43-v2/new/00h3w1m15.json new file mode 100644 index 000000000..115258078 --- /dev/null +++ b/rc-v1.43-v2/new/00h3w1m15.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 108410, + "geonames_details": { + "country_code": "SA", + "country_name": "Saudi Arabia", + "lat": 24.68773, + "lng": 46.72185, + "name": "Riyadh" + } + } + ], + "established": 1983, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1014 6204" + ], + "preferred": "0000 0001 1014 6204" + }, + { + "type": "wikidata", + "all": [ + "Q620803" + ], + "preferred": "Q620803" + } + ], + "id": "https://ror.org/00h3w1m15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://kfnl.gov.sa" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/King_Fahd_National_Library" + } + ], + "names": [ + { + "value": "King Fahad National Library", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "مكتبة الملك فهد الوطنية", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "KFNL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00j0w4q23.json b/rc-v1.43-v2/new/00j0w4q23.json new file mode 100644 index 000000000..025ee6546 --- /dev/null +++ b/rc-v1.43-v2/new/00j0w4q23.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2248477, + "geonames_details": { + "country_code": "SN", + "country_name": "Senegal", + "lat": 14.42196, + "lng": -16.96375, + "name": "Mbour" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/00j0w4q23", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aims-senegal.org" + } + ], + "names": [ + { + "value": "African Institute for Mathematical Sciences Senegal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AIMS Senegal", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut Africain des Sciences Mathématiques Sénégal", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00j39jc12.json b/rc-v1.43-v2/new/00j39jc12.json new file mode 100644 index 000000000..c63ff47c8 --- /dev/null +++ b/rc-v1.43-v2/new/00j39jc12.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 6173331, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 49.24966, + "lng": -123.11934, + "name": "Vancouver" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0476 4403" + ], + "preferred": "0000 0004 0476 4403" + } + ], + "id": "https://ror.org/00j39jc12", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://syreon.com" + } + ], + "names": [ + { + "value": "Syreon Corporation (Canada)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Syreon Clinical Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Syreon Corporation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00krnv781.json b/rc-v1.43-v2/new/00krnv781.json new file mode 100644 index 000000000..ee3b191cc --- /dev/null +++ b/rc-v1.43-v2/new/00krnv781.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6431 5714" + ], + "preferred": "0000 0004 6431 5714" + }, + { + "type": "wikidata", + "all": [ + "Q45132445" + ], + "preferred": "Q45132445" + }, + { + "type": "fundref", + "all": [ + "100012013" + ], + "preferred": "100012013" + } + ], + "id": "https://ror.org/00krnv781", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.rsbo.ca" + } + ], + "names": [ + { + "value": "Réseau de Recherche en Santé Buccodentaire et Osseuse", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Network for Oral and Bone Health Research", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "RSBO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00m98kt33.json b/rc-v1.43-v2/new/00m98kt33.json new file mode 100644 index 000000000..d1c184be6 --- /dev/null +++ b/rc-v1.43-v2/new/00m98kt33.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 5367929, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 33.76696, + "lng": -118.18923, + "name": "Long Beach" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100011956" + ], + "preferred": "100011956" + } + ], + "id": "https://ror.org/00m98kt33", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.calstate.edu/impact-of-the-csu/research/ari" + } + ], + "names": [ + { + "value": "Agricultural Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "California State University Agricultural Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CSU Agricultural Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Cal State Agricultural Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ARI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "California State University System", + "type": "parent", + "id": "https://ror.org/020qm1538" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00mmpjq16.json b/rc-v1.43-v2/new/00mmpjq16.json new file mode 100644 index 000000000..849dcb96f --- /dev/null +++ b/rc-v1.43-v2/new/00mmpjq16.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1886760, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.30408, + "lng": 120.59538, + "name": "Suzhou" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/00mmpjq16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.szydyy.com" + } + ], + "names": [ + { + "value": "Suzhou Yongding Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Hygeia Suzhou Yongding Hospital", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "苏州永鼎医院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "海吉亚苏州永鼎医院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00na1dz18.json b/rc-v1.43-v2/new/00na1dz18.json new file mode 100644 index 000000000..8eea0b3d8 --- /dev/null +++ b/rc-v1.43-v2/new/00na1dz18.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 4789226, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.86206, + "lng": -77.77388, + "name": "The Plains" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0723 9469" + ], + "preferred": "0000 0001 0723 9469" + }, + { + "type": "wikidata", + "all": [ + "Q4743178" + ], + "preferred": "Q4743178" + } + ], + "id": "https://ror.org/00na1dz18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://abcbirds.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/American_Bird_Conservancy" + } + ], + "names": [ + { + "value": "American Bird Conservancy", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00nffqq91.json b/rc-v1.43-v2/new/00nffqq91.json new file mode 100644 index 000000000..e8413ff19 --- /dev/null +++ b/rc-v1.43-v2/new/00nffqq91.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 4274994, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.18361, + "lng": -96.57167, + "name": "Manhattan" + } + } + ], + "established": 1980, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9234 0669" + ], + "preferred": "0000 0004 9234 0669" + }, + { + "type": "fundref", + "all": [ + "100015421" + ], + "preferred": "100015421" + } + ], + "id": "https://ror.org/00nffqq91", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cancer.k-state.edu" + } + ], + "names": [ + { + "value": "Johnson Cancer Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Terry C. Johnson Center for Basic Cancer Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Kansas State University Johnson Cancer Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "JCRC", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "KSU JCRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Kansas State University", + "type": "parent", + "id": "https://ror.org/05p1j8758" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00p094v10.json b/rc-v1.43-v2/new/00p094v10.json new file mode 100644 index 000000000..efabefe6a --- /dev/null +++ b/rc-v1.43-v2/new/00p094v10.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3433522, + "geonames_details": { + "country_code": "AR", + "country_name": "Argentina", + "lat": -34.5904, + "lng": -58.62904, + "name": "Hurlingham" + } + } + ], + "established": 2016, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7699 5761" + ], + "preferred": "0000 0004 7699 5761" + }, + { + "type": "wikidata", + "all": [ + "Q28501872" + ], + "preferred": "Q28501872" + } + ], + "id": "https://ror.org/00p094v10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://unahur.edu.ar" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Universidad_Nacional_de_Hurlingham" + } + ], + "names": [ + { + "value": "Universidad Nacional de Hurlingham", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National University of Hurlingham", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UNAHUR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00p7f7z86.json b/rc-v1.43-v2/new/00p7f7z86.json new file mode 100644 index 000000000..03ab00023 --- /dev/null +++ b/rc-v1.43-v2/new/00p7f7z86.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 2634840, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.81698, + "lng": -0.80835, + "name": "Waltham on the Wolds" + } + } + ], + "established": 1973, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0598 7406" + ], + "preferred": "0000 0004 0598 7406" + }, + { + "type": "wikidata", + "all": [ + "Q7966597" + ], + "preferred": "Q7966597" + }, + { + "type": "fundref", + "all": [ + "100014560" + ], + "preferred": "100014560" + } + ], + "id": "https://ror.org/00p7f7z86", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.waltham.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Waltham_Petcare_Science_Institute" + } + ], + "names": [ + { + "value": "Waltham Centre for Pet Nutrition", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Mars (United States)", + "type": "parent", + "id": "https://ror.org/028vrr082" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00pamm417.json b/rc-v1.43-v2/new/00pamm417.json new file mode 100644 index 000000000..5bc14631e --- /dev/null +++ b/rc-v1.43-v2/new/00pamm417.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6325494, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.81228, + "lng": -71.21454, + "name": "Québec" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8060 7653" + ], + "preferred": "0000 0004 8060 7653" + } + ], + "id": "https://ror.org/00pamm417", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciusss-capitalenationale.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré universitaire de santé et de services sociaux de la Capitale-Nationale", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUSSS de la Capitale-Nationale", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00q1brk57.json b/rc-v1.43-v2/new/00q1brk57.json new file mode 100644 index 000000000..5ff88241d --- /dev/null +++ b/rc-v1.43-v2/new/00q1brk57.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 4984247, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.27756, + "lng": -83.74088, + "name": "Ann Arbor" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6431 4500" + ], + "preferred": "0000 0004 6431 4500" + }, + { + "type": "wikidata", + "all": [ + "Q45137775" + ], + "preferred": "Q45137775" + }, + { + "type": "fundref", + "all": [ + "100011869" + ], + "preferred": "100011869" + } + ], + "id": "https://ror.org/00q1brk57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mcuaaar.org" + } + ], + "names": [ + { + "value": "Michigan Center for Urban African American Aging Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MCUAAAR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Wayne State University", + "type": "parent", + "id": "https://ror.org/01070mq45" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00qaqj396.json b/rc-v1.43-v2/new/00qaqj396.json new file mode 100644 index 000000000..2d09b940b --- /dev/null +++ b/rc-v1.43-v2/new/00qaqj396.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5746545, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 45.52345, + "lng": -122.67621, + "name": "Portland" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0860 0673" + ], + "preferred": "0000 0005 0860 0673" + } + ], + "id": "https://ror.org/00qaqj396", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fluxmagic.com" + } + ], + "names": [ + { + "value": "FluxMagic, Inc. (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FluxMagic", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FluxMagic, Inc.", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "FLUX", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00qxcft19.json b/rc-v1.43-v2/new/00qxcft19.json new file mode 100644 index 000000000..fdae41a64 --- /dev/null +++ b/rc-v1.43-v2/new/00qxcft19.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2657908, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 47.17242, + "lng": 8.51745, + "name": "Zug" + } + } + ], + "established": 1923, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0275 206X" + ], + "preferred": "0000 0005 0275 206X" + }, + { + "type": "fundref", + "all": [ + "100016964" + ], + "preferred": "100016964" + } + ], + "id": "https://ror.org/00qxcft19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.wernersiemens-stiftung.ch" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Werner_Siemens-Stiftung" + } + ], + "names": [ + { + "value": "Werner Siemens-Stiftung", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Werner Siemens Foundation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "WSS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00r4bna31.json b/rc-v1.43-v2/new/00r4bna31.json new file mode 100644 index 000000000..a96375258 --- /dev/null +++ b/rc-v1.43-v2/new/00r4bna31.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1887, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6432 5082" + ], + "preferred": "0000 0004 6432 5082" + }, + { + "type": "wikidata", + "all": [ + "Q4752272" + ], + "preferred": "Q4752272" + }, + { + "type": "fundref", + "all": [ + "100012070" + ], + "preferred": "100012070" + } + ], + "id": "https://ror.org/00r4bna31", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.anatsoc.org.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Anatomical_Society" + } + ], + "names": [ + { + "value": "Anatomical Society", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Anatomical Society of Great Britain and Ireland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UK Anatomical Society", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ASGBI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00rz8kx73.json b/rc-v1.43-v2/new/00rz8kx73.json new file mode 100644 index 000000000..e7fe75450 --- /dev/null +++ b/rc-v1.43-v2/new/00rz8kx73.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2641430, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.25, + "lng": -0.88333, + "name": "Northampton" + } + } + ], + "established": 1884, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1011 6814" + ], + "preferred": "0000 0001 1011 6814" + }, + { + "type": "wikidata", + "all": [ + "Q55633416" + ], + "preferred": "Q55633416" + }, + { + "type": "fundref", + "all": [ + "100014660" + ], + "preferred": "100014660" + } + ], + "id": "https://ror.org/00rz8kx73", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.addiction-ssa.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Society_for_the_Study_of_Addiction" + } + ], + "names": [ + { + "value": "Society for the Study of Addiction", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "The Society for the Study of Addiction to Alcohol and other Drugs", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SSA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00sef7t37.json b/rc-v1.43-v2/new/00sef7t37.json new file mode 100644 index 000000000..94ed10414 --- /dev/null +++ b/rc-v1.43-v2/new/00sef7t37.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 1606147, + "geonames_details": { + "country_code": "TH", + "country_name": "Thailand", + "lat": 7.19882, + "lng": 100.5951, + "name": "Songkhla" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7832 2704" + ], + "preferred": "0000 0004 7832 2704" + }, + { + "type": "fundref", + "all": [ + "501100010725" + ], + "preferred": "501100010725" + } + ], + "id": "https://ror.org/00sef7t37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cas.or.th" + } + ], + "names": [ + { + "value": "Center for Alcohol Studies", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CAS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00tdqgq45.json b/rc-v1.43-v2/new/00tdqgq45.json new file mode 100644 index 000000000..30263136b --- /dev/null +++ b/rc-v1.43-v2/new/00tdqgq45.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6138201, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 48.65007, + "lng": -72.44906, + "name": "Saint-Félicien" + } + } + ], + "established": 1971, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0216 404X" + ], + "preferred": "0000 0001 0216 404X" + }, + { + "type": "wikidata", + "all": [ + "Q3010005" + ], + "preferred": "Q3010005" + } + ], + "id": "https://ror.org/00tdqgq45", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cegepstfe.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/C%C3%A9gep_de_Saint-F%C3%A9licien" + } + ], + "names": [ + { + "value": "Cégep de Saint-Félicien", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00v9a4y41.json b/rc-v1.43-v2/new/00v9a4y41.json new file mode 100644 index 000000000..346026be4 --- /dev/null +++ b/rc-v1.43-v2/new/00v9a4y41.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3027301, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.92375, + "lng": 6.86933, + "name": "Chamonix" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q2945473" + ], + "preferred": "Q2945473" + } + ], + "id": "https://ror.org/00v9a4y41", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://creamontblanc.org" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_de_recherches_sur_les_%C3%A9cosyst%C3%A8mes_d%27altitude" + } + ], + "names": [ + { + "value": "CREA Mont-Blanc", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre de recherches sur les écosystèmes d'altitude", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CREA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00wd0xj77.json b/rc-v1.43-v2/new/00wd0xj77.json new file mode 100644 index 000000000..c30a4b0cc --- /dev/null +++ b/rc-v1.43-v2/new/00wd0xj77.json @@ -0,0 +1,60 @@ +{ + "locations": [ + { + "geonames_id": 1514588, + "geonames_details": { + "country_code": "UZ", + "country_name": "Uzbekistan", + "lat": 40.78206, + "lng": 72.34424, + "name": "Andijan" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/00wd0xj77", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://adpi.uz" + }, + { + "type": "wikipedia", + "value": "https://uz.wikipedia.org/wiki/Andijon_davlat_pedagogika_instituti" + } + ], + "names": [ + { + "value": "Andijon Davlat Pedagogika instituti", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Andijan State Pedagogical Institute", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00wtrxf04.json b/rc-v1.43-v2/new/00wtrxf04.json new file mode 100644 index 000000000..aee3fa3e9 --- /dev/null +++ b/rc-v1.43-v2/new/00wtrxf04.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 4930956, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.35843, + "lng": -71.05977, + "name": "Boston" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100014872" + ], + "preferred": "100014872" + } + ], + "id": "https://ror.org/00wtrxf04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://oshercenter.org" + } + ], + "names": [ + { + "value": "Osher Center for Integrative Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Brigham and Women's Hospital", + "type": "parent", + "id": "https://ror.org/04b6nzv94" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00wxgxz56.json b/rc-v1.43-v2/new/00wxgxz56.json new file mode 100644 index 000000000..15f308d0e --- /dev/null +++ b/rc-v1.43-v2/new/00wxgxz56.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 2510409, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.8581, + "lng": -4.02263, + "name": "Toledo" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7406 9449" + ], + "preferred": "0000 0004 7406 9449" + }, + { + "type": "wikidata", + "all": [ + "Q107611919" + ], + "preferred": "Q107611919" + } + ], + "id": "https://ror.org/00wxgxz56", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://hospitaluniversitariodetoledo.es" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Hospital_Universitario_de_Toledo" + } + ], + "names": [ + { + "value": "Hospital Universitario de Toledo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University Hospital of Toledo", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Hospital Virgen de la Salud", + "type": "predecessor", + "id": "https://ror.org/0289cxp23" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00xexfj57.json b/rc-v1.43-v2/new/00xexfj57.json new file mode 100644 index 000000000..bccccd243 --- /dev/null +++ b/rc-v1.43-v2/new/00xexfj57.json @@ -0,0 +1,104 @@ +{ + "locations": [ + { + "geonames_id": 112931, + "geonames_details": { + "country_code": "IR", + "country_name": "Iran", + "lat": 35.69439, + "lng": 51.42151, + "name": "Tehran" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0745 840X" + ], + "preferred": "0000 0001 0745 840X" + }, + { + "type": "wikidata", + "all": [ + "Q10860433" + ], + "preferred": "Q10860433" + } + ], + "id": "https://ror.org/00xexfj57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://irandoc.ac.ir" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Iranian_Research_Institute_for_Information_Science_and_Technology" + } + ], + "names": [ + { + "value": "Iranian Research Institute for Information Science and Technology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IranDoc", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "یرانداک", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "پژوهشگاه علوم و فناوری اطلاعات ایران (ایرانداک)", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Iranian Research Institute for Scientific Information and Documentation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "پژوهشگاه علوم و فناوری اطلاعات ایران", + "types": [ + "label" + ], + "lang": "fa" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00xp1b128.json b/rc-v1.43-v2/new/00xp1b128.json new file mode 100644 index 000000000..4b0f2ccd9 --- /dev/null +++ b/rc-v1.43-v2/new/00xp1b128.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5911606, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 49.26636, + "lng": -122.95263, + "name": "Burnaby" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9224 2604" + ], + "preferred": "0000 0004 9224 2604" + }, + { + "type": "fundref", + "all": [ + "501100015741" + ], + "preferred": "501100015741" + } + ], + "id": "https://ror.org/00xp1b128", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://kidsbrainhealth.ca" + } + ], + "names": [ + { + "value": "Kids Brain Health Network", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Réseau pour la Santé du Cerveau des Enfants", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "KBHN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00xsz4758.json b/rc-v1.43-v2/new/00xsz4758.json new file mode 100644 index 000000000..6dce669ac --- /dev/null +++ b/rc-v1.43-v2/new/00xsz4758.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9224 2380" + ], + "preferred": "0000 0004 9224 2380" + }, + { + "type": "fundref", + "all": [ + "100015763" + ], + "preferred": "100015763" + } + ], + "id": "https://ror.org/00xsz4758", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.leukaemiauk.org.uk" + } + ], + "names": [ + { + "value": "Leukaemia UK", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00xzacp61.json b/rc-v1.43-v2/new/00xzacp61.json new file mode 100644 index 000000000..7c9814bdd --- /dev/null +++ b/rc-v1.43-v2/new/00xzacp61.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 2660646, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.20222, + "lng": 6.14569, + "name": "Geneva" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q105573106" + ], + "preferred": "Q105573106" + }, + { + "type": "fundref", + "all": [ + "100018011" + ], + "preferred": "100018011" + } + ], + "id": "https://ror.org/00xzacp61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nccr-swissmap.ch" + } + ], + "names": [ + { + "value": "NCCR SwissMAP", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Centres of Competence in Research SwissMAP", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SwissMAP – The Mathematics of Physics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SwissMAP", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Swiss National Science Foundation", + "type": "parent", + "id": "https://ror.org/00yjd3n13" + }, + { + "label": "ETH Zurich", + "type": "parent", + "id": "https://ror.org/05a28rw58" + }, + { + "label": "University of Geneva", + "type": "parent", + "id": "https://ror.org/01swzsf04" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00y1k7p64.json b/rc-v1.43-v2/new/00y1k7p64.json new file mode 100644 index 000000000..8dabb03b8 --- /dev/null +++ b/rc-v1.43-v2/new/00y1k7p64.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 7296779, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.9863, + "lng": -2.11252, + "name": "Gargrave" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/00y1k7p64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.scapahealthcare.com" + } + ], + "names": [ + { + "value": "Scapa Healthcare (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Scapa Healthcare", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00z5s8133.json b/rc-v1.43-v2/new/00z5s8133.json new file mode 100644 index 000000000..549047bef --- /dev/null +++ b/rc-v1.43-v2/new/00z5s8133.json @@ -0,0 +1,90 @@ +{ + "locations": [ + { + "geonames_id": 3871336, + "geonames_details": { + "country_code": "CL", + "country_name": "Chile", + "lat": -33.45694, + "lng": -70.64827, + "name": "Santiago" + } + } + ], + "established": 1965, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1268 3678" + ], + "preferred": "0000 0005 1268 3678" + }, + { + "type": "wikidata", + "all": [ + "Q5917327" + ], + "preferred": "Q5917327" + } + ], + "id": "https://ror.org/00z5s8133", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.infor.cl" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Instituto_Forestal" + } + ], + "names": [ + { + "value": "Instituto Forestal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto Forestal de Chile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Chilean Forestry Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Chilean Forest Institute", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/00zvfs242.json b/rc-v1.43-v2/new/00zvfs242.json new file mode 100644 index 000000000..b8f1f9d84 --- /dev/null +++ b/rc-v1.43-v2/new/00zvfs242.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 5419384, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.73915, + "lng": -104.9847, + "name": "Denver" + } + } + ], + "established": 1975, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2195 5584" + ], + "preferred": "0000 0001 2195 5584" + }, + { + "type": "fundref", + "all": [ + "100011471" + ], + "preferred": "100011471" + } + ], + "id": "https://ror.org/00zvfs242", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nanonline.org" + } + ], + "names": [ + { + "value": "National Academy of Neuropsychology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NAN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/010e21634.json b/rc-v1.43-v2/new/010e21634.json new file mode 100644 index 000000000..5cd8a0cef --- /dev/null +++ b/rc-v1.43-v2/new/010e21634.json @@ -0,0 +1,62 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/010e21634", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.unistra.fr/recherche-1/vie-et-sante-1/medecine-cardiovasculaire-translationnelle-mcvt-ur-3074" + } + ], + "names": [ + { + "value": "Médecine Cardiovasculaire Translationnelle", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MCVT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/010j4w165.json b/rc-v1.43-v2/new/010j4w165.json new file mode 100644 index 000000000..7ea2238ad --- /dev/null +++ b/rc-v1.43-v2/new/010j4w165.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 106297, + "geonames_details": { + "country_code": "SA", + "country_name": "Saudi Arabia", + "lat": 28.43279, + "lng": 45.97077, + "name": "Hafar Al-Batin" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/010j4w165", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://gulf.edu.sa/en/index.php" + } + ], + "names": [ + { + "value": "Gulf College", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "كلية الخليج", + "types": [ + "label" + ], + "lang": "ar" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/0115fxs14.json b/rc-v1.43-v2/new/0115fxs14.json new file mode 100644 index 000000000..8e8b1ce18 --- /dev/null +++ b/rc-v1.43-v2/new/0115fxs14.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 5263045, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.0389, + "lng": -87.90647, + "name": "Milwaukee" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0390 8735" + ], + "preferred": "0000 0004 0390 8735" + }, + { + "type": "fundref", + "all": [ + "100017342" + ], + "preferred": "100017342" + } + ], + "id": "https://ror.org/0115fxs14", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cancer.mcw.edu" + } + ], + "names": [ + { + "value": "Medical College of Wisconsin Cancer Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MCWCC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Medical College of Wisconsin", + "type": "parent", + "id": "https://ror.org/00qqv6244" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/011zm6c42.json b/rc-v1.43-v2/new/011zm6c42.json new file mode 100644 index 000000000..e2190a929 --- /dev/null +++ b/rc-v1.43-v2/new/011zm6c42.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3463237, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -27.59667, + "lng": -48.54917, + "name": "Florianópolis" + } + } + ], + "established": 1986, + "external_ids": [], + "id": "https://ror.org/011zm6c42", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.acate.com.br" + } + ], + "names": [ + { + "value": "ACATE - Associação Catarinense de Tecnologia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Associação Catarinense de Tecnologia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Catarinense Technology Association", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ACATE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/012qsrr25.json b/rc-v1.43-v2/new/012qsrr25.json new file mode 100644 index 000000000..f0e9f1caf --- /dev/null +++ b/rc-v1.43-v2/new/012qsrr25.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 5122432, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.44063, + "lng": -76.49661, + "name": "Ithaca" + } + } + ], + "established": 1880, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2170 7652" + ], + "preferred": "0000 0001 2170 7652" + }, + { + "type": "wikidata", + "all": [ + "Q45134801" + ], + "preferred": "Q45134801" + }, + { + "type": "fundref", + "all": [ + "100011622" + ], + "preferred": "100011622" + } + ], + "id": "https://ror.org/012qsrr25", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cals.cornell.edu/agricultural-experiment-station" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/New_York_State_Agricultural_Experiment_Station" + } + ], + "names": [ + { + "value": "Cornell University Agricultural Experiment Station", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Cornell AES", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Cornell AgriTech", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CUAES", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Cornell University", + "type": "parent", + "id": "https://ror.org/05bnh6r87" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/013a79z51.json b/rc-v1.43-v2/new/013a79z51.json new file mode 100644 index 000000000..ed6de6993 --- /dev/null +++ b/rc-v1.43-v2/new/013a79z51.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 1809498, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 25.28022, + "lng": 110.29639, + "name": "Guilin" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q11111580" + ], + "preferred": "Q11111580" + } + ], + "id": "https://ror.org/013a79z51", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gltu.edu.cn" + }, + { + "type": "wikipedia", + "value": "https://zh.wikipedia.org/wiki/%E6%A1%82%E6%9E%97%E6%97%85%E6%B8%B8%E5%AD%A6%E9%99%A2" + } + ], + "names": [ + { + "value": "Guilin Tourism University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "桂林旅游专科学校", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "桂林旅游学院", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "GLTU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/013k5zx16.json b/rc-v1.43-v2/new/013k5zx16.json new file mode 100644 index 000000000..e7003ec98 --- /dev/null +++ b/rc-v1.43-v2/new/013k5zx16.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2834282, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 53.62937, + "lng": 11.41316, + "name": "Schwerin" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/013k5zx16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.regierung-mv.de/Landesregierung/lm/" + } + ], + "names": [ + { + "value": "Ministerium für Klimaschutz, Landwirtschaft, ländliche Räume und Umwelt des Landes Mecklenburg-Vorpommern", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry for Climate Protection, Agriculture, Rural Areas and the Environment of the State of Mecklenburg-Western Pomerania", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MKLRU-MV", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/014x5gh74.json b/rc-v1.43-v2/new/014x5gh74.json new file mode 100644 index 000000000..04da97308 --- /dev/null +++ b/rc-v1.43-v2/new/014x5gh74.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2647178, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 56.00614, + "lng": -4.72648, + "name": "Helensburgh" + } + } + ], + "established": 1972, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1087 8640" + ], + "preferred": "0000 0001 1087 8640" + }, + { + "type": "fundref", + "all": [ + "100011405" + ], + "preferred": "100011405" + } + ], + "id": "https://ror.org/014x5gh74", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://academyofmarketing.org" + } + ], + "names": [ + { + "value": "Academy of Marketing", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Marketing Education Group", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/015vt1f29.json b/rc-v1.43-v2/new/015vt1f29.json new file mode 100644 index 000000000..4d31f2deb --- /dev/null +++ b/rc-v1.43-v2/new/015vt1f29.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5942845, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.88336, + "lng": -72.48241, + "name": "Drummondville" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0746 5060" + ], + "preferred": "0000 0001 0746 5060" + }, + { + "type": "wikidata", + "all": [ + "Q3009995" + ], + "preferred": "Q3009995" + } + ], + "id": "https://ror.org/015vt1f29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cegepdrummond.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/C%C3%A9gep_de_Drummondville" + } + ], + "names": [ + { + "value": "Cégep de Drummondville", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/016782g02.json b/rc-v1.43-v2/new/016782g02.json new file mode 100644 index 000000000..8b8d99a66 --- /dev/null +++ b/rc-v1.43-v2/new/016782g02.json @@ -0,0 +1,76 @@ +{ + "locations": [ + { + "geonames_id": 2797114, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.93409, + "lng": 4.37213, + "name": "Grimbergen" + } + } + ], + "established": 2011, + "external_ids": [], + "id": "https://ror.org/016782g02", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://edulaweu.eu" + } + ], + "names": [ + { + "value": "European Association for Education Law and Policy", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ELA ngo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ELA vzw", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ELA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Vrije Universiteit Brussel", + "type": "related", + "id": "https://ror.org/006e5kg04" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/016gy9w96.json b/rc-v1.43-v2/new/016gy9w96.json new file mode 100644 index 000000000..2d91a689f --- /dev/null +++ b/rc-v1.43-v2/new/016gy9w96.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 2179537, + "geonames_details": { + "country_code": "NZ", + "country_name": "New Zealand", + "lat": -41.28664, + "lng": 174.77557, + "name": "Wellington" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0727 3536" + ], + "preferred": "0000 0001 0727 3536" + }, + { + "type": "wikidata", + "all": [ + "Q1937182" + ], + "preferred": "Q1937182" + }, + { + "type": "fundref", + "all": [ + "501100009648" + ], + "preferred": "501100009648" + } + ], + "id": "https://ror.org/016gy9w96", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.education.govt.nz" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Education_%28New_Zealand%29" + } + ], + "names": [ + { + "value": "Ministry of Education", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Education of New Zealand", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "New Zealand Ministry of Education", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Government of Ontario", + "type": "parent", + "id": "https://ror.org/015pzp858" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/016rf0n60.json b/rc-v1.43-v2/new/016rf0n60.json new file mode 100644 index 000000000..9ec695269 --- /dev/null +++ b/rc-v1.43-v2/new/016rf0n60.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": 2005, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8308 275X" + ], + "preferred": "0000 0004 8308 275X" + }, + { + "type": "wikidata", + "all": [ + "Q21076611" + ], + "preferred": "Q21076611" + }, + { + "type": "fundref", + "all": [ + "501100013865" + ], + "preferred": "501100013865" + } + ], + "id": "https://ror.org/016rf0n60", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.stiftung-charite.de" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Stiftung_Charit%C3%A9" + } + ], + "names": [ + { + "value": "Stiftung Charité", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Charité Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Die Stiftung Charité", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Charité - Universitätsmedizin Berlin", + "type": "parent", + "id": "https://ror.org/001w7jn25" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/0177kw895.json b/rc-v1.43-v2/new/0177kw895.json new file mode 100644 index 000000000..38a16c3b1 --- /dev/null +++ b/rc-v1.43-v2/new/0177kw895.json @@ -0,0 +1,52 @@ +{ + "locations": [ + { + "geonames_id": 5128581, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.71427, + "lng": -74.00597, + "name": "New York" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012695" + ], + "preferred": "100012695" + } + ], + "id": "https://ror.org/0177kw895", + "domains": [], + "links": [], + "names": [ + { + "value": "Beatrice and Samuel A. Seaver Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/017d4c820.json b/rc-v1.43-v2/new/017d4c820.json new file mode 100644 index 000000000..0ca6c0328 --- /dev/null +++ b/rc-v1.43-v2/new/017d4c820.json @@ -0,0 +1,55 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/017d4c820", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://lundtrust.org.uk" + } + ], + "names": [ + { + "value": "Lund Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Arcadia Fund", + "type": "related", + "id": "https://ror.org/051z6e826" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/018qmvm63.json b/rc-v1.43-v2/new/018qmvm63.json new file mode 100644 index 000000000..fce57ca9a --- /dev/null +++ b/rc-v1.43-v2/new/018qmvm63.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/018qmvm63", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ist-id.pt" + } + ], + "names": [ + { + "value": "IST-ID - Associação do Instituto Superior Técnico para a Investigação e Desenvolvimento", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Associação do Instituto Superior Técnico para a Investigação e Desenvolvimento", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IST-ID", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/018zj6955.json b/rc-v1.43-v2/new/018zj6955.json new file mode 100644 index 000000000..1b34925f8 --- /dev/null +++ b/rc-v1.43-v2/new/018zj6955.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3161732, + "geonames_details": { + "country_code": "NO", + "country_name": "Norway", + "lat": 60.39299, + "lng": 5.32415, + "name": "Bergen" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 0401" + ], + "preferred": "0000 0004 9225 0401" + }, + { + "type": "wikidata", + "all": [ + "Q17750234" + ], + "preferred": "Q17750234" + }, + { + "type": "fundref", + "all": [ + "100016190" + ], + "preferred": "100016190" + } + ], + "id": "https://ror.org/018zj6955", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mohnfoundation.no" + }, + { + "type": "wikipedia", + "value": "https://no.wikipedia.org/wiki/Trond_Mohn_stiftelse" + } + ], + "names": [ + { + "value": "Trond Mohn stiftelse", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Bergen Medical Research Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Trond Mohn Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/019g8w217.json b/rc-v1.43-v2/new/019g8w217.json new file mode 100644 index 000000000..b5349eca0 --- /dev/null +++ b/rc-v1.43-v2/new/019g8w217.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q10302897" + ], + "preferred": "Q10302897" + } + ], + "id": "https://ror.org/019g8w217", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.imm.fm.ul.pt/web/imm/home" + }, + { + "type": "wikipedia", + "value": "https://pt.wikipedia.org/wiki/Instituto_de_Medicina_Molecular" + } + ], + "names": [ + { + "value": "Instituto de Medicina Molecular João Lobo Antunes", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto de Medicina Molecular", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IMM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Lisbon", + "type": "parent", + "id": "https://ror.org/01c27hj86" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/019mh5c80.json b/rc-v1.43-v2/new/019mh5c80.json new file mode 100644 index 000000000..2721d7c6d --- /dev/null +++ b/rc-v1.43-v2/new/019mh5c80.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2874545, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.12773, + "lng": 11.62916, + "name": "Magdeburg" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/019mh5c80", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mwu.sachsen-anhalt.de" + } + ], + "names": [ + { + "value": "Ministerium für Wissenschaft, Energie, Klimaschutz und Umwelt des Landes Sachsen-Anhalt", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry for Science, Energy, Climate Protection and the Environment of the State of Saxony-Anhalt", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MWU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/019vw0b32.json b/rc-v1.43-v2/new/019vw0b32.json new file mode 100644 index 000000000..0e6b2caa5 --- /dev/null +++ b/rc-v1.43-v2/new/019vw0b32.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 1668341, + "geonames_details": { + "country_code": "TW", + "country_name": "Taiwan", + "lat": 25.04776, + "lng": 121.53185, + "name": "Taipei" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/019vw0b32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.qps.com" + } + ], + "names": [ + { + "value": "QPS Taiwan (Taiwan)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "昌達生化", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "QPS Taiwan", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01achz565.json b/rc-v1.43-v2/new/01achz565.json new file mode 100644 index 000000000..a060bdab7 --- /dev/null +++ b/rc-v1.43-v2/new/01achz565.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 1784764, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 29.16667, + "lng": 120, + "name": "Zhejiang" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/01achz565", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://windeyenergy.com" + } + ], + "names": [ + { + "value": "Windey Energy Technology Group Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Windey Energy Technology Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Windey Energy Technology Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Windey Energy Technology Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "浙江运达风电股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01aqw9j77.json b/rc-v1.43-v2/new/01aqw9j77.json new file mode 100644 index 000000000..f1f1e0b4c --- /dev/null +++ b/rc-v1.43-v2/new/01aqw9j77.json @@ -0,0 +1,59 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0408 3253" + ], + "preferred": "0000 0004 0408 3253" + }, + { + "type": "fundref", + "all": [ + "100018158" + ], + "preferred": "100018158" + } + ], + "id": "https://ror.org/01aqw9j77", + "domains": [], + "links": [], + "names": [ + { + "value": "Hintze Family Charitable Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01ar0xf40.json b/rc-v1.43-v2/new/01ar0xf40.json new file mode 100644 index 000000000..3615f9736 --- /dev/null +++ b/rc-v1.43-v2/new/01ar0xf40.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 1797929, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 36.06488, + "lng": 120.38042, + "name": "Qingdao" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/01ar0xf40", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://rise.sinopec.com/rise/" + } + ], + "names": [ + { + "value": "SINOPEC Research Institute of Safety Engineering Co., Ltd.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SINOPEC Research Institute of Safety Engineering Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中石化安全工程研究院有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01bdx3k27.json b/rc-v1.43-v2/new/01bdx3k27.json new file mode 100644 index 000000000..666788c21 --- /dev/null +++ b/rc-v1.43-v2/new/01bdx3k27.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 294074, + "geonames_details": { + "country_code": "IL", + "country_name": "Israel", + "lat": 31.92933, + "lng": 34.79868, + "name": "Ness Ziona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0680 6846" + ], + "preferred": "0000 0005 0680 6846" + } + ], + "id": "https://ror.org/01bdx3k27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://augm.com" + } + ], + "names": [ + { + "value": "Augmanity Nano Ltd. (Israel)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Augmanity Nano", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Augmanity Nano Ltd.", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01eef7f80.json b/rc-v1.43-v2/new/01eef7f80.json new file mode 100644 index 000000000..1064a857c --- /dev/null +++ b/rc-v1.43-v2/new/01eef7f80.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2656915, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.48876, + "lng": -2.0989, + "name": "Ashton-under-Lyne" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7473 3848" + ], + "preferred": "0000 0004 7473 3848" + } + ], + "id": "https://ror.org/01eef7f80", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.scapa.com" + } + ], + "names": [ + { + "value": "Scapa Group (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Scapa Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Scapa Group Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Scapa Group Limited", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01f7saf07.json b/rc-v1.43-v2/new/01f7saf07.json new file mode 100644 index 000000000..325924b0d --- /dev/null +++ b/rc-v1.43-v2/new/01f7saf07.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 5037649, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.97997, + "lng": -93.26384, + "name": "Minneapolis" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1260 4722" + ], + "preferred": "0000 0005 1260 4722" + }, + { + "type": "fundref", + "all": [ + "100016303" + ], + "preferred": "100016303" + } + ], + "id": "https://ror.org/01f7saf07", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://foundation.medtronic.com" + } + ], + "names": [ + { + "value": "Medtronic Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Medtronic Communities Foundation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Medtronic (United States)", + "type": "parent", + "id": "https://ror.org/00grd1h17" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01g0jwx42.json b/rc-v1.43-v2/new/01g0jwx42.json new file mode 100644 index 000000000..d46116b86 --- /dev/null +++ b/rc-v1.43-v2/new/01g0jwx42.json @@ -0,0 +1,97 @@ +{ + "locations": [ + { + "geonames_id": 3456166, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -22.28194, + "lng": -42.53111, + "name": "Nova Friburgo" + } + } + ], + "established": 1989, + "external_ids": [], + "id": "https://ror.org/01g0jwx42", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.iprj.uerj.br" + } + ], + "names": [ + { + "value": "Instituto Politécnico do Rio de Janeiro", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto Politécnico da Universidade do Estado do Rio de Janeiro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UERJ - Instituto Politécnico", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Polytechnic Institute of Rio de Janeiro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Polytechnic Institute of the State University of Rio de Janeiro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IPRJ", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "UERJ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Rio de Janeiro State University", + "type": "parent", + "id": "https://ror.org/0198v2949" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01g94x362.json b/rc-v1.43-v2/new/01g94x362.json new file mode 100644 index 000000000..79ddd42d7 --- /dev/null +++ b/rc-v1.43-v2/new/01g94x362.json @@ -0,0 +1,105 @@ +{ + "locations": [ + { + "geonames_id": 2800866, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0550 8872" + ], + "preferred": "0000 0001 0550 8872" + }, + { + "type": "wikidata", + "all": [ + "Q108367206" + ], + "preferred": "Q108367206" + }, + { + "type": "fundref", + "all": [ + "501100012285" + ], + "preferred": "501100012285" + } + ], + "id": "https://ror.org/01g94x362", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ewi-vlaanderen.be" + } + ], + "names": [ + { + "value": "Departement Economie, Wetenschap & Innovatie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Departement Economie, Wetenschap en Innovatie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Department of Economy, Sciency and Innovation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Department of Economy, Sciency & Innovation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "DEWI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Flemish Government", + "type": "parent", + "id": "https://ror.org/04qxsrb28" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01gghaa40.json b/rc-v1.43-v2/new/01gghaa40.json new file mode 100644 index 000000000..a32c40ff9 --- /dev/null +++ b/rc-v1.43-v2/new/01gghaa40.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 965X" + ], + "preferred": "0000 0004 9225 965X" + }, + { + "type": "fundref", + "all": [ + "501100015504" + ], + "preferred": "501100015504" + } + ], + "id": "https://ror.org/01gghaa40", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://sidb.org.uk" + } + ], + "names": [ + { + "value": "Simons Initiative for the Developing Brain", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SIDB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01h6dtw92.json b/rc-v1.43-v2/new/01h6dtw92.json new file mode 100644 index 000000000..00a9811f5 --- /dev/null +++ b/rc-v1.43-v2/new/01h6dtw92.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5883102, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 52.28333, + "lng": -117.469, + "name": "Alberta" + } + } + ], + "established": 1965, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0262 6338" + ], + "preferred": "0000 0005 0262 6338" + }, + { + "type": "wikidata", + "all": [ + "Q28233223" + ], + "preferred": "Q28233223" + }, + { + "type": "fundref", + "all": [ + "100011787" + ], + "preferred": "100011787" + } + ], + "id": "https://ror.org/01h6dtw92", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.tav.ca" + } + ], + "names": [ + { + "value": "TAV College", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "TAV", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01hn2pk88.json b/rc-v1.43-v2/new/01hn2pk88.json new file mode 100644 index 000000000..4184a0020 --- /dev/null +++ b/rc-v1.43-v2/new/01hn2pk88.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 1260445, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 22.40418, + "lng": 87.71746, + "name": "Pānskura" + } + } + ], + "established": 1960, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 0073" + ], + "preferred": "0000 0004 9225 0073" + }, + { + "type": "wikidata", + "all": [ + "Q7131589" + ], + "preferred": "Q7131589" + } + ], + "id": "https://ror.org/01hn2pk88", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.panskurabanamalicollege.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Panskura_Banamali_College" + } + ], + "names": [ + { + "value": "Panskura Banamali College", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Panskura Banamali Autonomous College", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PBC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Vidyasagar University", + "type": "related", + "id": "https://ror.org/027jsza11" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01hx2yw16.json b/rc-v1.43-v2/new/01hx2yw16.json new file mode 100644 index 000000000..f92aee1b2 --- /dev/null +++ b/rc-v1.43-v2/new/01hx2yw16.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 146268, + "geonames_details": { + "country_code": "CY", + "country_name": "Cyprus", + "lat": 35.17531, + "lng": 33.3642, + "name": "Nicosia" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/01hx2yw16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://medicover-genetics.com" + } + ], + "names": [ + { + "value": "Medicover Genetics (Cyprus)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NIPD Genetics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIPD Genetics Public Company Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Medicover Genetics", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01kde4v59.json b/rc-v1.43-v2/new/01kde4v59.json new file mode 100644 index 000000000..dd917963f --- /dev/null +++ b/rc-v1.43-v2/new/01kde4v59.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2792482, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.87959, + "lng": 4.70093, + "name": "Leuven" + } + } + ], + "established": 2018, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 9756" + ], + "preferred": "0000 0004 9225 9756" + }, + { + "type": "wikidata", + "all": [ + "Q112085345" + ], + "preferred": "Q112085345" + }, + { + "type": "fundref", + "all": [ + "100016326" + ], + "preferred": "100016326" + } + ], + "id": "https://ror.org/01kde4v59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.eitfood.eu" + } + ], + "names": [ + { + "value": "EIT Food", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "EIT Food iVZW", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "European Institute of Innovation & Technology Food", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Food4Future", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "European Institute of Innovation and Technology", + "type": "parent", + "id": "https://ror.org/036dxts37" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01kk86953.json b/rc-v1.43-v2/new/01kk86953.json new file mode 100644 index 000000000..dcc130797 --- /dev/null +++ b/rc-v1.43-v2/new/01kk86953.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2158177, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -37.814, + "lng": 144.96332, + "name": "Melbourne" + } + } + ], + "established": 2020, + "external_ids": [], + "id": "https://ror.org/01kk86953", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.climate-resource.com" + } + ], + "names": [ + { + "value": "Climate Resource (Australia)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Climate Resource", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Climate Resource Pty Ltd", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Climate Resource Ltd", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01kn3j525.json b/rc-v1.43-v2/new/01kn3j525.json new file mode 100644 index 000000000..804c803bd --- /dev/null +++ b/rc-v1.43-v2/new/01kn3j525.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 4143861, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.68372, + "lng": -75.74966, + "name": "Newark" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7863 322X" + ], + "preferred": "0000 0004 7863 322X" + }, + { + "type": "fundref", + "all": [ + "100013429" + ], + "preferred": "100013429" + } + ], + "id": "https://ror.org/01kn3j525", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://de-inbre.org" + } + ], + "names": [ + { + "value": "Delaware INBRE", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Delaware IDeA Network of Biomedical Research Excellence", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01nxm2y98.json b/rc-v1.43-v2/new/01nxm2y98.json new file mode 100644 index 000000000..bc0b1e886 --- /dev/null +++ b/rc-v1.43-v2/new/01nxm2y98.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2639864, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.95753, + "lng": -0.5128, + "name": "Pulborough" + } + } + ], + "established": 1841, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9224 0406" + ], + "preferred": "0000 0004 9224 0406" + }, + { + "type": "wikidata", + "all": [ + "Q5561481" + ], + "preferred": "Q5561481" + }, + { + "type": "fundref", + "all": [ + "100015651" + ], + "preferred": "100015651" + } + ], + "id": "https://ror.org/01nxm2y98", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.gilchristgrants.org.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Gilchrist_Educational_Trust" + } + ], + "names": [ + { + "value": "Gilchrist Educational Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "GET", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01q4vax14.json b/rc-v1.43-v2/new/01q4vax14.json new file mode 100644 index 000000000..c06fd3271 --- /dev/null +++ b/rc-v1.43-v2/new/01q4vax14.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 4781708, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.55376, + "lng": -77.46026, + "name": "Richmond" + } + } + ], + "established": 1788, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q5589334" + ], + "preferred": "Q5589334" + }, + { + "type": "fundref", + "all": [ + "100006822" + ], + "preferred": "100006822" + } + ], + "id": "https://ror.org/01q4vax14", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.virginia.gov" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Government_of_Virginia" + } + ], + "names": [ + { + "value": "Commonwealth of Virginia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Government of Virginia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Government of Virginia", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01q6sg345.json b/rc-v1.43-v2/new/01q6sg345.json new file mode 100644 index 000000000..7d0ebfe41 --- /dev/null +++ b/rc-v1.43-v2/new/01q6sg345.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 1645524, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -6.4, + "lng": 106.81861, + "name": "Depok" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0599 5729" + ], + "preferred": "0000 0005 0599 5729" + }, + { + "type": "wikidata", + "all": [ + "Q28723622" + ], + "preferred": "Q28723622" + } + ], + "id": "https://ror.org/01q6sg345", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uiii.ac.id" + }, + { + "type": "wikipedia", + "value": "https://id.wikipedia.org/wiki/Universitas_Islam_Internasional_Indonesia" + } + ], + "names": [ + { + "value": "Universitas Islam Internasional Indonesia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Indonesian International Islamic University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UIII", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "IIIU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01qew8q20.json b/rc-v1.43-v2/new/01qew8q20.json new file mode 100644 index 000000000..596c69536 --- /dev/null +++ b/rc-v1.43-v2/new/01qew8q20.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3114472, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.81687, + "lng": -1.64323, + "name": "Pamplona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1273 0083" + ], + "preferred": "0000 0005 1273 0083" + } + ], + "id": "https://ror.org/01qew8q20", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cima.cun.es" + } + ], + "names": [ + { + "value": "Fundación para la Investigación Médica Aplicada", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FIMA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Universidad de Navarra", + "type": "related", + "id": "https://ror.org/02rxc7m23" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01qgn1839.json b/rc-v1.43-v2/new/01qgn1839.json new file mode 100644 index 000000000..d8e12db81 --- /dev/null +++ b/rc-v1.43-v2/new/01qgn1839.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2649808, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.7236, + "lng": -3.52751, + "name": "Exeter" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9129 3549" + ], + "preferred": "0000 0004 9129 3549" + }, + { + "type": "fundref", + "all": [ + "501100019219" + ], + "preferred": "501100019219" + } + ], + "id": "https://ror.org/01qgn1839", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://arc-swp.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Applied Research Collaboration South West Peninsula", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PenARC", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Applied Research Collaboration South West Peninsula", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR ARC South West Peninsula", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01qh08519.json b/rc-v1.43-v2/new/01qh08519.json new file mode 100644 index 000000000..d43085e9c --- /dev/null +++ b/rc-v1.43-v2/new/01qh08519.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2023, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q123492521" + ], + "preferred": "Q123492521" + } + ], + "id": "https://ror.org/01qh08519", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://portal.mineco.gob.es" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Ministerio_de_Transformaci%C3%B3n_Digital" + } + ], + "names": [ + { + "value": "Ministerio para la Transformación Digital y de la Función Pública", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministerio para la Transformación Digital y de la Función Pública de España", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spanish Ministry of Digital Transformation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Digital Transformation, Spain", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MTDFP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ministerio de Asuntos Económicos y Transformación Digital", + "type": "predecessor", + "id": "https://ror.org/03sv46s19" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01sqena74.json b/rc-v1.43-v2/new/01sqena74.json new file mode 100644 index 000000000..16bc4c008 --- /dev/null +++ b/rc-v1.43-v2/new/01sqena74.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 1264527, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 13.08784, + "lng": 80.27847, + "name": "Chennai" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100013419" + ], + "preferred": "501100013419" + } + ], + "id": "https://ror.org/01sqena74", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ssn.edu.in" + } + ], + "names": [ + { + "value": "SSN Educational and Charitable Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SSN Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Sri Sivasubramaniya Nadar Trust", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01tm9b530.json b/rc-v1.43-v2/new/01tm9b530.json new file mode 100644 index 000000000..9da61f90f --- /dev/null +++ b/rc-v1.43-v2/new/01tm9b530.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 4931972, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.3751, + "lng": -71.10561, + "name": "Cambridge" + } + } + ], + "established": 2007, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q22073896" + ], + "preferred": "Q22073896" + }, + { + "type": "fundref", + "all": [ + "100013113" + ], + "preferred": "100013113" + } + ], + "id": "https://ror.org/01tm9b530", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.broadinstitute.org/stanley-center-for-psychiatric-research" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Stanley_Center_for_Psychiatric_Research_at_Broad_Institute" + } + ], + "names": [ + { + "value": "Stanley Center for Psychiatric Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stanley Center for Psychiatric Research at Broad Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Stanley Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Stanley Center for Psychiatric Research at the Broad Institute", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Broad Institute", + "type": "parent", + "id": "https://ror.org/05a0ya142" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01v9qfq10.json b/rc-v1.43-v2/new/01v9qfq10.json new file mode 100644 index 000000000..063448365 --- /dev/null +++ b/rc-v1.43-v2/new/01v9qfq10.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2037013, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 45.75, + "lng": 126.65, + "name": "Harbin" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/01v9qfq10", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.hilem.cn" + } + ], + "names": [ + { + "value": "Harbin Institute of Large Electric Machinery", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "哈尔滨大电机研究所", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "HILEM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01vt9w950.json b/rc-v1.43-v2/new/01vt9w950.json new file mode 100644 index 000000000..e6c7e4aab --- /dev/null +++ b/rc-v1.43-v2/new/01vt9w950.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 3452925, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -30.03283, + "lng": -51.23019, + "name": "Porto Alegre" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6088 6907" + ], + "preferred": "0000 0004 6088 6907" + }, + { + "type": "wikidata", + "all": [ + "Q10302596" + ], + "preferred": "Q10302596" + }, + { + "type": "fundref", + "all": [ + "501100007762" + ], + "preferred": "501100007762" + } + ], + "id": "https://ror.org/01vt9w950", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://pt.wikipedia.org/wiki/Instituto_Nacional_de_Ci%C3%AAncia_e_Tecnologia_Translacional_em_Medicina" + } + ], + "names": [ + { + "value": "Instituto Nacional de Ciência e Tecnologia Translacional em Medicina", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Science and Technology Institute for Translational Medicine", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "INCT-TM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Universidade Federal do Rio Grande do Sul", + "type": "parent", + "id": "https://ror.org/041yk2d64" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01vw4c203.json b/rc-v1.43-v2/new/01vw4c203.json new file mode 100644 index 000000000..6c10a1166 --- /dev/null +++ b/rc-v1.43-v2/new/01vw4c203.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 2217" + ], + "preferred": "0000 0004 0369 2217" + }, + { + "type": "wikidata", + "all": [ + "Q102872417" + ], + "preferred": "Q102872417" + }, + { + "type": "fundref", + "all": [ + "501100018814" + ], + "preferred": "501100018814" + } + ], + "id": "https://ror.org/01vw4c203", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://environment-health.ac.uk" + } + ], + "names": [ + { + "value": "MRC Centre for Environment and Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Medical Research Council Centre for Environment and Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MRC-PHE Centre for Environment & Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MRC CE&H", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Imperial College London", + "type": "parent", + "id": "https://ror.org/041kmwe10" + }, + { + "label": "Medical Research Council", + "type": "parent", + "id": "https://ror.org/03x94j517" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01wjyqy10.json b/rc-v1.43-v2/new/01wjyqy10.json new file mode 100644 index 000000000..43464f35f --- /dev/null +++ b/rc-v1.43-v2/new/01wjyqy10.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q116776100" + ], + "preferred": "Q116776100" + }, + { + "type": "fundref", + "all": [ + "100017151" + ], + "preferred": "100017151" + } + ], + "id": "https://ror.org/01wjyqy10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.jubileetribute.org" + } + ], + "names": [ + { + "value": "Queen Elizabeth Diamond Jubilee Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Jubilee Tribute", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01yg1g961.json b/rc-v1.43-v2/new/01yg1g961.json new file mode 100644 index 000000000..b43f18a1a --- /dev/null +++ b/rc-v1.43-v2/new/01yg1g961.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 3660434, + "geonames_details": { + "country_code": "EC", + "country_name": "Ecuador", + "lat": -2.73969, + "lng": -78.8486, + "name": "Azogues" + } + } + ], + "established": 2014, + "external_ids": [], + "id": "https://ror.org/01yg1g961", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://unae.edu.ec" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Universidad_Nacional_de_Educaci%C3%B3n_(UNAE)" + } + ], + "names": [ + { + "value": "Universidad Nacional de Educación", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National University Of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidad Nacional De Educación, Ecuador", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidad Nacional de Educación del Ecuador", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UNAE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01yh3na84.json b/rc-v1.43-v2/new/01yh3na84.json new file mode 100644 index 000000000..679e4a1b0 --- /dev/null +++ b/rc-v1.43-v2/new/01yh3na84.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1621177, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -7.80139, + "lng": 110.36472, + "name": "Yogyakarta" + } + } + ], + "established": 2020, + "external_ids": [], + "id": "https://ror.org/01yh3na84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://idpublishing.org" + } + ], + "names": [ + { + "value": "Indonesian Journal Publisher (Indonesia)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IDPublishing", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Indonesian Journal Publisher", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Penerbit Jurnal Indonesia", + "types": [ + "label" + ], + "lang": "id" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/01z6fgx85.json b/rc-v1.43-v2/new/01z6fgx85.json new file mode 100644 index 000000000..85016b324 --- /dev/null +++ b/rc-v1.43-v2/new/01z6fgx85.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9291 8328" + ], + "preferred": "0000 0004 9291 8328" + }, + { + "type": "wikidata", + "all": [ + "Q38180956" + ], + "preferred": "Q38180956" + } + ], + "id": "https://ror.org/01z6fgx85", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ceic.com/gjnyjtwwEn/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/China_Energy_Investment" + } + ], + "names": [ + { + "value": "CHN Energy (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CHN Energy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CHN ENERGY Investment Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CHN ENERGY Investment Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CHN ENERGY Investment Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "国家能源投资集团", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/020rfvw83.json b/rc-v1.43-v2/new/020rfvw83.json new file mode 100644 index 000000000..7dbd333d6 --- /dev/null +++ b/rc-v1.43-v2/new/020rfvw83.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q10302791" + ], + "preferred": "Q10302791" + } + ], + "id": "https://ror.org/020rfvw83", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ics.ulisboa.pt" + }, + { + "type": "wikipedia", + "value": "https://pt.wikipedia.org/wiki/Instituto_de_Ci%C3%AAncias_Sociais_da_Universidade_de_Lisboa" + } + ], + "names": [ + { + "value": "Instituto de Ciências Sociais", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto de Ciências Sociais da Universidade de Lisboa", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institute of Social Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Lisbon Institute of Social Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ICS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Lisbon", + "type": "parent", + "id": "https://ror.org/01c27hj86" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/021354321.json b/rc-v1.43-v2/new/021354321.json new file mode 100644 index 000000000..8ecc8ae3f --- /dev/null +++ b/rc-v1.43-v2/new/021354321.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2800866, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6819 7604" + ], + "preferred": "0000 0004 6819 7604" + }, + { + "type": "fundref", + "all": [ + "501100011068" + ], + "preferred": "501100011068" + } + ], + "id": "https://ror.org/021354321", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fondationsaintluc.be" + } + ], + "names": [ + { + "value": "Fondation Saint-Luc", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fondation Saint Luc", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Saint Luc Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Saint-Luc Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Cliniques Universitaires Saint-Luc", + "type": "parent", + "id": "https://ror.org/03s4khd80" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/021954z67.json b/rc-v1.43-v2/new/021954z67.json new file mode 100644 index 000000000..a9bdf9930 --- /dev/null +++ b/rc-v1.43-v2/new/021954z67.json @@ -0,0 +1,112 @@ +{ + "locations": [ + { + "geonames_id": 2648108, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.45, + "lng": -2.23333, + "name": "Greater Manchester" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1089 7795" + ], + "preferred": "0000 0005 1089 7795" + }, + { + "type": "fundref", + "all": [ + "501100012358" + ], + "preferred": "501100012358" + } + ], + "id": "https://ror.org/021954z67", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://arc-gm.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Applied Research Collaboration Greater Manchester", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care Greater Manchester", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC Greater Manchester", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR Collaborations for Leadership in Applied Health Research and Care", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ARC-GM", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CLAHRC GM", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC GM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/022pakb16.json b/rc-v1.43-v2/new/022pakb16.json new file mode 100644 index 000000000..85c344d53 --- /dev/null +++ b/rc-v1.43-v2/new/022pakb16.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3172394, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 40.85216, + "lng": 14.26811, + "name": "Naples" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/022pakb16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.create.unina.it" + } + ], + "names": [ + { + "value": "C.R.E.A.T.E. Consorzio Di Ricerca Per L'Energia E Le Applicazioni Technologiche Dell'Elettromagnetismo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Consorzio Di Ricerca Per L'Energia E Le Applicazioni Technologiche Dell'Elettromagnetismo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Consortium for Energy Research and Technological Applications of Electromagnetism", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CREATE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/023a2er20.json b/rc-v1.43-v2/new/023a2er20.json new file mode 100644 index 000000000..3f9a9d8b3 --- /dev/null +++ b/rc-v1.43-v2/new/023a2er20.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2653941, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.2, + "lng": 0.11667, + "name": "Cambridge" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100014679" + ], + "preferred": "501100014679" + } + ], + "id": "https://ror.org/023a2er20", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cruk.cam.ac.uk/research-groups/brindle-group/cancer-imaging-centre/" + } + ], + "names": [ + { + "value": "Cancer Imaging Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CRUK and EPSRC Cancer Imaging Centre in Cambridge and Manchester", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Cambridge", + "type": "parent", + "id": "https://ror.org/013meh722" + }, + { + "label": "University of Manchester", + "type": "parent", + "id": "https://ror.org/027m9bs27" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02525b202.json b/rc-v1.43-v2/new/02525b202.json new file mode 100644 index 000000000..a8ecdbf04 --- /dev/null +++ b/rc-v1.43-v2/new/02525b202.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02525b202", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.rechsand.com" + } + ], + "names": [ + { + "value": "Beijing Renchuang Technology Group Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Beijing Renchuang Technology Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Beijing Renchuang Technology Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Beijing Renchuang Technology Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Beijing Renchuang Technology Group Company Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "北京仁创科技集团有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/025dmzr60.json b/rc-v1.43-v2/new/025dmzr60.json new file mode 100644 index 000000000..473a12d20 --- /dev/null +++ b/rc-v1.43-v2/new/025dmzr60.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 4177887, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 26.71534, + "lng": -80.05337, + "name": "West Palm Beach" + } + } + ], + "established": 1903, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0508 0660" + ], + "preferred": "0000 0004 0508 0660" + }, + { + "type": "wikidata", + "all": [ + "Q4743883" + ], + "preferred": "Q4743883" + } + ], + "id": "https://ror.org/025dmzr60", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.theaga.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/American_Genetic_Association" + } + ], + "names": [ + { + "value": "American Genetic Association", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AGA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/026z37f85.json b/rc-v1.43-v2/new/026z37f85.json new file mode 100644 index 000000000..53a93b808 --- /dev/null +++ b/rc-v1.43-v2/new/026z37f85.json @@ -0,0 +1,94 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q9077957" + ], + "preferred": "Q9077957" + } + ], + "id": "https://ror.org/026z37f85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.sanidad.gob.es/organizacion/sns/home.htm" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Spanish_National_Health_System" + } + ], + "names": [ + { + "value": "Sistema Nacional de Salud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Sistema Nacional de Salud de España", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spanish National Health System", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Health System of Spain", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Instituto Nacional de la Salud", + "type": "predecessor", + "id": "https://ror.org/04t4b6y41" + }, + { + "label": "Ministry of Health", + "type": "parent", + "id": "https://ror.org/00y6q9n79" + } + ], + "status": "active", + "types": [ + "government", + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/027620g33.json b/rc-v1.43-v2/new/027620g33.json new file mode 100644 index 000000000..614fbf359 --- /dev/null +++ b/rc-v1.43-v2/new/027620g33.json @@ -0,0 +1,62 @@ +{ + "locations": [ + { + "geonames_id": 3173435, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + } + } + ], + "established": 1994, + "external_ids": [], + "id": "https://ror.org/027620g33", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fondazionebassetti.org" + } + ], + "names": [ + { + "value": "Fondazione Giannino Bassetti", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FGB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Globus et Locus", + "type": "related", + "id": "https://ror.org/01ym3w380" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02a2pkk25.json b/rc-v1.43-v2/new/02a2pkk25.json new file mode 100644 index 000000000..4bde04206 --- /dev/null +++ b/rc-v1.43-v2/new/02a2pkk25.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02a2pkk25", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.forum-transregionale-studien.de" + } + ], + "names": [ + { + "value": "Forum transregionale Studien e.V.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Forum transregionale Studien", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Forum for Transregional Studies", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02a37a132.json b/rc-v1.43-v2/new/02a37a132.json new file mode 100644 index 000000000..bc79161f6 --- /dev/null +++ b/rc-v1.43-v2/new/02a37a132.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1248991, + "geonames_details": { + "country_code": "LK", + "country_name": "Sri Lanka", + "lat": 6.93548, + "lng": 79.84868, + "name": "Colombo" + } + } + ], + "established": 2000, + "external_ids": [], + "id": "https://ror.org/02a37a132", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://icbt.lk" + } + ], + "names": [ + { + "value": "International College of Business and Technology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "International College of Business & Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ICBT Campus", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ICBT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02ackr434.json b/rc-v1.43-v2/new/02ackr434.json new file mode 100644 index 000000000..bee094421 --- /dev/null +++ b/rc-v1.43-v2/new/02ackr434.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 4931972, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.3751, + "lng": -71.10561, + "name": "Cambridge" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0599 7276" + ], + "preferred": "0000 0004 0599 7276" + }, + { + "type": "wikidata", + "all": [ + "Q19604401" + ], + "preferred": "Q19604401" + }, + { + "type": "fundref", + "all": [ + "100019714" + ], + "preferred": "100019714" + } + ], + "id": "https://ror.org/02ackr434", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.foundationmedicine.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Foundation_Medicine" + } + ], + "names": [ + { + "value": "Foundation Medicine (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Foundation Medicine", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Roche (Switzerland)", + "type": "parent", + "id": "https://ror.org/00by1q217" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02b42av24.json b/rc-v1.43-v2/new/02b42av24.json new file mode 100644 index 000000000..11ad3e5c5 --- /dev/null +++ b/rc-v1.43-v2/new/02b42av24.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 601294, + "geonames_details": { + "country_code": "UZ", + "country_name": "Uzbekistan", + "lat": 42.45306, + "lng": 59.61028, + "name": "Nukus" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/02b42av24", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://tdaunukus.uz" + } + ], + "names": [ + { + "value": "Institute of Agriculture and Agrotechnologies of Karakalpakstan", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Karakalpak Institute of Agriculture and Agrotechnologies", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Институт сельского хозяйства и агротехнологий Каракалпакстана", + "types": [ + "label" + ], + "lang": "ru" + }, + { + "value": "Qoraqalpog'iston qishloq xo'jaligi va agrotexnologiyalar instituti", + "types": [ + "label" + ], + "lang": "uz" + }, + { + "value": "Qaraqalpaqstan awıl xojalıǵı hám agrotexnologiyalar institutı", + "types": [ + "label" + ], + "lang": "tt" + }, + { + "value": "IAAK", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02bf8e216.json b/rc-v1.43-v2/new/02bf8e216.json new file mode 100644 index 000000000..315cb7784 --- /dev/null +++ b/rc-v1.43-v2/new/02bf8e216.json @@ -0,0 +1,74 @@ +{ + "locations": [ + { + "geonames_id": 3435910, + "geonames_details": { + "country_code": "AR", + "country_name": "Argentina", + "lat": -34.61315, + "lng": -58.37723, + "name": "Buenos Aires" + } + } + ], + "established": 2007, + "external_ids": [], + "id": "https://ror.org/02bf8e216", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.editorialteseo.com" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Editorial_Teseo" + } + ], + "names": [ + { + "value": "Teseo (Argentina)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Editorial Teseo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TeseoPress", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Teseo", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02bjrmf75.json b/rc-v1.43-v2/new/02bjrmf75.json new file mode 100644 index 000000000..9ee98da9d --- /dev/null +++ b/rc-v1.43-v2/new/02bjrmf75.json @@ -0,0 +1,76 @@ +{ + "locations": [ + { + "geonames_id": 2886242, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.93333, + "lng": 6.95, + "name": "Cologne" + } + } + ], + "established": 1999, + "external_ids": [], + "id": "https://ror.org/02bjrmf75", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.dip.de" + } + ], + "names": [ + { + "value": "Deutsche Institut für angewandte Pflegeforschung e.V.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Deutsche Institut für angewandte Pflegeforschung", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "German Institute of Applied Nursing Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DIP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Catholic University of Applied Sciences of North Rhine – Westphalia", + "type": "related", + "id": "https://ror.org/024nr0776" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02cc3ss06.json b/rc-v1.43-v2/new/02cc3ss06.json new file mode 100644 index 000000000..65f65edec --- /dev/null +++ b/rc-v1.43-v2/new/02cc3ss06.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0630 7561" + ], + "preferred": "0000 0005 0630 7561" + }, + { + "type": "fundref", + "all": [ + "501100022111" + ], + "preferred": "501100022111" + } + ], + "id": "https://ror.org/02cc3ss06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://huofamilyfoundation.org" + } + ], + "names": [ + { + "value": "Huo Family Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02cq2e244.json b/rc-v1.43-v2/new/02cq2e244.json new file mode 100644 index 000000000..3126a4714 --- /dev/null +++ b/rc-v1.43-v2/new/02cq2e244.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 5327684, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.87159, + "lng": -122.27275, + "name": "Berkeley" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2299 1026" + ], + "preferred": "0000 0001 2299 1026" + }, + { + "type": "fundref", + "all": [ + "100012597" + ], + "preferred": "100012597" + } + ], + "id": "https://ror.org/02cq2e244", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://peer.berkeley.edu" + } + ], + "names": [ + { + "value": "Pacific Earthquake Engineering Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "UC Berkeley Pacific Earthquake Engineering Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of California Berkeley Pacific Earthquake Engineering Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PEER", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "UCB PEER", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of California, Berkeley", + "type": "parent", + "id": "https://ror.org/01an7q238" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02cwv3a12.json b/rc-v1.43-v2/new/02cwv3a12.json new file mode 100644 index 000000000..279c58ed8 --- /dev/null +++ b/rc-v1.43-v2/new/02cwv3a12.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2654588, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.40606, + "lng": 0.01519, + "name": "Bromley" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7782 4876" + ], + "preferred": "0000 0004 7782 4876" + }, + { + "type": "wikidata", + "all": [ + "Q116236067" + ], + "preferred": "Q116236067" + }, + { + "type": "fundref", + "all": [ + "100013421" + ], + "preferred": "100013421" + } + ], + "id": "https://ror.org/02cwv3a12", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pinkribbonfoundation.org.uk" + } + ], + "names": [ + { + "value": "Pink Ribbon Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PRF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02fkq9g11.json b/rc-v1.43-v2/new/02fkq9g11.json new file mode 100644 index 000000000..f42d803bd --- /dev/null +++ b/rc-v1.43-v2/new/02fkq9g11.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 1808956, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 36.18389, + "lng": 113.10528, + "name": "Changzhi" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02fkq9g11", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.czszyyjsfsyy.cn" + } + ], + "names": [ + { + "value": "Affiliated Hospital of Changzhi Institute of Traditional Chinese Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Changzhi Traditional Chinese Medicine Hospital", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "长治市中医研究所附属医院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02ftfma65.json b/rc-v1.43-v2/new/02ftfma65.json new file mode 100644 index 000000000..4eeb832f6 --- /dev/null +++ b/rc-v1.43-v2/new/02ftfma65.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5967629, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.54594, + "lng": -80.25599, + "name": "Guelph" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100015516" + ], + "preferred": "501100015516" + } + ], + "id": "https://ror.org/02ftfma65", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uoguelph.ca/alliance/" + } + ], + "names": [ + { + "value": "Ontario Agri-Food Innovation Alliance", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Agricultural Research Institute of Ontario", + "type": "related", + "id": "https://ror.org/011n4tk56" + }, + { + "label": "University of Guelph", + "type": "related", + "id": "https://ror.org/01r7awg59" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02fy17q72.json b/rc-v1.43-v2/new/02fy17q72.json new file mode 100644 index 000000000..7004924e6 --- /dev/null +++ b/rc-v1.43-v2/new/02fy17q72.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3648522, + "geonames_details": { + "country_code": "VE", + "country_name": "Venezuela", + "lat": 10.0647, + "lng": -69.35703, + "name": "Barquisimeto" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0601 0063" + ], + "preferred": "0000 0005 0601 0063" + } + ], + "id": "https://ror.org/02fy17q72", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aulavirtual.web.ve" + } + ], + "names": [ + { + "value": "Fundación Aula Virtual", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Aula Virtual Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FAV", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02gqg2511.json b/rc-v1.43-v2/new/02gqg2511.json new file mode 100644 index 000000000..9aa6599f8 --- /dev/null +++ b/rc-v1.43-v2/new/02gqg2511.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100015091" + ], + "preferred": "501100015091" + } + ], + "id": "https://ror.org/02gqg2511", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.clahrc-southlondon.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Collaboration for Leadership in Applied Health Research and Care South London", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC South London", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care South London", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02hb5yj49.json b/rc-v1.43-v2/new/02hb5yj49.json new file mode 100644 index 000000000..1e6a148cf --- /dev/null +++ b/rc-v1.43-v2/new/02hb5yj49.json @@ -0,0 +1,127 @@ +{ + "locations": [ + { + "geonames_id": 4994358, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.96336, + "lng": -85.66809, + "name": "Grand Rapids" + } + } + ], + "established": 2022, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q123561060" + ], + "preferred": "Q123561060" + } + ], + "id": "https://ror.org/02hb5yj49", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://corewellhealth.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Corewell_Health" + } + ], + "names": [ + { + "value": "Corewell Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Beaumont Health", + "type": "predecessor", + "id": "https://ror.org/05g2hd893" + }, + { + "label": "Spectrum Health", + "type": "predecessor", + "id": "https://ror.org/02ahxdd04" + }, + { + "label": "Lakeland Health", + "type": "predecessor", + "id": "https://ror.org/02x3f7722" + }, + { + "label": "Corewell Health Butterworth Hospital", + "type": "child", + "id": "https://ror.org/05x643e19" + }, + { + "label": "Helen DeVos Children's Hospital", + "type": "child", + "id": "https://ror.org/03bk8p931" + }, + { + "label": "Corewell Health Blodgett Hospital", + "type": "child", + "id": "https://ror.org/00qy68j92" + }, + { + "label": "Corewell Health Reed City Hospital", + "type": "child", + "id": "https://ror.org/04xcq9q51" + }, + { + "label": "Corewell Health Zeeland Hospital", + "type": "child", + "id": "https://ror.org/053jm8142" + }, + { + "label": "Corewell Health Children's", + "type": "child", + "id": "https://ror.org/03nr10290" + }, + { + "label": "Beaumont Hospital, Dearborn", + "type": "child", + "id": "https://ror.org/03x4pp342" + }, + { + "label": "Corewell Health William Beaumont University Hospital", + "type": "child", + "id": "https://ror.org/058sakv40" + }, + { + "label": "Beaumont Hospital, Royal Oak", + "type": "child", + "id": "https://ror.org/03artm726" + }, + { + "label": "Beaumont Hospital, Troy", + "type": "child", + "id": "https://ror.org/05x9ffc66" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02hn9hc43.json b/rc-v1.43-v2/new/02hn9hc43.json new file mode 100644 index 000000000..f687475bc --- /dev/null +++ b/rc-v1.43-v2/new/02hn9hc43.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2659994, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.516, + "lng": 6.63282, + "name": "Lausanne" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02hn9hc43", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.swisslumix.com" + } + ], + "names": [ + { + "value": "SwissLumix (Switzerland)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SwissLumix", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SwissLumix Sarl", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02kvgs502.json b/rc-v1.43-v2/new/02kvgs502.json new file mode 100644 index 000000000..dac524614 --- /dev/null +++ b/rc-v1.43-v2/new/02kvgs502.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1816971, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 38.87288, + "lng": 115.46246, + "name": "Baoding" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02kvgs502", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.yingligroup.com" + } + ], + "names": [ + { + "value": "Yingli Energy Technology Group (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Yingli Energy Technology Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yingli", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "英利能源科技集团", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02kw1ws04.json b/rc-v1.43-v2/new/02kw1ws04.json new file mode 100644 index 000000000..1b9d95646 --- /dev/null +++ b/rc-v1.43-v2/new/02kw1ws04.json @@ -0,0 +1,79 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1087 9968" + ], + "preferred": "0000 0005 1087 9968" + } + ], + "id": "https://ror.org/02kw1ws04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bigai.ai" + } + ], + "names": [ + { + "value": "Beijing Institute for General Artificial Intelligence", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Beijing Institute for General Artificial Intelligence (BIGAI)", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "北京通用人工智能研究院", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "BIGAI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02mb2dn67.json b/rc-v1.43-v2/new/02mb2dn67.json new file mode 100644 index 000000000..4a47daa38 --- /dev/null +++ b/rc-v1.43-v2/new/02mb2dn67.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 1793511, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 37.86944, + "lng": 112.56028, + "name": "Taiyuan" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8342 6380" + ], + "preferred": "0000 0004 8342 6380" + } + ], + "id": "https://ror.org/02mb2dn67", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sx.sgcc.com.cn" + } + ], + "names": [ + { + "value": "State Grid Shanxi Electric Power Company (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "国网山西省电力公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02qqvpd39.json b/rc-v1.43-v2/new/02qqvpd39.json new file mode 100644 index 000000000..b24731bd4 --- /dev/null +++ b/rc-v1.43-v2/new/02qqvpd39.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2859147, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.25, + "lng": 11.56667, + "name": "Oberschleißheim" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q101378210" + ], + "preferred": "Q101378210" + } + ], + "id": "https://ror.org/02qqvpd39", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vetmed.uni-muenchen.de/einrichtungen/klini_einrichtungen/index.html" + } + ], + "names": [ + { + "value": "Zentrum für Klinische Tiermedizin", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Klinik für Schweine", + "type": "child", + "id": "https://ror.org/02am8se85" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02r40rn49.json b/rc-v1.43-v2/new/02r40rn49.json new file mode 100644 index 000000000..adec46f19 --- /dev/null +++ b/rc-v1.43-v2/new/02r40rn49.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2078025, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -34.92866, + "lng": 138.59863, + "name": "Adelaide" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000000417963647" + ], + "preferred": "0000000417963647" + }, + { + "type": "wikidata", + "all": [ + "Q58347341" + ], + "preferred": "Q58347341" + } + ], + "id": "https://ror.org/02r40rn49", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://centraladelaide.health.sa.gov.au" + } + ], + "names": [ + { + "value": "Central Adelaide Local Health Network", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CALHN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Royal Adelaide Hospital", + "type": "child", + "id": "https://ror.org/00carf720" + }, + { + "label": "Queen Elizabeth Hospital", + "type": "child", + "id": "https://ror.org/00x362k69" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02r4fqa76.json b/rc-v1.43-v2/new/02r4fqa76.json new file mode 100644 index 000000000..19977d13c --- /dev/null +++ b/rc-v1.43-v2/new/02r4fqa76.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2641673, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 54.97328, + "lng": -1.61396, + "name": "Newcastle upon Tyne" + } + } + ], + "established": 2016, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100017507" + ], + "preferred": "501100017507" + } + ], + "id": "https://ror.org/02r4fqa76", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ncl.ac.uk/cesi/" + } + ], + "names": [ + { + "value": "National Centre for Energy Systems Integration", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "EPSRC National Centre for Energy Systems Integration", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Engineering and Physical Sciences Research Council National Centre for Energy Systems Integration", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CESI", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "EPSRC CESI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Newcastle University", + "type": "parent", + "id": "https://ror.org/01kj2bm70" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02stdqb15.json b/rc-v1.43-v2/new/02stdqb15.json new file mode 100644 index 000000000..647b47592 --- /dev/null +++ b/rc-v1.43-v2/new/02stdqb15.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 5967629, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.54594, + "lng": -80.25599, + "name": "Guelph" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 0217" + ], + "preferred": "0000 0004 9225 0217" + }, + { + "type": "fundref", + "all": [ + "100015900" + ], + "preferred": "100015900" + } + ], + "id": "https://ror.org/02stdqb15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://pettrust.uoguelph.ca" + } + ], + "names": [ + { + "value": "OVC Pet Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ontario Veterinary College Pet Trust", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ontario Veterinary College", + "type": "parent", + "id": "https://ror.org/04frvgs13" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02vrchf15.json b/rc-v1.43-v2/new/02vrchf15.json new file mode 100644 index 000000000..1b44223b6 --- /dev/null +++ b/rc-v1.43-v2/new/02vrchf15.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2988358, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.31117, + "lng": -0.35583, + "name": "Pau" + } + } + ], + "established": 1969, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q3117948" + ], + "preferred": "Q3117948" + } + ], + "id": "https://ror.org/02vrchf15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.esc-pau.fr" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Groupe_%C3%89cole_sup%C3%A9rieure_de_commerce_de_Pau" + } + ], + "names": [ + { + "value": "éklore-ed School of Management", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Eklore School of Management", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ESC Pau Business School", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02vzjz256.json b/rc-v1.43-v2/new/02vzjz256.json new file mode 100644 index 000000000..9c66dd0b2 --- /dev/null +++ b/rc-v1.43-v2/new/02vzjz256.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2636389, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.55797, + "lng": -1.78116, + "name": "Swindon" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2189 5796" + ], + "preferred": "0000 0001 2189 5796" + }, + { + "type": "wikidata", + "all": [ + "Q2054530" + ], + "preferred": "Q2054530" + }, + { + "type": "fundref", + "all": [ + "501100015724" + ], + "preferred": "501100015724" + } + ], + "id": "https://ror.org/02vzjz256", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Particle_Physics_and_Astronomy_Research_Council" + } + ], + "names": [ + { + "value": "Particle Physics and Astronomy Research Council", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02w3bnx54.json b/rc-v1.43-v2/new/02w3bnx54.json new file mode 100644 index 000000000..fb387a897 --- /dev/null +++ b/rc-v1.43-v2/new/02w3bnx54.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": 1967, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8800 9608" + ], + "preferred": "0000 0000 8800 9608" + }, + { + "type": "wikidata", + "all": [ + "Q3152136" + ], + "preferred": "Q3152136" + } + ], + "id": "https://ror.org/02w3bnx54", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ithq.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Institut_de_tourisme_et_d%27h%C3%B4tellerie_du_Qu%C3%A9bec" + } + ], + "names": [ + { + "value": "Institut de tourisme et d'hôtellerie du Québec", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ITHQ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Government of Northwest Territories", + "type": "parent", + "id": "https://ror.org/05hqvvq43" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02wjh7838.json b/rc-v1.43-v2/new/02wjh7838.json new file mode 100644 index 000000000..c8dd9a76d --- /dev/null +++ b/rc-v1.43-v2/new/02wjh7838.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 4347778, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012678" + ], + "preferred": "100012678" + } + ], + "id": "https://ror.org/02wjh7838", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.morgan.edu/soe/ntc" + } + ], + "names": [ + { + "value": "National Transportation Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Morgan State University National Transportation Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NTC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Morgan State University", + "type": "parent", + "id": "https://ror.org/017d8gk22" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02x2py139.json b/rc-v1.43-v2/new/02x2py139.json new file mode 100644 index 000000000..e6c5ca748 --- /dev/null +++ b/rc-v1.43-v2/new/02x2py139.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 1609350, + "geonames_details": { + "country_code": "TH", + "country_name": "Thailand", + "lat": 13.75398, + "lng": 100.50144, + "name": "Bangkok" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0482 0559" + ], + "preferred": "0000 0004 0482 0559" + }, + { + "type": "wikidata", + "all": [ + "Q18394263" + ], + "preferred": "Q18394263" + } + ], + "id": "https://ror.org/02x2py139", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.thonburi-u.ac.th" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Thonburi_University" + } + ], + "names": [ + { + "value": "Thonburi University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Thonburi College of Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Thonburi College", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TRU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02x402970.json b/rc-v1.43-v2/new/02x402970.json new file mode 100644 index 000000000..08fc87b7d --- /dev/null +++ b/rc-v1.43-v2/new/02x402970.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2509954, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.47391, + "lng": -0.37966, + "name": "Valencia" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02x402970", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ipronics.com" + } + ], + "names": [ + { + "value": "iPronics Programmable Photonics (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "iPronics Programmable Photonics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "iPronics Programmable Photonics, S.L.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "iPronics", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02x9gn510.json b/rc-v1.43-v2/new/02x9gn510.json new file mode 100644 index 000000000..635bcc42e --- /dev/null +++ b/rc-v1.43-v2/new/02x9gn510.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6088132, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.23085, + "lng": -72.61292, + "name": "Nicolet" + } + } + ], + "established": 1969, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9471 627X" + ], + "preferred": "0000 0000 9471 627X" + }, + { + "type": "wikidata", + "all": [ + "Q3578131" + ], + "preferred": "Q3578131" + } + ], + "id": "https://ror.org/02x9gn510", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.enpq.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/%C3%89cole_nationale_de_police_du_Qu%C3%A9bec" + } + ], + "names": [ + { + "value": "École nationale de police du Québec", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ENPQ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/02zap0h66.json b/rc-v1.43-v2/new/02zap0h66.json new file mode 100644 index 000000000..847b75046 --- /dev/null +++ b/rc-v1.43-v2/new/02zap0h66.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5987650, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.0164, + "lng": -73.4236, + "name": "Joliette" + } + } + ], + "established": 1988, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8059 5285" + ], + "preferred": "0000 0004 8059 5285" + } + ], + "id": "https://ror.org/02zap0h66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cisss-lanaudiere.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de Lanaudière", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de Lanaudière", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/0300g2m85.json b/rc-v1.43-v2/new/0300g2m85.json new file mode 100644 index 000000000..b6babb7f2 --- /dev/null +++ b/rc-v1.43-v2/new/0300g2m85.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 2654993, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.79391, + "lng": -1.75206, + "name": "Bradford" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100014338" + ], + "preferred": "501100014338" + } + ], + "id": "https://ror.org/0300g2m85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.arc-yh.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC Yorkshire and Humber", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC YH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/031tb8x29.json b/rc-v1.43-v2/new/031tb8x29.json new file mode 100644 index 000000000..c063ceb51 --- /dev/null +++ b/rc-v1.43-v2/new/031tb8x29.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2655642, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.84861, + "lng": -1.83857, + "name": "Bingley" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8307 2092" + ], + "preferred": "0000 0004 8307 2092" + }, + { + "type": "fundref", + "all": [ + "100014894" + ], + "preferred": "100014894" + } + ], + "id": "https://ror.org/031tb8x29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.emeraldgrouppublishing.com" + } + ], + "names": [ + { + "value": "The Emerald Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Emerald Foundation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Emerald Group Publishing (United Kingdom)", + "type": "parent", + "id": "https://ror.org/02avhnb77" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/0329bcd18.json b/rc-v1.43-v2/new/0329bcd18.json new file mode 100644 index 000000000..1ec42f55f --- /dev/null +++ b/rc-v1.43-v2/new/0329bcd18.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3171180, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 43.1122, + "lng": 12.38878, + "name": "Perugia" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2337 4150" + ], + "preferred": "0000 0001 2337 4150" + }, + { + "type": "wikidata", + "all": [ + "Q30888354" + ], + "preferred": "Q30888354" + }, + { + "type": "fundref", + "all": [ + "501100009889" + ], + "preferred": "501100009889" + } + ], + "id": "https://ror.org/0329bcd18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.regione.umbria.it/la-regione" + }, + { + "type": "wikipedia", + "value": "https://it.wikipedia.org/wiki/Giunta_regionale_dell%27Umbria" + } + ], + "names": [ + { + "value": "Regione Umbria", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Region of Umbria", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Umbria Region", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/033frs404.json b/rc-v1.43-v2/new/033frs404.json new file mode 100644 index 000000000..e5cb55e51 --- /dev/null +++ b/rc-v1.43-v2/new/033frs404.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1972, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2175 7086" + ], + "preferred": "0000 0001 2175 7086" + }, + { + "type": "fundref", + "all": [ + "100014693" + ], + "preferred": "100014693" + } + ], + "id": "https://ror.org/033frs404", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://sempre.org.uk" + } + ], + "names": [ + { + "value": "Society for Education, Music and Psychology Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SEMPRE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/033svsm10.json b/rc-v1.43-v2/new/033svsm10.json new file mode 100644 index 000000000..4047232d2 --- /dev/null +++ b/rc-v1.43-v2/new/033svsm10.json @@ -0,0 +1,112 @@ +{ + "locations": [ + { + "geonames_id": 2648108, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.45, + "lng": -2.23333, + "name": "Greater Manchester" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0612 4047" + ], + "preferred": "0000 0004 0612 4047" + }, + { + "type": "wikidata", + "all": [ + "Q24060265" + ], + "preferred": "Q24060265" + }, + { + "type": "fundref", + "all": [ + "501100017008" + ], + "preferred": "501100017008" + } + ], + "id": "https://ror.org/033svsm10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.crukcentre.manchester.ac.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Manchester_Cancer_Research_Centre" + } + ], + "names": [ + { + "value": "Cancer Research UK Manchester Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CRUK Manchester Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Manchester Cancer Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MCRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Cancer Research UK", + "type": "parent", + "id": "https://ror.org/054225q67" + }, + { + "label": "University of Manchester", + "type": "parent", + "id": "https://ror.org/027m9bs27" + }, + { + "label": "The Christie NHS Foundation Trust", + "type": "parent", + "id": "https://ror.org/03v9efr22" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/034a0rc87.json b/rc-v1.43-v2/new/034a0rc87.json new file mode 100644 index 000000000..a7b83f876 --- /dev/null +++ b/rc-v1.43-v2/new/034a0rc87.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2966685, + "geonames_details": { + "country_code": "IE", + "country_name": "Ireland", + "lat": 53.33082, + "lng": -6.23643, + "name": "Ballsbridge" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7784 8691" + ], + "preferred": "0000 0004 7784 8691" + }, + { + "type": "wikidata", + "all": [ + "Q122978876" + ], + "preferred": "Q122978876" + }, + { + "type": "fundref", + "all": [ + "100014251" + ], + "preferred": "100014251" + } + ], + "id": "https://ror.org/034a0rc87", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://heranet.info" + } + ], + "names": [ + { + "value": "Humanities in the European Research Area", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "HERA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/034d74a71.json b/rc-v1.43-v2/new/034d74a71.json new file mode 100644 index 000000000..b1e7cf4c0 --- /dev/null +++ b/rc-v1.43-v2/new/034d74a71.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6782 3650" + ], + "preferred": "0000 0004 6782 3650" + } + ], + "id": "https://ror.org/034d74a71", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fciencias-id.pt" + } + ], + "names": [ + { + "value": "FCiências.ID - Associação para a Investigação e Desenvolvimento de Ciências", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FCiências.ID", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/034x1af55.json b/rc-v1.43-v2/new/034x1af55.json new file mode 100644 index 000000000..602978b96 --- /dev/null +++ b/rc-v1.43-v2/new/034x1af55.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6453323, + "geonames_details": { + "country_code": "NO", + "country_name": "Norway", + "lat": 67.28325, + "lng": 14.38319, + "name": "Bodø" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2326 7101" + ], + "preferred": "0000 0001 2326 7101" + }, + { + "type": "wikidata", + "all": [ + "Q1779468" + ], + "preferred": "Q1779468" + }, + { + "type": "fundref", + "all": [ + "100015995" + ], + "preferred": "100015995" + } + ], + "id": "https://ror.org/034x1af55", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://uin.no" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Nordland" + } + ], + "names": [ + { + "value": "University of Nordland", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/035z18f46.json b/rc-v1.43-v2/new/035z18f46.json new file mode 100644 index 000000000..0ab3bbc64 --- /dev/null +++ b/rc-v1.43-v2/new/035z18f46.json @@ -0,0 +1,69 @@ +{ + "locations": [ + { + "geonames_id": 1793511, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 37.86944, + "lng": 112.56028, + "name": "Taiyuan" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/035z18f46", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://sklqo.sxu.edu.cn" + } + ], + "names": [ + { + "value": "State Key Laboratory of Quantum Optics and Quantum Optics Devices", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Quantum Optics and Quantum Optics Devices", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "量子光学与光量子器件国家重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "Shanxi University", + "type": "parent", + "id": "https://ror.org/03y3e3s17" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/036wkjd70.json b/rc-v1.43-v2/new/036wkjd70.json new file mode 100644 index 000000000..dccb5a39e --- /dev/null +++ b/rc-v1.43-v2/new/036wkjd70.json @@ -0,0 +1,105 @@ +{ + "locations": [ + { + "geonames_id": 4932869, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.59981, + "lng": -71.36728, + "name": "Chelmsford" + } + } + ], + "established": 1980, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0413 2799" + ], + "preferred": "0000 0004 0413 2799" + }, + { + "type": "wikidata", + "all": [ + "Q118075142" + ], + "preferred": "Q118075142" + }, + { + "type": "fundref", + "all": [ + "100015345" + ], + "preferred": "100015345" + } + ], + "id": "https://ror.org/036wkjd70", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.zoll.com" + } + ], + "names": [ + { + "value": "ZOLL Medical Corporation (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ZOLL", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ZOLL Medical", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ZOLL Medical Corporation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ZMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Asahi Kasei (Japan)", + "type": "parent", + "id": "https://ror.org/018wp0236" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/036xwe059.json b/rc-v1.43-v2/new/036xwe059.json new file mode 100644 index 000000000..02c3ab569 --- /dev/null +++ b/rc-v1.43-v2/new/036xwe059.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2934246, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.22172, + "lng": 6.77616, + "name": "Düsseldorf" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/036xwe059", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.mlv.nrw.de" + } + ], + "names": [ + { + "value": "Ministerium für Landwirtschaft und Verbraucherschutz des Landes Nordrhein-Westfalen", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Agriculture and Consumer Protection of the State of North Rhine-Westphalia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MLV NRW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/038kr2d80.json b/rc-v1.43-v2/new/038kr2d80.json new file mode 100644 index 000000000..673970c0d --- /dev/null +++ b/rc-v1.43-v2/new/038kr2d80.json @@ -0,0 +1,109 @@ +{ + "locations": [ + { + "geonames_id": 4180439, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 33.749, + "lng": -84.38798, + "name": "Atlanta" + } + } + ], + "established": 1930, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8741 8346" + ], + "preferred": "0000 0000 8741 8346" + }, + { + "type": "wikidata", + "all": [ + "Q2600140" + ], + "preferred": "Q2600140" + }, + { + "type": "fundref", + "all": [ + "100012692" + ], + "preferred": "100012692" + } + ], + "id": "https://ror.org/038kr2d80", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.enprc.emory.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Emory_National_Primate_Research_Center" + } + ], + "names": [ + { + "value": "Emory National Primate Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Yerkes National Primate Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Emory University Yerkes National Primate Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Emory University National Primate Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "YNPRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Emory University", + "type": "parent", + "id": "https://ror.org/03czfpz43" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/039epzh36.json b/rc-v1.43-v2/new/039epzh36.json new file mode 100644 index 000000000..188f53bbc --- /dev/null +++ b/rc-v1.43-v2/new/039epzh36.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 2524907, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 39.2989, + "lng": 16.25307, + "name": "Cosenza" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/039epzh36", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cs.infn.it" + } + ], + "names": [ + { + "value": "INFN Gruppo Collegato di Cosenza", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Istituto Nazionale di Fisica Nucleare Gruppo Collegato di Cosenza", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Institute of Nuclear Physics - Cosenza Unit", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "GCC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "University of Calabria", + "type": "related", + "id": "https://ror.org/02rc97e94" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03byxpy70.json b/rc-v1.43-v2/new/03byxpy70.json new file mode 100644 index 000000000..1a0bdd151 --- /dev/null +++ b/rc-v1.43-v2/new/03byxpy70.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2349276, + "geonames_details": { + "country_code": "NG", + "country_name": "Nigeria", + "lat": 6.19824, + "lng": 6.73187, + "name": "Asaba" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/03byxpy70", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://dou.edu.ng" + } + ], + "names": [ + { + "value": "Dennis Osadebay University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Dennis Osadebay University, Asaba", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DOU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03dcvs546.json b/rc-v1.43-v2/new/03dcvs546.json new file mode 100644 index 000000000..4d1270a49 --- /dev/null +++ b/rc-v1.43-v2/new/03dcvs546.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2636432, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.62079, + "lng": -3.94323, + "name": "Swansea" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7765 6809" + ], + "preferred": "0000 0004 7765 6809" + }, + { + "type": "fundref", + "all": [ + "100014590" + ], + "preferred": "100014590" + } + ], + "id": "https://ror.org/03dcvs546", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ernw.ac.uk" + } + ], + "names": [ + { + "value": "Engineering Research Network Wales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Rhwydwaith Ymchwil Peirianneg Cymru", + "types": [ + "label" + ], + "lang": "cy" + }, + { + "value": "ERNW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03eewzy02.json b/rc-v1.43-v2/new/03eewzy02.json new file mode 100644 index 000000000..61aa0237f --- /dev/null +++ b/rc-v1.43-v2/new/03eewzy02.json @@ -0,0 +1,74 @@ +{ + "locations": [ + { + "geonames_id": 2996944, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.74846, + "lng": 4.84671, + "name": "Lyon" + } + } + ], + "established": 1983, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q1052684" + ], + "preferred": "Q1052684" + } + ], + "id": "https://ror.org/03eewzy02", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cegid.com" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Cegid" + } + ], + "names": [ + { + "value": "Cegid (France)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Cegid", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Meta4 (Spain)", + "type": "predecessor", + "id": "https://ror.org/03kevw840" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03f1agw55.json b/rc-v1.43-v2/new/03f1agw55.json new file mode 100644 index 000000000..a8038df29 --- /dev/null +++ b/rc-v1.43-v2/new/03f1agw55.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2007, + "external_ids": [], + "id": "https://ror.org/03f1agw55", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://dpr-barcelona.com" + } + ], + "names": [ + { + "value": "dpr-barcelona", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DPR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03gf4dx13.json b/rc-v1.43-v2/new/03gf4dx13.json new file mode 100644 index 000000000..714e7ef00 --- /dev/null +++ b/rc-v1.43-v2/new/03gf4dx13.json @@ -0,0 +1,69 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/03gf4dx13", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.drace.com" + } + ], + "names": [ + { + "value": "DRACE GEOCISA S.A. (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DRACE GEOCISA S.A.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DRACE GEOCISA", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Geocisa (Spain)", + "type": "predecessor", + "id": "https://ror.org/0040z4m89" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03hc27x54.json b/rc-v1.43-v2/new/03hc27x54.json new file mode 100644 index 000000000..4cc3a8449 --- /dev/null +++ b/rc-v1.43-v2/new/03hc27x54.json @@ -0,0 +1,76 @@ +{ + "locations": [ + { + "geonames_id": 2464461, + "geonames_details": { + "country_code": "TN", + "country_name": "Tunisia", + "lat": 34, + "lng": 9, + "name": "Tunisia" + } + } + ], + "established": 1978, + "external_ids": [], + "id": "https://ror.org/03hc27x54", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cnudst.rnrt.tn" + } + ], + "names": [ + { + "value": "University National Center of Scientific and Technical Documentation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre National Universitaire de Documentation Scientifique et Technique", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "المركز الوطني الجامعي للتوثيق العلمي والتقني", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "CNUDST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ministry of Higher Education and Scientific Research", + "type": "parent", + "id": "https://ror.org/05v1m8q81" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03hecy592.json b/rc-v1.43-v2/new/03hecy592.json new file mode 100644 index 000000000..1de003a95 --- /dev/null +++ b/rc-v1.43-v2/new/03hecy592.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2857458, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 53.14118, + "lng": 8.21467, + "name": "Oldenburg" + } + } + ], + "established": 1792, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2331 9127" + ], + "preferred": "0000 0001 2331 9127" + }, + { + "type": "wikidata", + "all": [ + "Q1802139" + ], + "preferred": "Q1802139" + } + ], + "id": "https://ror.org/03hecy592", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lb-oldenburg.de" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Landesbibliothek_Oldenburg" + } + ], + "names": [ + { + "value": "Landesbibliothek Oldenburg", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Library of Oldenburg", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LBO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03hvdbf98.json b/rc-v1.43-v2/new/03hvdbf98.json new file mode 100644 index 000000000..5a4e18147 --- /dev/null +++ b/rc-v1.43-v2/new/03hvdbf98.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1839, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7239 8126" + ], + "preferred": "0000 0004 7239 8126" + }, + { + "type": "fundref", + "all": [ + "501100011950" + ], + "preferred": "501100011950" + } + ], + "id": "https://ror.org/03hvdbf98", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bmafoundationmr.org.uk" + } + ], + "names": [ + { + "value": "BMA Foundation for Medical Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BMA Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "British Medical Association Foundation for Medical Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "British Medical Association Foundation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "British Medical Association", + "type": "parent", + "id": "https://ror.org/02caz1f24" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03jn2p430.json b/rc-v1.43-v2/new/03jn2p430.json new file mode 100644 index 000000000..bd0b0759f --- /dev/null +++ b/rc-v1.43-v2/new/03jn2p430.json @@ -0,0 +1,116 @@ +{ + "locations": [ + { + "geonames_id": 1176615, + "geonames_details": { + "country_code": "PK", + "country_name": "Pakistan", + "lat": 33.72148, + "lng": 73.04329, + "name": "Islamabad" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2230 840X" + ], + "preferred": "0000 0001 2230 840X" + }, + { + "type": "wikidata", + "all": [ + "Q4294470" + ], + "preferred": "Q4294470" + }, + { + "type": "fundref", + "all": [ + "100019473" + ], + "preferred": "100019473" + } + ], + "id": "https://ror.org/03jn2p430", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://most.gov.pk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Science_and_Technology_%28Pakistan%29" + } + ], + "names": [ + { + "value": "Ministry of Science and Technology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Science and Technology, Government of Pakistan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Science and Technology of Pakistan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Pakistan Ministry of Science and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "وزارت سائنس و ٹیکنالوجی", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "MoST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Government of Pakistan", + "type": "parent", + "id": "https://ror.org/00pnp4y96" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03jsyxh43.json b/rc-v1.43-v2/new/03jsyxh43.json new file mode 100644 index 000000000..4254b13d8 --- /dev/null +++ b/rc-v1.43-v2/new/03jsyxh43.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2034937, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 41.79222, + "lng": 123.43278, + "name": "Shenyang" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/03jsyxh43", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sysard.com" + } + ], + "names": [ + { + "value": "Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Shenyang Sinochem Agrochemicals R&D Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Shenyang Sinochem Agrochemicals R&D Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "沈阳中化农药化工研发有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03jzzxg14.json b/rc-v1.43-v2/new/03jzzxg14.json new file mode 100644 index 000000000..55361c606 --- /dev/null +++ b/rc-v1.43-v2/new/03jzzxg14.json @@ -0,0 +1,119 @@ +{ + "locations": [ + { + "geonames_id": 2654675, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q17028004" + ], + "preferred": "Q17028004" + }, + { + "type": "fundref", + "all": [ + "100012141" + ], + "preferred": "100012141" + } + ], + "id": "https://ror.org/03jzzxg14", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uhbw.nhs.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_Hospitals_Bristol_and_Weston_NHS_Foundation_Trust" + } + ], + "names": [ + { + "value": "University Hospitals Bristol and Weston NHS Foundation Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Bristol and Weston Foundation Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Bristol and Weston NHS Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University Hospitals Bristol and Weston Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UHBW NHS Foundation Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UHBW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University Hospitals Bristol NHS Foundation Trust", + "type": "predecessor", + "id": "https://ror.org/04nm1cv11" + }, + { + "label": "Weston Area Health NHS Trust", + "type": "predecessor", + "id": "https://ror.org/03fpf5m04" + }, + { + "label": "Weston General Hospital", + "type": "child", + "id": "https://ror.org/03mc19e15" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03n9ja422.json b/rc-v1.43-v2/new/03n9ja422.json new file mode 100644 index 000000000..82ecaad26 --- /dev/null +++ b/rc-v1.43-v2/new/03n9ja422.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2928810, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.45657, + "lng": 7.01228, + "name": "Essen" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1956 7507" + ], + "preferred": "0000 0001 1956 7507" + }, + { + "type": "wikidata", + "all": [ + "Q2175050" + ], + "preferred": "Q2175050" + } + ], + "id": "https://ror.org/03n9ja422", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ruhrmuseum.de" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ruhr_Museum" + } + ], + "names": [ + { + "value": "Ruhr Museum", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ruhrlandmuseum", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03n9mt987.json b/rc-v1.43-v2/new/03n9mt987.json new file mode 100644 index 000000000..9d7628dde --- /dev/null +++ b/rc-v1.43-v2/new/03n9mt987.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 4644" + ], + "preferred": "0000 0004 4910 4644" + } + ], + "id": "https://ror.org/03n9mt987", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciusssnordmtl.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré universitaire de santé et de services sociaux du Nord-de-l’Île-de-Montréal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUSSS du Nord-de-l'Île-de-Montréal", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03p81rq42.json b/rc-v1.43-v2/new/03p81rq42.json new file mode 100644 index 000000000..b9f02f03b --- /dev/null +++ b/rc-v1.43-v2/new/03p81rq42.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 643492, + "geonames_details": { + "country_code": "FI", + "country_name": "Finland", + "lat": 65.01236, + "lng": 25.46816, + "name": "Oulu" + } + } + ], + "established": 2018, + "external_ids": [], + "id": "https://ror.org/03p81rq42", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.filnan.com" + } + ], + "names": [ + { + "value": "The Filipino Nurses Association in the Nordic Region", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Filipino Nurses Association in the Nordic Region", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Pohjoismainen Filippiiniläishoitajien Yhdistys Ry", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FINAN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03pdbtd82.json b/rc-v1.43-v2/new/03pdbtd82.json new file mode 100644 index 000000000..fdf50b7df --- /dev/null +++ b/rc-v1.43-v2/new/03pdbtd82.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2650628, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 54.77676, + "lng": -1.57566, + "name": "Durham" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q4231269" + ], + "preferred": "Q4231269" + }, + { + "type": "fundref", + "all": [ + "501100015066" + ], + "preferred": "501100015066" + } + ], + "id": "https://ror.org/03pdbtd82", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://virgo.dur.ac.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Virgo_Consortium" + } + ], + "names": [ + { + "value": "The Virgo Consortium", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Virgo Consortium", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03pzxq793.json b/rc-v1.43-v2/new/03pzxq793.json new file mode 100644 index 000000000..d9b22f120 --- /dev/null +++ b/rc-v1.43-v2/new/03pzxq793.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 2654675, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9128 4888" + ], + "preferred": "0000 0004 9128 4888" + }, + { + "type": "fundref", + "all": [ + "501100022244" + ], + "preferred": "501100022244" + } + ], + "id": "https://ror.org/03pzxq793", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://arc-w.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Applied Research Collaboration West", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Applied Research Collaboration West", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR ARC West", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03q5e6q66.json b/rc-v1.43-v2/new/03q5e6q66.json new file mode 100644 index 000000000..fecb7412e --- /dev/null +++ b/rc-v1.43-v2/new/03q5e6q66.json @@ -0,0 +1,62 @@ +{ + "locations": [ + { + "geonames_id": 3171728, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.40797, + "lng": 11.88586, + "name": "Padua" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/03q5e6q66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fondbiomed.it" + } + ], + "names": [ + { + "value": "Fondazione Ricerca Biomedica Avanzata Onlus - VIMM", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fondazione Ricerca Biomedica Avanzata Onlus", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Veneto Institute of Molecular Medicine Home", + "type": "related", + "id": "https://ror.org/0048jxt15" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03qk53891.json b/rc-v1.43-v2/new/03qk53891.json new file mode 100644 index 000000000..fae9e3ebd --- /dev/null +++ b/rc-v1.43-v2/new/03qk53891.json @@ -0,0 +1,117 @@ +{ + "locations": [ + { + "geonames_id": 1805518, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 35.405, + "lng": 116.58139, + "name": "Jining" + } + } + ], + "established": 1976, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7245 6824" + ], + "preferred": "0000 0004 7245 6824" + }, + { + "type": "wikidata", + "all": [ + "Q884019" + ], + "preferred": "Q884019" + } + ], + "id": "https://ror.org/03qk53891", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.yanzhoucoal.com.cn" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Yankuang_Group" + } + ], + "names": [ + { + "value": "Yankuang Energy Group Company Limited (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Yankuang Energy Group Company Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yankuang Energy Group Company", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yankuang Energy Group Company, Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yankuang Energy Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yankuang Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "兗礦集團有限公司", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "兖矿能源集团股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03sdv7269.json b/rc-v1.43-v2/new/03sdv7269.json new file mode 100644 index 000000000..2c6cef076 --- /dev/null +++ b/rc-v1.43-v2/new/03sdv7269.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2640729, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.75222, + "lng": -1.25596, + "name": "Oxford" + } + } + ], + "established": 2018, + "external_ids": [], + "id": "https://ror.org/03sdv7269", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://pqshield.com" + } + ], + "names": [ + { + "value": "PQShield (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PQShield", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PQShield, SAS", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PQShield, Inc.", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03thdsj80.json b/rc-v1.43-v2/new/03thdsj80.json new file mode 100644 index 000000000..2b3d04888 --- /dev/null +++ b/rc-v1.43-v2/new/03thdsj80.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2641689, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.40148, + "lng": -1.32471, + "name": "Newbury" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q99440281" + ], + "preferred": "Q99440281" + }, + { + "type": "fundref", + "all": [ + "100008058" + ], + "preferred": "100008058" + } + ], + "id": "https://ror.org/03thdsj80", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vodafone.com/vodafone-foundation" + } + ], + "names": [ + { + "value": "Vodafone Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Vodafone (United Kingdom)", + "type": "parent", + "id": "https://ror.org/01v7jrq42" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03tmzq288.json b/rc-v1.43-v2/new/03tmzq288.json new file mode 100644 index 000000000..349f837ca --- /dev/null +++ b/rc-v1.43-v2/new/03tmzq288.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2644210, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.41058, + "lng": -2.97794, + "name": "Liverpool" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100015509" + ], + "preferred": "501100015509" + } + ], + "id": "https://ror.org/03tmzq288", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://arc-nwc.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Collaboration for Leadership in Applied Health Research and Care North West Coast", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care North West Coast", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC NWC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03tsg3y65.json b/rc-v1.43-v2/new/03tsg3y65.json new file mode 100644 index 000000000..55e266781 --- /dev/null +++ b/rc-v1.43-v2/new/03tsg3y65.json @@ -0,0 +1,107 @@ +{ + "locations": [ + { + "geonames_id": 2644688, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.79648, + "lng": -1.54785, + "name": "Leeds" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9439 5292" + ], + "preferred": "0000 0004 9439 5292" + }, + { + "type": "wikidata", + "all": [ + "Q5062378" + ], + "preferred": "Q5062378" + }, + { + "type": "fundref", + "all": [ + "100012730" + ], + "preferred": "100012730" + } + ], + "id": "https://ror.org/03tsg3y65", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cccep.ac.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Centre_for_Climate_Change_Economics_and_Policy" + } + ], + "names": [ + { + "value": "Centre for Climate Change Economics and Policy", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ESRC Centre for Climate Change Economics and Policy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Economic and Social Research Council Centre for Climate Change Economics and Policy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CCCEP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Leeds", + "type": "parent", + "id": "https://ror.org/024mrxd33" + }, + { + "label": "London School of Economics and Political Science", + "type": "parent", + "id": "https://ror.org/0090zs177" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03vgcjv39.json b/rc-v1.43-v2/new/03vgcjv39.json new file mode 100644 index 000000000..f97845015 --- /dev/null +++ b/rc-v1.43-v2/new/03vgcjv39.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/03vgcjv39", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://conhecimentoinovacao.iscte-iul.pt" + } + ], + "names": [ + { + "value": "Iscte-Conhecimento e Inovação é um Centro de Valorização e Transferência de Tecnologias", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Iscte Conhecimento E Inovacao - Centro De Valorizacao E Transferencia De Tecnologias", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03x3g5467.json b/rc-v1.43-v2/new/03x3g5467.json new file mode 100644 index 000000000..b2515271c --- /dev/null +++ b/rc-v1.43-v2/new/03x3g5467.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 4407066, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.62727, + "lng": -90.19789, + "name": "St Louis" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100013395" + ], + "preferred": "100013395" + } + ], + "id": "https://ror.org/03x3g5467", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://taylorfamilyinstitute.wustl.edu" + } + ], + "names": [ + { + "value": "Taylor Family Institute for Innovative Psychiatric Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Taylor Family Institute for Innovative Psychiatric Research at Washington University School of Medicine in St. Louis", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Washington University in St. Louis", + "type": "parent", + "id": "https://ror.org/01yc7t268" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03y0ymy78.json b/rc-v1.43-v2/new/03y0ymy78.json new file mode 100644 index 000000000..7cad1fed7 --- /dev/null +++ b/rc-v1.43-v2/new/03y0ymy78.json @@ -0,0 +1,93 @@ +{ + "locations": [ + { + "geonames_id": 2653822, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.48, + "lng": -3.18, + "name": "Cardiff" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9503 2776" + ], + "preferred": "0000 0004 9503 2776" + }, + { + "type": "wikidata", + "all": [ + "Q65060598" + ], + "preferred": "Q65060598" + } + ], + "id": "https://ror.org/03y0ymy78", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.wcpp.org.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Wales_Centre_for_Public_Policy" + } + ], + "names": [ + { + "value": "Wales Centre for Public Policy", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Canolfan Polisi Cyhoeddus Cymru", + "types": [ + "label" + ], + "lang": "cy" + }, + { + "value": "WCPP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Public Policy Institute for Wales", + "type": "predecessor", + "id": "https://ror.org/05j5g1b69" + }, + { + "label": "Cardiff University", + "type": "related", + "id": "https://ror.org/03kk7td41" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03y8jvk69.json b/rc-v1.43-v2/new/03y8jvk69.json new file mode 100644 index 000000000..ad9adca60 --- /dev/null +++ b/rc-v1.43-v2/new/03y8jvk69.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 8299576, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.60079, + "lng": -74.64815, + "name": "Bridgewater" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6430 7044" + ], + "preferred": "0000 0004 6430 7044" + }, + { + "type": "wikidata", + "all": [ + "Q45132270" + ], + "preferred": "Q45132270" + }, + { + "type": "fundref", + "all": [ + "100010886" + ], + "preferred": "100010886" + } + ], + "id": "https://ror.org/03y8jvk69", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nestlehealthscience.com" + } + ], + "names": [ + { + "value": "Nestlé Health Science (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Nestlé Health Science", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Nestlé (Switzerland)", + "type": "parent", + "id": "https://ror.org/01v5xwf23" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/03zyxxj44.json b/rc-v1.43-v2/new/03zyxxj44.json new file mode 100644 index 000000000..4fd6387e8 --- /dev/null +++ b/rc-v1.43-v2/new/03zyxxj44.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5938 4379" + ], + "preferred": "0000 0004 5938 4379" + }, + { + "type": "wikidata", + "all": [ + "Q30260211" + ], + "preferred": "Q30260211" + } + ], + "id": "https://ror.org/03zyxxj44", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ciusss-estmtl.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré universitaire de santé et de services sociaux de l'Est-de-l'Île-de-Montréal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUSSS de l'Est-de-l'Île-de-Montréal", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/041kymq04.json b/rc-v1.43-v2/new/041kymq04.json new file mode 100644 index 000000000..4d5dc3e2d --- /dev/null +++ b/rc-v1.43-v2/new/041kymq04.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 1271715, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 23.21667, + "lng": 72.68333, + "name": "Gandhinagar" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0726 9739" + ], + "preferred": "0000 0005 0726 9739" + }, + { + "type": "fundref", + "all": [ + "100019126" + ], + "preferred": "100019126" + } + ], + "id": "https://ror.org/041kymq04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://dst.gujarat.gov.in/gcst.htm" + } + ], + "names": [ + { + "value": "Gujarat Council on Science and Technology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Gujarat Council of Science and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "GCST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/041qq2t66.json b/rc-v1.43-v2/new/041qq2t66.json new file mode 100644 index 000000000..856c0db4f --- /dev/null +++ b/rc-v1.43-v2/new/041qq2t66.json @@ -0,0 +1,79 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6085 4796" + ], + "preferred": "0000 0004 6085 4796" + }, + { + "type": "wikidata", + "all": [ + "Q45132743" + ], + "preferred": "Q45132743" + }, + { + "type": "fundref", + "all": [ + "501100008754" + ], + "preferred": "501100008754" + } + ], + "id": "https://ror.org/041qq2t66", + "domains": [], + "links": [], + "names": [ + { + "value": "Leverhulme Centre for Integrative Research on Agriculture and Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "LCIRAH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "London International Development Centre", + "type": "parent", + "id": "https://ror.org/053xt2a19" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/041repn61.json b/rc-v1.43-v2/new/041repn61.json new file mode 100644 index 000000000..45b5ab44a --- /dev/null +++ b/rc-v1.43-v2/new/041repn61.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 6066513, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.86682, + "lng": -79.2663, + "name": "Markham" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0634 9545" + ], + "preferred": "0000 0004 0634 9545" + }, + { + "type": "fundref", + "all": [ + "100012317" + ], + "preferred": "100012317" + } + ], + "id": "https://ror.org/041repn61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.astellas.com/ca/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Astellas_Pharma" + } + ], + "names": [ + { + "value": "Astellas Pharma (Canada)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Astellas Pharmaceuticals", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Astellas Pharma (Japan)", + "type": "parent", + "id": "https://ror.org/01cjash87" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/042en9b35.json b/rc-v1.43-v2/new/042en9b35.json new file mode 100644 index 000000000..e4cc810f1 --- /dev/null +++ b/rc-v1.43-v2/new/042en9b35.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2803138, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 51.22047, + "lng": 4.40026, + "name": "Antwerp" + } + } + ], + "established": 2013, + "external_ids": [], + "id": "https://ror.org/042en9b35", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://accelleran.com" + } + ], + "names": [ + { + "value": "Accelleran NV (Belgium)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Accelleran", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Accelleran NV", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ACC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/042fhmq33.json b/rc-v1.43-v2/new/042fhmq33.json new file mode 100644 index 000000000..ceec6a5f8 --- /dev/null +++ b/rc-v1.43-v2/new/042fhmq33.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 4347778, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012312" + ], + "preferred": "100012312" + } + ], + "id": "https://ror.org/042fhmq33", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://packardcenter.org" + } + ], + "names": [ + { + "value": "Packard Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Robert Packard Center for ALS Research, Johns Hopkins University", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Johns Hopkins University", + "type": "parent", + "id": "https://ror.org/00za53h95" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/042k5q325.json b/rc-v1.43-v2/new/042k5q325.json new file mode 100644 index 000000000..ae9d6eef9 --- /dev/null +++ b/rc-v1.43-v2/new/042k5q325.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2945024, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.26594, + "lng": 10.52673, + "name": "Braunschweig" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100014132" + ], + "preferred": "100014132" + } + ], + "id": "https://ror.org/042k5q325", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.euramet.org/research-innovation/research-empir" + } + ], + "names": [ + { + "value": "European Metrology Programme for Innovation and Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "EMPIR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "European Association of National Metrology Institutes", + "type": "parent", + "id": "https://ror.org/03csrq586" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/042t2dj58.json b/rc-v1.43-v2/new/042t2dj58.json new file mode 100644 index 000000000..8b17de273 --- /dev/null +++ b/rc-v1.43-v2/new/042t2dj58.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2034937, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 41.79222, + "lng": 123.43278, + "name": "Shenyang" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/042t2dj58", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sysard.com" + } + ], + "names": [ + { + "value": "Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Shenyang Sinochem Agrochemicals R&D Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Shenyang Sinochem Agrochemicals R&D Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "沈阳中化农药化工研发有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/042vxm455.json b/rc-v1.43-v2/new/042vxm455.json new file mode 100644 index 000000000..bc94d207f --- /dev/null +++ b/rc-v1.43-v2/new/042vxm455.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 5128581, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.71427, + "lng": -74.00597, + "name": "New York" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0453 5264" + ], + "preferred": "0000 0004 0453 5264" + } + ], + "id": "https://ror.org/042vxm455", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bloomsbury.com/us/" + } + ], + "names": [ + { + "value": "Bloomsbury (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Bloomsbury USA", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Bloomsbury Publishing (United Kingdom)", + "type": "parent", + "id": "https://ror.org/04yyy0y35" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/0436znn81.json b/rc-v1.43-v2/new/0436znn81.json new file mode 100644 index 000000000..876d32e94 --- /dev/null +++ b/rc-v1.43-v2/new/0436znn81.json @@ -0,0 +1,105 @@ +{ + "locations": [ + { + "geonames_id": 2648108, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.45, + "lng": -2.23333, + "name": "Greater Manchester" + } + } + ], + "established": 2023, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7871 7132" + ], + "preferred": "0000 0004 7871 7132" + }, + { + "type": "fundref", + "all": [ + "501100013235" + ], + "preferred": "501100013235" + } + ], + "id": "https://ror.org/0436znn81", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.psrc-gm.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Greater Manchester Patient Safety Translational Research Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Greater Manchester Patient Safety Translational Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Greater Manchester Patient Safety Translational Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Manchester Patient Safety Translational Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR GM PSTRC", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "GM PSTRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/043evzg22.json b/rc-v1.43-v2/new/043evzg22.json new file mode 100644 index 000000000..fe6b37b12 --- /dev/null +++ b/rc-v1.43-v2/new/043evzg22.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011284" + ], + "preferred": "501100011284" + } + ], + "id": "https://ror.org/043evzg22", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://eesklab.tsinghua.edu.cn" + } + ], + "names": [ + { + "value": "State Key Laboratory of Power System and Generation Equipment", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Power System and Generation Equipment", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Laboratory of Safety Control and Simulation of Power System and Large-scale Power Generation Equipment", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "电力系统及发电设备控制和仿真国家重点实验室", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "电力系统及大型发电设备安全控制和仿真国家重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "Tsinghua University", + "type": "parent", + "id": "https://ror.org/03cve4549" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/043xqa828.json b/rc-v1.43-v2/new/043xqa828.json new file mode 100644 index 000000000..accd834f7 --- /dev/null +++ b/rc-v1.43-v2/new/043xqa828.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q45137372" + ], + "preferred": "Q45137372" + }, + { + "type": "fundref", + "all": [ + "501100003263" + ], + "preferred": "501100003263" + } + ], + "id": "https://ror.org/043xqa828", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Scottish_Office" + } + ], + "names": [ + { + "value": "Scottish Home and Health Department", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Scottish Office Home and Health Department", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Parliament of United Kingdom", + "type": "parent", + "id": "https://ror.org/03t61s708" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/044kpcz50.json b/rc-v1.43-v2/new/044kpcz50.json new file mode 100644 index 000000000..eeefcf8a0 --- /dev/null +++ b/rc-v1.43-v2/new/044kpcz50.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2618425, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 55.67594, + "lng": 12.56553, + "name": "Copenhagen" + } + } + ], + "established": 1920, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7866 339X" + ], + "preferred": "0000 0004 7866 339X" + }, + { + "type": "wikidata", + "all": [ + "Q12309486" + ], + "preferred": "Q12309486" + }, + { + "type": "fundref", + "all": [ + "501100009902" + ], + "preferred": "501100009902" + } + ], + "id": "https://ror.org/044kpcz50", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.egmontfonden.dk" + }, + { + "type": "wikipedia", + "value": "https://da.wikipedia.org/wiki/Egmont_Fonden" + } + ], + "names": [ + { + "value": "Egmont Fonden", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Egmont H. Petersens Fond", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Egmont Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/046j7pv84.json b/rc-v1.43-v2/new/046j7pv84.json new file mode 100644 index 000000000..4a31fc86e --- /dev/null +++ b/rc-v1.43-v2/new/046j7pv84.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 2660646, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.20222, + "lng": 6.14569, + "name": "Geneva" + } + } + ], + "established": 1974, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2191 7262" + ], + "preferred": "0000 0001 2191 7262" + }, + { + "type": "wikidata", + "all": [ + "Q30261831" + ], + "preferred": "Q30261831" + }, + { + "type": "fundref", + "all": [ + "100016285" + ], + "preferred": "100016285" + } + ], + "id": "https://ror.org/046j7pv84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://tdr.who.int" + } + ], + "names": [ + { + "value": "Special Programme for Research and Training in Tropical Diseases", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "TDR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United Nations Children's Fund", + "type": "parent", + "id": "https://ror.org/02dg0pv02" + }, + { + "label": "United Nations Development Programme", + "type": "parent", + "id": "https://ror.org/051777d98" + }, + { + "label": "World Bank", + "type": "parent", + "id": "https://ror.org/00ae7jd04" + }, + { + "label": "World Health Organization", + "type": "parent", + "id": "https://ror.org/01f80g185" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/047dkqn05.json b/rc-v1.43-v2/new/047dkqn05.json new file mode 100644 index 000000000..8b0d57063 --- /dev/null +++ b/rc-v1.43-v2/new/047dkqn05.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 4347778, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/047dkqn05", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.equinoxsensors.com" + } + ], + "names": [ + { + "value": "Equinox Corporation (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Equinox Sensors", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Equinox Corporation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/049ctcj40.json b/rc-v1.43-v2/new/049ctcj40.json new file mode 100644 index 000000000..00b7cfd68 --- /dev/null +++ b/rc-v1.43-v2/new/049ctcj40.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 1642911, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -6.21462, + "lng": 106.84513, + "name": "Jakarta" + } + } + ], + "established": 1975, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109911827" + ], + "preferred": "Q109911827" + } + ], + "id": "https://ror.org/049ctcj40", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://stmi.ac.id" + }, + { + "type": "wikipedia", + "value": "https://id.wikipedia.org/wiki/Politeknik_STMI" + } + ], + "names": [ + { + "value": "Politeknik STMI Jakarta", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "STMI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/049h9f890.json b/rc-v1.43-v2/new/049h9f890.json new file mode 100644 index 000000000..9bbadacf8 --- /dev/null +++ b/rc-v1.43-v2/new/049h9f890.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5964215, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.40008, + "lng": -72.73243, + "name": "Granby" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9536 9505" + ], + "preferred": "0000 0000 9536 9505" + }, + { + "type": "wikidata", + "all": [ + "Q3009996" + ], + "preferred": "Q3009996" + } + ], + "id": "https://ror.org/049h9f890", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cegepgranby.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/C%C3%A9gep_de_Granby" + } + ], + "names": [ + { + "value": "Cégep de Granby", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04b57z061.json b/rc-v1.43-v2/new/04b57z061.json new file mode 100644 index 000000000..16d86f768 --- /dev/null +++ b/rc-v1.43-v2/new/04b57z061.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 5391811, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.71571, + "lng": -117.16472, + "name": "San Diego" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9465 4856" + ], + "preferred": "0000 0004 9465 4856" + }, + { + "type": "wikidata", + "all": [ + "Q45137754" + ], + "preferred": "Q45137754" + }, + { + "type": "fundref", + "all": [ + "100011231" + ], + "preferred": "100011231" + } + ], + "id": "https://ror.org/04b57z061", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://cwc.ucsd.edu" + } + ], + "names": [ + { + "value": "Center for Wireless Communications", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CWC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of California, San Diego", + "type": "parent", + "id": "https://ror.org/0168r3w48" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04cjmvv09.json b/rc-v1.43-v2/new/04cjmvv09.json new file mode 100644 index 000000000..4be389044 --- /dev/null +++ b/rc-v1.43-v2/new/04cjmvv09.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2654313, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.9724, + "lng": 0.77488, + "name": "Bures Saint Mary" + } + } + ], + "established": 1974, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7782 485X" + ], + "preferred": "0000 0004 7782 485X" + }, + { + "type": "fundref", + "all": [ + "100012354" + ], + "preferred": "100012354" + } + ], + "id": "https://ror.org/04cjmvv09", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.jfec.org.uk" + } + ], + "names": [ + { + "value": "Japan Foundation Endowment Committee", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "JFEC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04d2k2606.json b/rc-v1.43-v2/new/04d2k2606.json new file mode 100644 index 000000000..36277c708 --- /dev/null +++ b/rc-v1.43-v2/new/04d2k2606.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2656284, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.55, + "lng": -1.48333, + "name": "Barnsley" + } + } + ], + "established": 2004, + "external_ids": [], + "id": "https://ror.org/04d2k2606", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.luto.co.uk" + } + ], + "names": [ + { + "value": "Luto Research (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Luto Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Luto Research Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Luto Research Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Luto", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04d4pvt78.json b/rc-v1.43-v2/new/04d4pvt78.json new file mode 100644 index 000000000..971a6946d --- /dev/null +++ b/rc-v1.43-v2/new/04d4pvt78.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 4347778, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012306" + ], + "preferred": "100012306" + } + ], + "id": "https://ror.org/04d4pvt78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.hopkinscim.org" + } + ], + "names": [ + { + "value": "Center for Innovative Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Johns Hopkins Center for Innovative Medicine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CIM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Johns Hopkins Medicine", + "type": "parent", + "id": "https://ror.org/037zgn354" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04e7rcy65.json b/rc-v1.43-v2/new/04e7rcy65.json new file mode 100644 index 000000000..54bdf0358 --- /dev/null +++ b/rc-v1.43-v2/new/04e7rcy65.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3390760, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -8.05389, + "lng": -34.88111, + "name": "Recife" + } + } + ], + "established": 1980, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0417 9458" + ], + "preferred": "0000 0004 0417 9458" + }, + { + "type": "wikidata", + "all": [ + "Q56841516" + ], + "preferred": "Q56841516" + } + ], + "id": "https://ror.org/04e7rcy65", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.for.edu.br" + } + ], + "names": [ + { + "value": "Faculdade de Odontologia do Recife", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Faculty of Dentistry of Recife", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FOR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04ect1284.json b/rc-v1.43-v2/new/04ect1284.json new file mode 100644 index 000000000..4bd657466 --- /dev/null +++ b/rc-v1.43-v2/new/04ect1284.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8306 8464" + ], + "preferred": "0000 0004 8306 8464" + }, + { + "type": "fundref", + "all": [ + "501100014335" + ], + "preferred": "501100014335" + } + ], + "id": "https://ror.org/04ect1284", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ed.ac.uk/usher/aukcar" + } + ], + "names": [ + { + "value": "Asthma UK Centre for Applied Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AUKCAR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Edinburgh", + "type": "parent", + "id": "https://ror.org/01nrxwf90" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04f18cg29.json b/rc-v1.43-v2/new/04f18cg29.json new file mode 100644 index 000000000..1d558d4c5 --- /dev/null +++ b/rc-v1.43-v2/new/04f18cg29.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 7498240, + "geonames_details": { + "country_code": "IL", + "country_name": "Israel", + "lat": 31.78199, + "lng": 35.21961, + "name": "West Jerusalem" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0631 158X" + ], + "preferred": "0000 0004 0631 158X" + }, + { + "type": "wikidata", + "all": [ + "Q12406716" + ], + "preferred": "Q12406716" + } + ], + "id": "https://ror.org/04f18cg29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://idi.org.il" + } + ], + "names": [ + { + "value": "Israel Democracy Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "המכון הישראלי לדמוקרטיה", + "types": [ + "label" + ], + "lang": "he" + }, + { + "value": "IDI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04fab7w85.json b/rc-v1.43-v2/new/04fab7w85.json new file mode 100644 index 000000000..1fcff00d8 --- /dev/null +++ b/rc-v1.43-v2/new/04fab7w85.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 2740637, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 40.20564, + "lng": -8.41955, + "name": "Coimbra" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100014071" + ], + "preferred": "501100014071" + } + ], + "id": "https://ror.org/04fab7w85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ces.uc.pt" + } + ], + "names": [ + { + "value": "Centro de Estudos Sociais", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidade de Coimbra Centro de Estudos Sociais", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Centro de Estudos Sociais de Universidade de Coimbra", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Coimbra Centre for Social Studies", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Coimbra", + "type": "parent", + "id": "https://ror.org/04z8k9a98" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04fg9pk96.json b/rc-v1.43-v2/new/04fg9pk96.json new file mode 100644 index 000000000..244f863d7 --- /dev/null +++ b/rc-v1.43-v2/new/04fg9pk96.json @@ -0,0 +1,131 @@ +{ + "locations": [ + { + "geonames_id": 6167865, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.70643, + "lng": -79.39864, + "name": "Toronto" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0721 7876" + ], + "preferred": "0000 0001 0721 7876" + }, + { + "type": "wikidata", + "all": [ + "Q3315245" + ], + "preferred": "Q3315245" + }, + { + "type": "fundref", + "all": [ + "100016329" + ], + "preferred": "100016329" + } + ], + "id": "https://ror.org/04fg9pk96", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ontario.ca/page/ministry-education" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Education_%28Ontario%29" + } + ], + "names": [ + { + "value": "Ministry of Education", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Education of Ontario", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Education, Government of Ontario", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministère de l’Éducation, Gouvernement de l’Ontario", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ontario Ministry of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministère de l'Éducation de l'Ontario", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministère de l'Éducation", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "EDU", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "MEO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04fzs4293.json b/rc-v1.43-v2/new/04fzs4293.json new file mode 100644 index 000000000..d98a15c57 --- /dev/null +++ b/rc-v1.43-v2/new/04fzs4293.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2648579, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.86515, + "lng": -4.25763, + "name": "Glasgow" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0629 7087" + ], + "preferred": "0000 0004 0629 7087" + }, + { + "type": "fundref", + "all": [ + "100011776" + ], + "preferred": "100011776" + } + ], + "id": "https://ror.org/04fzs4293", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mndscotland.org.uk" + } + ], + "names": [ + { + "value": "MND Scotland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Motor Neuron Disease Scotland", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04g1a0w27.json b/rc-v1.43-v2/new/04g1a0w27.json new file mode 100644 index 000000000..35105e1c5 --- /dev/null +++ b/rc-v1.43-v2/new/04g1a0w27.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 4553433, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 36.15398, + "lng": -95.99277, + "name": "Tulsa" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0386 8892" + ], + "preferred": "0000 0004 0386 8892" + }, + { + "type": "wikidata", + "all": [ + "Q39056078" + ], + "preferred": "Q39056078" + } + ], + "id": "https://ror.org/04g1a0w27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ou.edu/tulsa" + } + ], + "names": [ + { + "value": "University of Oklahoma - Tulsa", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Oklahoma - Tulsa Schusterman Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OU - Tulsa Schusterman Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Oklahoma at Tulsa", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Oklahoma", + "type": "parent", + "id": "https://ror.org/02aqsxs83" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04gww2j56.json b/rc-v1.43-v2/new/04gww2j56.json new file mode 100644 index 000000000..a5c06f974 --- /dev/null +++ b/rc-v1.43-v2/new/04gww2j56.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 2618425, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 55.67594, + "lng": 12.56553, + "name": "Copenhagen" + } + } + ], + "established": 1982, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7478 7897" + ], + "preferred": "0000 0004 7478 7897" + }, + { + "type": "wikidata", + "all": [ + "Q27430020" + ], + "preferred": "Q27430020" + }, + { + "type": "fundref", + "all": [ + "501100010344" + ], + "preferred": "501100010344" + } + ], + "id": "https://ror.org/04gww2j56", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://louis-hansenfonden.dk" + } + ], + "names": [ + { + "value": "Aage og Johanne Louis-Hansens Fond", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Aage og Johanne Louis-Hansens Familiefond", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Aage og Johanne Louis-Hansen ApS", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Aage and Johanne Louis-Hansen's Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04gz5mr64.json b/rc-v1.43-v2/new/04gz5mr64.json new file mode 100644 index 000000000..48200215f --- /dev/null +++ b/rc-v1.43-v2/new/04gz5mr64.json @@ -0,0 +1,72 @@ +{ + "locations": [ + { + "geonames_id": 993800, + "geonames_details": { + "country_code": "ZA", + "country_name": "South Africa", + "lat": -26.20227, + "lng": 28.04363, + "name": "Johannesburg" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100016961" + ], + "preferred": "100016961" + } + ], + "id": "https://ror.org/04gz5mr64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nihss.ac.za" + } + ], + "names": [ + { + "value": "National Institute for the Humanities and Social Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for the Humanities and Social Sciences, South Africa", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHSS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04h7zpy51.json b/rc-v1.43-v2/new/04h7zpy51.json new file mode 100644 index 000000000..7911df998 --- /dev/null +++ b/rc-v1.43-v2/new/04h7zpy51.json @@ -0,0 +1,67 @@ +{ + "locations": [ + { + "geonames_id": 2736680, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 41.17289, + "lng": -8.59931, + "name": "Paranhos" + } + } + ], + "established": 1852, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q3152860" + ], + "preferred": "Q3152860" + } + ], + "id": "https://ror.org/04h7zpy51", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.isep.pt" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Instituto_Superior_de_Engenharia_do_Porto" + } + ], + "names": [ + { + "value": "Instituto Superior de Engenharia do Porto", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Polytechnic Institute of Porto", + "type": "parent", + "id": "https://ror.org/04988re48" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04hh1k009.json b/rc-v1.43-v2/new/04hh1k009.json new file mode 100644 index 000000000..c46c81700 --- /dev/null +++ b/rc-v1.43-v2/new/04hh1k009.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0281 4136" + ], + "preferred": "0000 0005 0281 4136" + }, + { + "type": "fundref", + "all": [ + "100017147" + ], + "preferred": "100017147" + } + ], + "id": "https://ror.org/04hh1k009", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.progressivemsalliance.org" + } + ], + "names": [ + { + "value": "International Progressive MS Alliance", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "International Progressive Multiple Sclerosis Alliance", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Multiple Sclerosis International Federation", + "type": "parent", + "id": "https://ror.org/052gp0981" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04hp1ky92.json b/rc-v1.43-v2/new/04hp1ky92.json new file mode 100644 index 000000000..d0ec8a3ae --- /dev/null +++ b/rc-v1.43-v2/new/04hp1ky92.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 3165524, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.07049, + "lng": 7.68682, + "name": "Turin" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/04hp1ky92", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ecs-nodes.eu" + } + ], + "names": [ + { + "value": "NODES S.c.a.r.l", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NODES - Nord Ovest Digitale E Sostenibile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Nord Ovest Digitale E Sostenibile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "HUB NODES S.c.a.r.l", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NODES", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Polytechnic University of Turin", + "type": "related", + "id": "https://ror.org/00bgk9508" + }, + { + "label": "University of Turin", + "type": "related", + "id": "https://ror.org/048tbm396" + }, + { + "label": "University of Eastern Piedmont Amadeo Avogadro", + "type": "related", + "id": "https://ror.org/04387x656" + }, + { + "label": "University of Insubria", + "type": "related", + "id": "https://ror.org/00s409261" + }, + { + "label": "University of Aosta Valley", + "type": "related", + "id": "https://ror.org/03126ng80" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04htg4q18.json b/rc-v1.43-v2/new/04htg4q18.json new file mode 100644 index 000000000..a76f68b4f --- /dev/null +++ b/rc-v1.43-v2/new/04htg4q18.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 98463, + "geonames_details": { + "country_code": "IQ", + "country_name": "Iraq", + "lat": 35.56496, + "lng": 45.4329, + "name": "Sulaymaniyah" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0277 0727" + ], + "preferred": "0000 0005 0277 0727" + } + ], + "id": "https://ror.org/04htg4q18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://chu.edu.iq" + } + ], + "names": [ + { + "value": "Charmo University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "زانکۆی چەرموو", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ChU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04hwsx993.json b/rc-v1.43-v2/new/04hwsx993.json new file mode 100644 index 000000000..cfc41b0d0 --- /dev/null +++ b/rc-v1.43-v2/new/04hwsx993.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2637487, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.90395, + "lng": -1.40428, + "name": "Southampton" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6428 5500" + ], + "preferred": "0000 0004 6428 5500" + }, + { + "type": "wikidata", + "all": [ + "Q45136919" + ], + "preferred": "Q45136919" + }, + { + "type": "fundref", + "all": [ + "100012166" + ], + "preferred": "100012166" + } + ], + "id": "https://ror.org/04hwsx993", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.kerkut-trust.org.uk" + } + ], + "names": [ + { + "value": "Gerald Kerkut Charitable Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04kn56m50.json b/rc-v1.43-v2/new/04kn56m50.json new file mode 100644 index 000000000..dbb0b1fa0 --- /dev/null +++ b/rc-v1.43-v2/new/04kn56m50.json @@ -0,0 +1,112 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4670 2593" + ], + "preferred": "0000 0004 4670 2593" + }, + { + "type": "wikidata", + "all": [ + "Q105169356" + ], + "preferred": "Q105169356" + }, + { + "type": "fundref", + "all": [ + "501100002418" + ], + "preferred": "501100002418" + } + ], + "id": "https://ror.org/04kn56m50", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://zh.wikipedia.org/wiki/%E4%B8%AD%E5%9B%BD%E5%8C%BB%E5%AD%A6%E7%A7%91%E5%AD%A6%E9%99%A2%E8%8D%AF%E7%89%A9%E7%A0%94%E7%A9%B6%E6%89%80" + } + ], + "names": [ + { + "value": "Institute of Chinese Materia Medica", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "China Academy of Chinese Medical Sciences Institute of Materia Medica", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中国医学科学院药物研究所", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "IMM", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CAMS&PUMC IMM", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CAMS IMM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Chinese Academy of Medical Sciences & Peking Union Medical College", + "type": "parent", + "id": "https://ror.org/02drdmm93" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04kpdmm83.json b/rc-v1.43-v2/new/04kpdmm83.json new file mode 100644 index 000000000..33b4d2ad4 --- /dev/null +++ b/rc-v1.43-v2/new/04kpdmm83.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 143073, + "geonames_details": { + "country_code": "IR", + "country_name": "Iran", + "lat": 32.31001, + "lng": 54.01747, + "name": "Ardakān" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7425 0037" + ], + "preferred": "0000 0004 7425 0037" + }, + { + "type": "fundref", + "all": [ + "100019272" + ], + "preferred": "100019272" + } + ], + "id": "https://ror.org/04kpdmm83", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ardakan.ac.ir" + } + ], + "names": [ + { + "value": "Ardakan University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "دانشگاه اردکان", + "types": [ + "label" + ], + "lang": "fa" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04m2z2476.json b/rc-v1.43-v2/new/04m2z2476.json new file mode 100644 index 000000000..2a0da5cdc --- /dev/null +++ b/rc-v1.43-v2/new/04m2z2476.json @@ -0,0 +1,69 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/04m2z2476", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.aku.edu" + } + ], + "names": [ + { + "value": "The Aga Khan University (International) in the United Kingdom", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "The Aga Khan University in the United Kingdom", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Aga Khan University in the United Kingdom", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Aga Khan University", + "type": "parent", + "id": "https://ror.org/03gd0dm95" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04n3e7v86.json b/rc-v1.43-v2/new/04n3e7v86.json new file mode 100644 index 000000000..7613679df --- /dev/null +++ b/rc-v1.43-v2/new/04n3e7v86.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 1886760, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.30408, + "lng": 120.59538, + "name": "Suzhou" + } + } + ], + "established": 2020, + "external_ids": [], + "id": "https://ror.org/04n3e7v86", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.sdhmdp.com" + } + ], + "names": [ + { + "value": "The Fourth Affiliated Hospital of Soochow University (Suzhou Dushu Lake Hospital)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "The Fourth Affiliated Hospital of Soochow University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Suzhou Dushu Lake Hospital", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "苏州大学附属第四医院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "苏州市独墅湖医院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "苏州大学附属第四医院 (苏州市独墅湖医院)", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "SDH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04ns7ha44.json b/rc-v1.43-v2/new/04ns7ha44.json new file mode 100644 index 000000000..6a3fc6824 --- /dev/null +++ b/rc-v1.43-v2/new/04ns7ha44.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 4843564, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.05343, + "lng": -73.53873, + "name": "Stamford" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q96272921" + ], + "preferred": "Q96272921" + }, + { + "type": "fundref", + "all": [ + "100016230" + ], + "preferred": "100016230" + } + ], + "id": "https://ror.org/04ns7ha44", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.steveandalex.org" + } + ], + "names": [ + { + "value": "Steven & Alexandra Cohen Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Steven and Alexandra Cohen Foundation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04qdwq068.json b/rc-v1.43-v2/new/04qdwq068.json new file mode 100644 index 000000000..81fe04316 --- /dev/null +++ b/rc-v1.43-v2/new/04qdwq068.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2648579, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.86515, + "lng": -4.25763, + "name": "Glasgow" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012927" + ], + "preferred": "100012927" + } + ], + "id": "https://ror.org/04qdwq068", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.quantic.ac.uk" + } + ], + "names": [ + { + "value": "QuantIC", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "QuantIC – UK Quantum Technology Hub in Quantum Enhanced Imaging", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "QuantIC – UK QT Hub in Quantum Enhanced Imaging", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "QuantIC Advanced Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "QuantIC ARC", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Glasgow", + "type": "parent", + "id": "https://ror.org/00vtgdb53" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04qekdn52.json b/rc-v1.43-v2/new/04qekdn52.json new file mode 100644 index 000000000..e894f4c48 --- /dev/null +++ b/rc-v1.43-v2/new/04qekdn52.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6059891, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.5152, + "lng": -73.46818, + "name": "Longueuil" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8064 4091" + ], + "preferred": "0000 0004 8064 4091" + } + ], + "id": "https://ror.org/04qekdn52", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.santemonteregie.qc.ca/centre" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de la Montérégie-Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de la Montérégie-Centre", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04qtk4r03.json b/rc-v1.43-v2/new/04qtk4r03.json new file mode 100644 index 000000000..9133d18b5 --- /dev/null +++ b/rc-v1.43-v2/new/04qtk4r03.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 786714, + "geonames_details": { + "country_code": "XK", + "country_name": "Kosovo", + "lat": 42.67272, + "lng": 21.16688, + "name": "Pristina" + } + } + ], + "established": 1967, + "external_ids": [], + "id": "https://ror.org/04qtk4r03", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ih-rks.org" + } + ], + "names": [ + { + "value": "Instituti i Historisë \"Ali Hadri\" Prishtinë", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of History “Ali Hadri” Prishtina", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04r5ma125.json b/rc-v1.43-v2/new/04r5ma125.json new file mode 100644 index 000000000..95257d555 --- /dev/null +++ b/rc-v1.43-v2/new/04r5ma125.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1815286, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 30.66667, + "lng": 104.06667, + "name": "Chengdu" + } + } + ], + "established": 1958, + "external_ids": [], + "id": "https://ror.org/04r5ma125", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.hhxny.chemchina.com" + } + ], + "names": [ + { + "value": "Southwest Research & Design Institute of the Chemical Industry", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Southwest Research and Design Institute of the Chemical Industry", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "西南化工研究设计院有限公司", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "SWRDICI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04rf54t04.json b/rc-v1.43-v2/new/04rf54t04.json new file mode 100644 index 000000000..a213d8079 --- /dev/null +++ b/rc-v1.43-v2/new/04rf54t04.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2618425, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 55.67594, + "lng": 12.56553, + "name": "Copenhagen" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6091 1914" + ], + "preferred": "0000 0004 6091 1914" + }, + { + "type": "wikidata", + "all": [ + "Q45135950" + ], + "preferred": "Q45135950" + }, + { + "type": "fundref", + "all": [ + "501100008267" + ], + "preferred": "501100008267" + } + ], + "id": "https://ror.org/04rf54t04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.kongehuset.dk/om-kongehuset/fonde-og-legater/kong-christian-den-tiendes-fond/" + } + ], + "names": [ + { + "value": "Kong Christian den Tiendes Fond", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "King Christian the Tenth Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04rhqkc66.json b/rc-v1.43-v2/new/04rhqkc66.json new file mode 100644 index 000000000..b9c0a0162 --- /dev/null +++ b/rc-v1.43-v2/new/04rhqkc66.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2852458, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.39886, + "lng": 13.06566, + "name": "Potsdam" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/04rhqkc66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mluk.brandenburg.de/mluk/" + } + ], + "names": [ + { + "value": "Ministerium für Landwirtschaft, Umwelt und Klimaschutz des Landes Brandenburg", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Landesministerium für Landwirtschaft, Umwelt und Klimaschutz Brandenburg", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MLUK", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04rswvr48.json b/rc-v1.43-v2/new/04rswvr48.json new file mode 100644 index 000000000..855d39c15 --- /dev/null +++ b/rc-v1.43-v2/new/04rswvr48.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 5391811, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.71571, + "lng": -117.16472, + "name": "San Diego" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9230 1205" + ], + "preferred": "0000 0004 9230 1205" + }, + { + "type": "fundref", + "all": [ + "100016136" + ], + "preferred": "100016136" + } + ], + "id": "https://ror.org/04rswvr48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fundacionaraucariafoundation.com" + } + ], + "names": [ + { + "value": "Fundacion Araucaria Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04shwth06.json b/rc-v1.43-v2/new/04shwth06.json new file mode 100644 index 000000000..accb27b53 --- /dev/null +++ b/rc-v1.43-v2/new/04shwth06.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2490584, + "geonames_details": { + "country_code": "DZ", + "country_name": "Algeria", + "lat": 34.84969, + "lng": -1.72753, + "name": "Maghnia" + } + } + ], + "established": 2006, + "external_ids": [], + "id": "https://ror.org/04shwth06", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cu-maghnia.edu.dz" + } + ], + "names": [ + { + "value": "University Centre of Maghnia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Maghnia University Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CU Maghnia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UC Maghnia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "المركز الجامعي مغنية", + "types": [ + "label" + ], + "lang": "ar" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04tfhh831.json b/rc-v1.43-v2/new/04tfhh831.json new file mode 100644 index 000000000..3ad3c3665 --- /dev/null +++ b/rc-v1.43-v2/new/04tfhh831.json @@ -0,0 +1,62 @@ +{ + "locations": [ + { + "geonames_id": 4938836, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.11316, + "lng": -70.81199, + "name": "Hanover" + } + } + ], + "established": 2015, + "external_ids": [], + "id": "https://ror.org/04tfhh831", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://centerforopenneuroscience.org" + } + ], + "names": [ + { + "value": "Center for Open Neuroscience", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CON", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Dartmouth College", + "type": "related", + "id": "https://ror.org/049s0rh22" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04vdnev70.json b/rc-v1.43-v2/new/04vdnev70.json new file mode 100644 index 000000000..fc8eee40f --- /dev/null +++ b/rc-v1.43-v2/new/04vdnev70.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100016989" + ], + "preferred": "501100016989" + } + ], + "id": "https://ror.org/04vdnev70", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.archer.ac.uk" + } + ], + "names": [ + { + "value": "ARCHER Service", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04vh24428.json b/rc-v1.43-v2/new/04vh24428.json new file mode 100644 index 000000000..750da2c0b --- /dev/null +++ b/rc-v1.43-v2/new/04vh24428.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/04vh24428", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.novaidfct.pt" + } + ], + "names": [ + { + "value": "NOVA.id.FCT - Associação para a Inovação e Desenvolvimento da FCT", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NOVA.id.FCT", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04vzm8988.json b/rc-v1.43-v2/new/04vzm8988.json new file mode 100644 index 000000000..ba252cd4e --- /dev/null +++ b/rc-v1.43-v2/new/04vzm8988.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 5121509, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.25286, + "lng": -73.79096, + "name": "Hudson" + } + } + ], + "established": 1945, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7863 3094" + ], + "preferred": "0000 0004 7863 3094" + }, + { + "type": "fundref", + "all": [ + "100014337" + ], + "preferred": "100014337" + } + ], + "id": "https://ror.org/04vzm8988", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://furthermore.org" + } + ], + "names": [ + { + "value": "FURTHERMORE grants in publishing", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "J.M. Kaplan Fund", + "type": "parent", + "id": "https://ror.org/03cn98e27" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04w0a0617.json b/rc-v1.43-v2/new/04w0a0617.json new file mode 100644 index 000000000..6ad836f61 --- /dev/null +++ b/rc-v1.43-v2/new/04w0a0617.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 3985606, + "geonames_details": { + "country_code": "MX", + "country_name": "Mexico", + "lat": 22.14982, + "lng": -100.97916, + "name": "San Luis Potosí City" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 8555" + ], + "preferred": "0000 0004 0369 8555" + }, + { + "type": "wikidata", + "all": [ + "Q5917885" + ], + "preferred": "Q5917885" + } + ], + "id": "https://ror.org/04w0a0617", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://slp.tecnm.mx" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Instituto_Tecnol%C3%B3gico_de_San_Luis_Potos%C3%AD" + } + ], + "names": [ + { + "value": "Instituto Tecnológico de San Luis Potosí", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "TecNM campus San Luis Potosí", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ITSLP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Technological Institute of Mexico", + "type": "parent", + "id": "https://ror.org/00davry38" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04wcn4e27.json b/rc-v1.43-v2/new/04wcn4e27.json new file mode 100644 index 000000000..f014ca41a --- /dev/null +++ b/rc-v1.43-v2/new/04wcn4e27.json @@ -0,0 +1,122 @@ +{ + "locations": [ + { + "geonames_id": 2750053, + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + } + } + ], + "established": 2017, + "external_ids": [], + "id": "https://ror.org/04wcn4e27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://leaps-initiative.eu" + } + ], + "names": [ + { + "value": "LEAPS", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "League of European Accelerator-based Photon Sources", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "ALBA Synchrotron (Spain)", + "type": "related", + "id": "https://ror.org/02j9n6e35" + }, + { + "label": "Deutsches Elektronen-Synchrotron DESY", + "type": "related", + "id": "https://ror.org/01js2sh04" + }, + { + "label": "Diamond Light Source", + "type": "related", + "id": "https://ror.org/05etxs293" + }, + { + "label": "Elettra-Sincrotrone Trieste S.C.p.A.", + "type": "related", + "id": "https://ror.org/01c3rrh15" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "related", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "FELIX Laboratory", + "type": "related", + "id": "https://ror.org/03tkwyq76" + }, + { + "label": "Helmholtz-Zentrum Berlin für Materialien und Energie", + "type": "related", + "id": "https://ror.org/02aj13c28" + }, + { + "label": "Helmholtz-Zentrum Dresden-Rossendorf", + "type": "related", + "id": "https://ror.org/01zy2cs03" + }, + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "related", + "id": "https://ror.org/005ta0471" + }, + { + "label": "MAX IV Laboratory", + "type": "related", + "id": "https://ror.org/03q28x580" + }, + { + "label": "Paul Scherrer Institute", + "type": "related", + "id": "https://ror.org/03eh3y714" + }, + { + "label": "Physikalisch-Technische Bundesanstalt", + "type": "related", + "id": "https://ror.org/05r3f7h03" + }, + { + "label": "Soleil Synchrotron", + "type": "related", + "id": "https://ror.org/01ydb3330" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04x2nq985.json b/rc-v1.43-v2/new/04x2nq985.json new file mode 100644 index 000000000..72e9fe326 --- /dev/null +++ b/rc-v1.43-v2/new/04x2nq985.json @@ -0,0 +1,90 @@ +{ + "locations": [ + { + "geonames_id": 1811103, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 23.02677, + "lng": 113.13148, + "name": "Foshan" + } + } + ], + "established": 1958, + "external_ids": [], + "id": "https://ror.org/04x2nq985", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.sddermyy.com" + } + ], + "names": [ + { + "value": "The Affiliated Shunde Hospital of Jinan University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "The Second People's Hospital of Shunde", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Affiliated Shunde Hospital of Jinan University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Second People's Hospital of Shunde", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "顺德第二人民医院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "暨南大学附属顺德医院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "Jinan University", + "type": "parent", + "id": "https://ror.org/02xe5ns62" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04xrsn650.json b/rc-v1.43-v2/new/04xrsn650.json new file mode 100644 index 000000000..60544353d --- /dev/null +++ b/rc-v1.43-v2/new/04xrsn650.json @@ -0,0 +1,109 @@ +{ + "locations": [ + { + "geonames_id": 2653941, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.2, + "lng": 0.11667, + "name": "Cambridge" + } + } + ], + "established": 2000, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q1783815" + ], + "preferred": "Q1783815" + } + ], + "id": "https://ror.org/04xrsn650", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ninjatheory.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ninja_Theory" + } + ], + "names": [ + { + "value": "Ninja Theory (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ninja Theory", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ninja Theory Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ninja Theory Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Just Add Monsters", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Just Add Monsters Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Just Add Monsters Limited", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Microsoft (United States)", + "type": "parent", + "id": "https://ror.org/00d0nc645" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/04z2hsy54.json b/rc-v1.43-v2/new/04z2hsy54.json new file mode 100644 index 000000000..925de3762 --- /dev/null +++ b/rc-v1.43-v2/new/04z2hsy54.json @@ -0,0 +1,69 @@ +{ + "locations": [ + { + "geonames_id": 3173435, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/04z2hsy54", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nvidia.com/it-it/" + } + ], + "names": [ + { + "value": "NVIDIA (Italy)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NVIDIA Italy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Nvidia Italy S.R.L.", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Nvidia (United States)", + "type": "parent", + "id": "https://ror.org/03jdj4y14" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/050gm3a53.json b/rc-v1.43-v2/new/050gm3a53.json new file mode 100644 index 000000000..fe8662cb5 --- /dev/null +++ b/rc-v1.43-v2/new/050gm3a53.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 1169825, + "geonames_details": { + "country_code": "PK", + "country_name": "Pakistan", + "lat": 30.19679, + "lng": 71.47824, + "name": "Multan" + } + } + ], + "established": 2007, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0397 1697" + ], + "preferred": "0000 0004 0397 1697" + } + ], + "id": "https://ror.org/050gm3a53", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cpeic.punjab.gov.pk" + } + ], + "names": [ + { + "value": "Ch. Pervaiz Elahi Institute of Cardiology, Multan", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Chaudhry Pervaiz Elahi Institute of Cardiology, Multan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CPE Institute of Cardiology, Multan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CPEIC Multan", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/051eysy15.json b/rc-v1.43-v2/new/051eysy15.json new file mode 100644 index 000000000..ddd56f134 --- /dev/null +++ b/rc-v1.43-v2/new/051eysy15.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 2925533, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.11552, + "lng": 8.68417, + "name": "Frankfurt am Main" + } + } + ], + "established": 1936, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9236 090X" + ], + "preferred": "0000 0004 9236 090X" + }, + { + "type": "fundref", + "all": [ + "100015931" + ], + "preferred": "100015931" + } + ], + "id": "https://ror.org/051eysy15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://dechema.de/mbf.html" + } + ], + "names": [ + { + "value": "Max Buchner Forschungsstiftung", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Max-Buchner-Forschungsstiftung", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Max Buchner Research Foundation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "MBF", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "MBFSt", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/0526zh358.json b/rc-v1.43-v2/new/0526zh358.json new file mode 100644 index 000000000..84a582ff7 --- /dev/null +++ b/rc-v1.43-v2/new/0526zh358.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 2653822, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.48, + "lng": -3.18, + "name": "Cardiff" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8306 8544" + ], + "preferred": "0000 0004 8306 8544" + }, + { + "type": "fundref", + "all": [ + "501100014332" + ], + "preferred": "501100014332" + } + ], + "id": "https://ror.org/0526zh358", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lsrnw.ac.uk" + } + ], + "names": [ + { + "value": "Life Sciences Research Network Wales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Rhwydwaith Gwyddorau Bywyd Cymru", + "types": [ + "label" + ], + "lang": "cy" + }, + { + "value": "LSRNW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Cardiff University", + "type": "parent", + "id": "https://ror.org/03kk7td41" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/0538nf417.json b/rc-v1.43-v2/new/0538nf417.json new file mode 100644 index 000000000..6e9d129c5 --- /dev/null +++ b/rc-v1.43-v2/new/0538nf417.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 3199016, + "geonames_details": { + "country_code": "SI", + "country_name": "Slovenia", + "lat": 45.51123, + "lng": 13.65655, + "name": "Izola" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/0538nf417", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://innorenew.eu" + } + ], + "names": [ + { + "value": "InnoRenew CoE", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "InnoRenew CoE Center odličnosti za raziskave in inovacije na področju obnovljivih materialov in zdravega bivanjskega okolja", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/0551gkb08.json b/rc-v1.43-v2/new/0551gkb08.json new file mode 100644 index 000000000..dbb646406 --- /dev/null +++ b/rc-v1.43-v2/new/0551gkb08.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 5398563, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.42411, + "lng": -122.16608, + "name": "Stanford" + } + } + ], + "established": 1978, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8307 2922" + ], + "preferred": "0000 0004 8307 2922" + }, + { + "type": "fundref", + "all": [ + "100015269" + ], + "preferred": "100015269" + } + ], + "id": "https://ror.org/0551gkb08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://systemx.stanford.edu" + } + ], + "names": [ + { + "value": "Stanford SystemX Alliance", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Center for Integrated Systems", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CIS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Stanford University", + "type": "parent", + "id": "https://ror.org/00f54p054" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/055rh9p75.json b/rc-v1.43-v2/new/055rh9p75.json new file mode 100644 index 000000000..7f0666e71 --- /dev/null +++ b/rc-v1.43-v2/new/055rh9p75.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 1800627, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.46784, + "lng": 104.68168, + "name": "Mianyang" + } + } + ], + "established": 2007, + "external_ids": [], + "id": "https://ror.org/055rh9p75", + "domains": [], + "links": [], + "names": [ + { + "value": "State Key Laboratory of Aerodynamics", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Aerodynamics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "空气动力学国家重点实验室", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Laboratory of Aerodynamic Science and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Lab of Aerodynamic Science and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "空天飞行空气动力科学与技术全国重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "China Aerodynamics Research and Development Center", + "type": "parent", + "id": "https://ror.org/00jma8s40" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05679z329.json b/rc-v1.43-v2/new/05679z329.json new file mode 100644 index 000000000..dc6f2f21f --- /dev/null +++ b/rc-v1.43-v2/new/05679z329.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5811696, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 47.65966, + "lng": -117.42908, + "name": "Spokane" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6087 9942" + ], + "preferred": "0000 0004 6087 9942" + }, + { + "type": "fundref", + "all": [ + "100011502" + ], + "preferred": "100011502" + } + ], + "id": "https://ror.org/05679z329", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://wagrains.org" + } + ], + "names": [ + { + "value": "Washington Grain Commission", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Washington State Grain Commission", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "WGC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/0568g2481.json b/rc-v1.43-v2/new/0568g2481.json new file mode 100644 index 000000000..57ddc1737 --- /dev/null +++ b/rc-v1.43-v2/new/0568g2481.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 4487042, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 35.7721, + "lng": -78.63861, + "name": "Raleigh" + } + } + ], + "established": 2007, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012671" + ], + "preferred": "100012671" + } + ], + "id": "https://ror.org/0568g2481", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://thenonwovensinstitute.com" + } + ], + "names": [ + { + "value": "The Nonwovens Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Nonwovens Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "North Carolina State University Nonwovens Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NWI NCSU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "North Carolina State University", + "type": "parent", + "id": "https://ror.org/04tj63d06" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/056nnzb78.json b/rc-v1.43-v2/new/056nnzb78.json new file mode 100644 index 000000000..22f1f617e --- /dev/null +++ b/rc-v1.43-v2/new/056nnzb78.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5134086, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.15478, + "lng": -77.61556, + "name": "Rochester" + } + } + ], + "established": 1881, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0940 8270" + ], + "preferred": "0000 0001 0940 8270" + }, + { + "type": "wikidata", + "all": [ + "Q70060834" + ], + "preferred": "Q70060834" + }, + { + "type": "fundref", + "all": [ + "100011435" + ], + "preferred": "100011435" + } + ], + "id": "https://ror.org/056nnzb78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.rasny.org" + } + ], + "names": [ + { + "value": "Rochester Academy of Science", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "RAS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/057apef51.json b/rc-v1.43-v2/new/057apef51.json new file mode 100644 index 000000000..f8ef3fa78 --- /dev/null +++ b/rc-v1.43-v2/new/057apef51.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1088 8602" + ], + "preferred": "0000 0005 1088 8602" + }, + { + "type": "fundref", + "all": [ + "100015427" + ], + "preferred": "100015427" + } + ], + "id": "https://ror.org/057apef51", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://cqmf-qcam.ca" + } + ], + "names": [ + { + "value": "Centre québécois sur les matériaux fonctionnels", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Quebec Centre for Advanced Materials", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CQMF", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "QCAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/057c1ry34.json b/rc-v1.43-v2/new/057c1ry34.json new file mode 100644 index 000000000..e60686359 --- /dev/null +++ b/rc-v1.43-v2/new/057c1ry34.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6138374, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.63076, + "lng": -72.95699, + "name": "Saint-Hyacinthe" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 5137" + ], + "preferred": "0000 0004 4910 5137" + } + ], + "id": "https://ror.org/057c1ry34", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.santemonteregie.qc.ca/est" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de la Montérégie-Est", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de la Montérégie-Est", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/057k6gq03.json b/rc-v1.43-v2/new/057k6gq03.json new file mode 100644 index 000000000..44005fb87 --- /dev/null +++ b/rc-v1.43-v2/new/057k6gq03.json @@ -0,0 +1,62 @@ +{ + "locations": [ + { + "geonames_id": 3108681, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.76401, + "lng": -2.46883, + "name": "Soria" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/057k6gq03", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cesefor.com" + } + ], + "names": [ + { + "value": "Cesefor", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fundacion Centro de Servicios y Promocion Forestal y de su Industria de Castilla y Leon", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Instituto de Biotecnología de León", + "type": "predecessor", + "id": "https://ror.org/03ry8wj79" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/057p7e749.json b/rc-v1.43-v2/new/057p7e749.json new file mode 100644 index 000000000..00bdb9585 --- /dev/null +++ b/rc-v1.43-v2/new/057p7e749.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 1705536, + "geonames_details": { + "country_code": "PH", + "country_name": "Philippines", + "lat": 14.17025, + "lng": 121.24181, + "name": "Los Baños" + } + } + ], + "established": 1972, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0095 710X" + ], + "preferred": "0000 0001 0095 710X" + }, + { + "type": "wikidata", + "all": [ + "Q7185026" + ], + "preferred": "Q7185026" + }, + { + "type": "fundref", + "all": [ + "501100014166" + ], + "preferred": "501100014166" + } + ], + "id": "https://ror.org/057p7e749", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pcaarrd.dost.gov.ph" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Philippine_Council_for_Agriculture%2C_Aquatic%2C_and_Natural_Resources_Research_and_Development" + } + ], + "names": [ + { + "value": "Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PCAARRD", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "DOST-PCAARRD", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Department of Science and Technology", + "type": "parent", + "id": "https://ror.org/05tgxx705" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/058ne9w36.json b/rc-v1.43-v2/new/058ne9w36.json new file mode 100644 index 000000000..ab2e4aba9 --- /dev/null +++ b/rc-v1.43-v2/new/058ne9w36.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0490 965X" + ], + "preferred": "0000 0004 0490 965X" + }, + { + "type": "fundref", + "all": [ + "100016916" + ], + "preferred": "100016916" + } + ], + "id": "https://ror.org/058ne9w36", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.royalmarsden.org" + } + ], + "names": [ + { + "value": "Royal Marsden Cancer Charity", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Royal Marsden Hospital", + "type": "parent", + "id": "https://ror.org/034vb5t35" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/059wz5438.json b/rc-v1.43-v2/new/059wz5438.json new file mode 100644 index 000000000..01812e70e --- /dev/null +++ b/rc-v1.43-v2/new/059wz5438.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0512 5953" + ], + "preferred": "0000 0004 0512 5953" + }, + { + "type": "wikidata", + "all": [ + "Q842509" + ], + "preferred": "Q842509" + } + ], + "id": "https://ror.org/059wz5438", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.chng.com.cn" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/China_Huaneng_Group" + } + ], + "names": [ + { + "value": "China Huaneng Group Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "China Huaneng Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "China Huaneng Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "China Huaneng Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中国华能集团", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05b0g2v72.json b/rc-v1.43-v2/new/05b0g2v72.json new file mode 100644 index 000000000..23799c126 --- /dev/null +++ b/rc-v1.43-v2/new/05b0g2v72.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 4931972, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.3751, + "lng": -71.10561, + "name": "Cambridge" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q7300869" + ], + "preferred": "Q7300869" + }, + { + "type": "fundref", + "all": [ + "100013721" + ], + "preferred": "100013721" + } + ], + "id": "https://ror.org/05b0g2v72", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://rcc.harvard.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Real_Colegio_Complutense" + } + ], + "names": [ + { + "value": "Real Colegio Complutense", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Real Colegio Complutense at Harvard University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "RCC at Harvard University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "RCCHU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Harvard University", + "type": "parent", + "id": "https://ror.org/03vek6s52" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05bjr0y28.json b/rc-v1.43-v2/new/05bjr0y28.json new file mode 100644 index 000000000..d8c4253bd --- /dev/null +++ b/rc-v1.43-v2/new/05bjr0y28.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 5278052, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.01168, + "lng": -88.23148, + "name": "Waukesha" + } + } + ], + "established": 2006, + "external_ids": [], + "id": "https://ror.org/05bjr0y28", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.neurotecheeg.com" + } + ], + "names": [ + { + "value": "Neurotech, LLC (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Neurotech", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Neurotech, LLC", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05cebxq10.json b/rc-v1.43-v2/new/05cebxq10.json new file mode 100644 index 000000000..5ed1908ca --- /dev/null +++ b/rc-v1.43-v2/new/05cebxq10.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 112931, + "geonames_details": { + "country_code": "IR", + "country_name": "Iran", + "lat": 35.69439, + "lng": 51.42151, + "name": "Tehran" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7433 9111" + ], + "preferred": "0000 0004 7433 9111" + }, + { + "type": "wikidata", + "all": [ + "Q112085401" + ], + "preferred": "Q112085401" + }, + { + "type": "fundref", + "all": [ + "501100010606" + ], + "preferred": "501100010606" + } + ], + "id": "https://ror.org/05cebxq10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aeoi.org.ir/en/portal/home/?47916/%D8%B5%D9%81%D8%AD%D9%87-nuclear-science-and-technology-research" + } + ], + "names": [ + { + "value": "Nuclear Science and Technology Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Nuclear Science and Technology Research Institute of Iran", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NSTRI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Atomic Energy Organization of Iran", + "type": "parent", + "id": "https://ror.org/04feqxb79" + } + ], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05cmj5t40.json b/rc-v1.43-v2/new/05cmj5t40.json new file mode 100644 index 000000000..92adc4458 --- /dev/null +++ b/rc-v1.43-v2/new/05cmj5t40.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5920433, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.38338, + "lng": -73.74919, + "name": "Châteauguay" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 5129" + ], + "preferred": "0000 0004 4910 5129" + } + ], + "id": "https://ror.org/05cmj5t40", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.santemonteregie.qc.ca/ouest" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de la Montérégie-Ouest", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de la Montérégie-Ouest", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05cshtm26.json b/rc-v1.43-v2/new/05cshtm26.json new file mode 100644 index 000000000..ed5366d8b --- /dev/null +++ b/rc-v1.43-v2/new/05cshtm26.json @@ -0,0 +1,157 @@ +{ + "locations": [ + { + "geonames_id": 5140405, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.04812, + "lng": -76.14742, + "name": "Syracuse" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1483 9309" + ], + "preferred": "0000 0004 1483 9309" + }, + { + "type": "fundref", + "all": [ + "100013115" + ], + "preferred": "100013115" + } + ], + "id": "https://ror.org/05cshtm26", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.esf.edu/glrc/index.php" + } + ], + "names": [ + { + "value": "Great Lakes Research Consortium", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "GLRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University at Albany, State University of New York", + "type": "related", + "id": "https://ror.org/012zs8222" + }, + { + "label": "Binghamton University", + "type": "related", + "id": "https://ror.org/008rmbt77" + }, + { + "label": "SUNY Brockport", + "type": "related", + "id": "https://ror.org/0306aeb62" + }, + { + "label": "University at Buffalo, State University of New York", + "type": "related", + "id": "https://ror.org/01y64my43" + }, + { + "label": "Clarkson University", + "type": "related", + "id": "https://ror.org/03rwgpn18" + }, + { + "label": "Cornell University", + "type": "related", + "id": "https://ror.org/05bnh6r87" + }, + { + "label": "State University of New York College at Cortland", + "type": "related", + "id": "https://ror.org/05a4pj207" + }, + { + "label": "SUNY College of Environmental Science and Forestry", + "type": "related", + "id": "https://ror.org/00qv0tw17" + }, + { + "label": "SUNY Fredonia", + "type": "related", + "id": "https://ror.org/05vrs0r17" + }, + { + "label": "State University of New York at Geneseo", + "type": "related", + "id": "https://ror.org/03g1q6c06" + }, + { + "label": "Hobart and William Smith Colleges", + "type": "related", + "id": "https://ror.org/004majf41" + }, + { + "label": "State University of New York at Oswego", + "type": "related", + "id": "https://ror.org/01597g643" + }, + { + "label": "SUNY Plattsburgh", + "type": "related", + "id": "https://ror.org/033zmj163" + }, + { + "label": "State University of New York at Potsdam", + "type": "related", + "id": "https://ror.org/032qgrc76" + }, + { + "label": "Rochester Institute of Technology", + "type": "related", + "id": "https://ror.org/00v4yb702" + }, + { + "label": "St. Lawrence University", + "type": "related", + "id": "https://ror.org/05pvqha70" + }, + { + "label": "Syracuse University", + "type": "related", + "id": "https://ror.org/025r5qe02" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05d6tb673.json b/rc-v1.43-v2/new/05d6tb673.json new file mode 100644 index 000000000..84f2175fe --- /dev/null +++ b/rc-v1.43-v2/new/05d6tb673.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3176219, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 44.40478, + "lng": 8.94439, + "name": "Genoa" + } + } + ], + "established": 1948, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1530 5008" + ], + "preferred": "0000 0001 1530 5008" + }, + { + "type": "wikidata", + "all": [ + "Q30888334" + ], + "preferred": "Q30888334" + }, + { + "type": "fundref", + "all": [ + "501100009881" + ], + "preferred": "501100009881" + } + ], + "id": "https://ror.org/05d6tb673", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.regione.liguria.it" + }, + { + "type": "wikipedia", + "value": "https://it.wikipedia.org/wiki/Giunta_regionale_della_Liguria" + } + ], + "names": [ + { + "value": "Regione Liguria", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Liguria Region", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Region of Liguria", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05d8cac05.json b/rc-v1.43-v2/new/05d8cac05.json new file mode 100644 index 000000000..23de9f0ce --- /dev/null +++ b/rc-v1.43-v2/new/05d8cac05.json @@ -0,0 +1,51 @@ +{ + "locations": [ + { + "geonames_id": 1796236, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.22222, + "lng": 121.45806, + "name": "Shanghai" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/05d8cac05", + "domains": [], + "links": [], + "names": [ + { + "value": "Shanghai Institute of Pollution Control and Ecological Security", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "上海污染控制与生态安全研究院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05dch6316.json b/rc-v1.43-v2/new/05dch6316.json new file mode 100644 index 000000000..52f38ac5a --- /dev/null +++ b/rc-v1.43-v2/new/05dch6316.json @@ -0,0 +1,206 @@ +{ + "locations": [ + { + "geonames_id": 4259418, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.76838, + "lng": -86.15804, + "name": "Indianapolis" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0431 6096" + ], + "preferred": "0000 0004 0431 6096" + }, + { + "type": "wikidata", + "all": [ + "Q73495380" + ], + "preferred": "Q73495380" + } + ], + "id": "https://ror.org/05dch6316", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://palni.org" + } + ], + "names": [ + { + "value": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Private Academic Library Network of Indiana, Inc.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Private Academic Library Network of Indiana", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PALNI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Anabaptist Mennonite Biblical Seminary", + "type": "related", + "id": "https://ror.org/04b8d7j46" + }, + { + "label": "Anderson University - Indiana", + "type": "related", + "id": "https://ror.org/03cebjr81" + }, + { + "label": "Bethel University", + "type": "related", + "id": "https://ror.org/02faxbd19" + }, + { + "label": "Butler University", + "type": "related", + "id": "https://ror.org/05gq3a412" + }, + { + "label": "Christian Theological Seminary", + "type": "related", + "id": "https://ror.org/05vnxnq07" + }, + { + "label": "Concordia Theological Seminary", + "type": "related", + "id": "https://ror.org/022fjwc94" + }, + { + "label": "DePauw University", + "type": "related", + "id": "https://ror.org/02mks6v46" + }, + { + "label": "Earlham College", + "type": "related", + "id": "https://ror.org/0566sj483" + }, + { + "label": "Franklin College", + "type": "related", + "id": "https://ror.org/05w35s747" + }, + { + "label": "Goshen College", + "type": "related", + "id": "https://ror.org/03tj80n37" + }, + { + "label": "Grace College & Seminary", + "type": "related", + "id": "https://ror.org/00qsr9g17" + }, + { + "label": "Hanover College", + "type": "related", + "id": "https://ror.org/00vc14296" + }, + { + "label": "Huntington University", + "type": "related", + "id": "https://ror.org/054wajj09" + }, + { + "label": "Manchester University", + "type": "related", + "id": "https://ror.org/02aswte26" + }, + { + "label": "Marian University - Indiana", + "type": "related", + "id": "https://ror.org/00p4ywg82" + }, + { + "label": "Oakland City University", + "type": "related", + "id": "https://ror.org/0453rg493" + }, + { + "label": "Saint Mary-of-the-Woods College", + "type": "related", + "id": "https://ror.org/045jby416" + }, + { + "label": "Saint Mary's College", + "type": "related", + "id": "https://ror.org/02r839n55" + }, + { + "label": "Saint Meinrad Seminary and School of Theology", + "type": "related", + "id": "https://ror.org/05tyqjm34" + }, + { + "label": "Taylor University", + "type": "related", + "id": "https://ror.org/005aghs32" + }, + { + "label": "Trine University", + "type": "related", + "id": "https://ror.org/038e0dv78" + }, + { + "label": "University of Indianapolis", + "type": "related", + "id": "https://ror.org/052133d12" + }, + { + "label": "University of Saint Francis", + "type": "related", + "id": "https://ror.org/01h6pze39" + }, + { + "label": "Wabash College", + "type": "related", + "id": "https://ror.org/00p11pk44" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05dpwde09.json b/rc-v1.43-v2/new/05dpwde09.json new file mode 100644 index 000000000..981e8886b --- /dev/null +++ b/rc-v1.43-v2/new/05dpwde09.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2639192, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.57515, + "lng": 0.18582, + "name": "Romford" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4904 9470" + ], + "preferred": "0000 0004 4904 9470" + }, + { + "type": "fundref", + "all": [ + "501100018817" + ], + "preferred": "501100018817" + } + ], + "id": "https://ror.org/05dpwde09", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://lupusuk.org.uk" + } + ], + "names": [ + { + "value": "LUPUS UK", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05ehpzy81.json b/rc-v1.43-v2/new/05ehpzy81.json new file mode 100644 index 000000000..685984987 --- /dev/null +++ b/rc-v1.43-v2/new/05ehpzy81.json @@ -0,0 +1,105 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5928 1249" + ], + "preferred": "0000 0004 5928 1249" + }, + { + "type": "fundref", + "all": [ + "501100015648" + ], + "preferred": "501100015648" + } + ], + "id": "https://ror.org/05ehpzy81", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.epri.sgcc.com.cn" + } + ], + "names": [ + { + "value": "China Electric Power Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "中国电力科学研究院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "China Electric Power Research Institute Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "China Electric Power Research Institute Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中国电力科学研究院有限公司", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "CEPRI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "State Grid Corporation of China (China)", + "type": "parent", + "id": "https://ror.org/05twwhs70" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05eky6607.json b/rc-v1.43-v2/new/05eky6607.json new file mode 100644 index 000000000..78791de60 --- /dev/null +++ b/rc-v1.43-v2/new/05eky6607.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5959974, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.47723, + "lng": -75.70164, + "name": "Gatineau" + } + } + ], + "established": 1967, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8063 3499" + ], + "preferred": "0000 0004 8063 3499" + } + ], + "id": "https://ror.org/05eky6607", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cisss-outaouais.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et des services sociaux de l’Outaouais", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de l'Outaouais", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05gt9yw23.json b/rc-v1.43-v2/new/05gt9yw23.json new file mode 100644 index 000000000..d7ac13b5e --- /dev/null +++ b/rc-v1.43-v2/new/05gt9yw23.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 333750, + "geonames_details": { + "country_code": "ET", + "country_name": "Ethiopia", + "lat": 5.65, + "lng": 36.65, + "name": "Jinka" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0976 328X" + ], + "preferred": "0000 0005 0976 328X" + } + ], + "id": "https://ror.org/05gt9yw23", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://jku.edu.et" + } + ], + "names": [ + { + "value": "Jinka University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ጂንካ ዩኒቨርሲቲ", + "types": [ + "label" + ], + "lang": "am" + }, + { + "value": "JKU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05jge5x64.json b/rc-v1.43-v2/new/05jge5x64.json new file mode 100644 index 000000000..1dd9ebe41 --- /dev/null +++ b/rc-v1.43-v2/new/05jge5x64.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2185018, + "geonames_details": { + "country_code": "NZ", + "country_name": "New Zealand", + "lat": -40.35636, + "lng": 175.61113, + "name": "Palmerston North" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7863 9787" + ], + "preferred": "0000 0004 7863 9787" + }, + { + "type": "wikidata", + "all": [ + "Q116185757" + ], + "preferred": "Q116185757" + }, + { + "type": "fundref", + "all": [ + "501100009482" + ], + "preferred": "501100009482" + } + ], + "id": "https://ror.org/05jge5x64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nzagrc.org.nz" + } + ], + "names": [ + { + "value": "New Zealand Agricultural Greenhouse Gas Research Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NZ Agricultural Greenhouse Gas Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NZAGRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05jnma812.json b/rc-v1.43-v2/new/05jnma812.json new file mode 100644 index 000000000..fe41afed4 --- /dev/null +++ b/rc-v1.43-v2/new/05jnma812.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0697 156X" + ], + "preferred": "0000 0001 0697 156X" + }, + { + "type": "fundref", + "all": [ + "100012387" + ], + "preferred": "100012387" + } + ], + "id": "https://ror.org/05jnma812", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.acf.hhs.gov/opre/" + } + ], + "names": [ + { + "value": "Office of Planning, Research and Evaluation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Office of Planning, Research & Evaluation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OPRE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Administration for Children and Families", + "type": "parent", + "id": "https://ror.org/00g8hms52" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05jvrb780.json b/rc-v1.43-v2/new/05jvrb780.json new file mode 100644 index 000000000..527a0bc8a --- /dev/null +++ b/rc-v1.43-v2/new/05jvrb780.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 756135, + "geonames_details": { + "country_code": "PL", + "country_name": "Poland", + "lat": 52.22977, + "lng": 21.01178, + "name": "Warsaw" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9334 2236" + ], + "preferred": "0000 0004 9334 2236" + } + ], + "id": "https://ror.org/05jvrb780", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://grape.org.pl/fame" + } + ], + "names": [ + { + "value": "Fundacja Adeptów i Miłośników Ekonomii", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Foundation of Admirers and Mavens of Economics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FAME", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05mee8y17.json b/rc-v1.43-v2/new/05mee8y17.json new file mode 100644 index 000000000..d1bdbc2bb --- /dev/null +++ b/rc-v1.43-v2/new/05mee8y17.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3448439, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -23.5475, + "lng": -46.63611, + "name": "São Paulo" + } + } + ], + "established": 2013, + "external_ids": [], + "id": "https://ror.org/05mee8y17", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://vitaalere.com.br" + } + ], + "names": [ + { + "value": "Instituto Vita Alere", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto Vita Alere de Prevenção e Posvenção do Suicídio", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Vita Alere Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IVA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05mz0pr34.json b/rc-v1.43-v2/new/05mz0pr34.json new file mode 100644 index 000000000..61ab91d0a --- /dev/null +++ b/rc-v1.43-v2/new/05mz0pr34.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q45131942" + ], + "preferred": "Q45131942" + }, + { + "type": "fundref", + "all": [ + "100011088" + ], + "preferred": "100011088" + } + ], + "id": "https://ror.org/05mz0pr34", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uclhcharity.org.uk" + } + ], + "names": [ + { + "value": "UCL Hospitals Charitable Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "UCLH Charitable Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University College London Hospitals Charitable Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UCLH Charity", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University College London", + "type": "parent", + "id": "https://ror.org/02jx3x895" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05nqvv719.json b/rc-v1.43-v2/new/05nqvv719.json new file mode 100644 index 000000000..60b411742 --- /dev/null +++ b/rc-v1.43-v2/new/05nqvv719.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 3871336, + "geonames_details": { + "country_code": "CL", + "country_name": "Chile", + "lat": -33.45694, + "lng": -70.64827, + "name": "Santiago" + } + } + ], + "established": 1924, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0628 5553" + ], + "preferred": "0000 0004 0628 5553" + }, + { + "type": "wikidata", + "all": [ + "Q6017174" + ], + "preferred": "Q6017174" + } + ], + "id": "https://ror.org/05nqvv719", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.minagri.gob.cl" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Agriculture_%28Chile%29" + } + ], + "names": [ + { + "value": "Ministerio de Agricultura", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Minagri", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministerio de Agricultura de Chile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Chilean Ministry of Agriculture", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Agriculture, Chile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Agriculture", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05q4hzm57.json b/rc-v1.43-v2/new/05q4hzm57.json new file mode 100644 index 000000000..0db5b57ef --- /dev/null +++ b/rc-v1.43-v2/new/05q4hzm57.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/05q4hzm57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://kfid-online.de" + } + ], + "names": [ + { + "value": "Kommission für Forschungsinformationen in Deutschland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Commission for Research Information in Germany", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "KFID", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05q6yhx55.json b/rc-v1.43-v2/new/05q6yhx55.json new file mode 100644 index 000000000..8a97d575c --- /dev/null +++ b/rc-v1.43-v2/new/05q6yhx55.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2656173, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.3751, + "lng": -2.36172, + "name": "Bath" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7784 7859" + ], + "preferred": "0000 0004 7784 7859" + }, + { + "type": "fundref", + "all": [ + "100012660" + ], + "preferred": "100012660" + } + ], + "id": "https://ror.org/05q6yhx55", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.evacranetrust.org" + } + ], + "names": [ + { + "value": "Eva Crane Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05sqppn31.json b/rc-v1.43-v2/new/05sqppn31.json new file mode 100644 index 000000000..1127b3178 --- /dev/null +++ b/rc-v1.43-v2/new/05sqppn31.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2797656, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 51.05, + "lng": 3.71667, + "name": "Ghent" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0729 1485" + ], + "preferred": "0000 0005 0729 1485" + }, + { + "type": "fundref", + "all": [ + "100019618" + ], + "preferred": "100019618" + } + ], + "id": "https://ror.org/05sqppn31", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vscentrum.be" + } + ], + "names": [ + { + "value": "Vlaams Supercomputer Centrum", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Flemish Supercomputer Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Flemish Supercomputer Centre", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "VSC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05stqjz94.json b/rc-v1.43-v2/new/05stqjz94.json new file mode 100644 index 000000000..7c48ec96f --- /dev/null +++ b/rc-v1.43-v2/new/05stqjz94.json @@ -0,0 +1,66 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q45134415" + ], + "preferred": "Q45134415" + }, + { + "type": "fundref", + "all": [ + "100012164" + ], + "preferred": "100012164" + } + ], + "id": "https://ror.org/05stqjz94", + "domains": [], + "links": [], + "names": [ + { + "value": "Row Fogo Charitable Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Mrs. Gladys Row Fogo Charitable Trust", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05sz3st37.json b/rc-v1.43-v2/new/05sz3st37.json new file mode 100644 index 000000000..37d359cb6 --- /dev/null +++ b/rc-v1.43-v2/new/05sz3st37.json @@ -0,0 +1,79 @@ +{ + "locations": [ + { + "geonames_id": 6325521, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.80326, + "lng": -71.17793, + "name": "Lévis" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9606 3209" + ], + "preferred": "0000 0000 9606 3209" + }, + { + "type": "wikidata", + "all": [ + "Q3009983" + ], + "preferred": "Q3009983" + } + ], + "id": "https://ror.org/05sz3st37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cegepba.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/C%C3%A9gep_Beauce-Appalaches" + } + ], + "names": [ + { + "value": "Cégep Beauce-Appalaches", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Hôpital d'Youville de Sherbrooke", + "type": "parent", + "id": "https://ror.org/02805zw73" + }, + { + "label": "Hôpital d'Youville de Sherbrooke", + "type": "child", + "id": "https://ror.org/02805zw73" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05t17k830.json b/rc-v1.43-v2/new/05t17k830.json new file mode 100644 index 000000000..ec595566a --- /dev/null +++ b/rc-v1.43-v2/new/05t17k830.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0285 1076" + ], + "preferred": "0000 0005 0285 1076" + }, + { + "type": "fundref", + "all": [ + "501100019326" + ], + "preferred": "501100019326" + } + ], + "id": "https://ror.org/05t17k830", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ukrmp.org.uk" + } + ], + "names": [ + { + "value": "UK Regenerative Medicine Platform", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "United Kingdom Regenerative Medicine Platform", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UKRMP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05t2rs949.json b/rc-v1.43-v2/new/05t2rs949.json new file mode 100644 index 000000000..f33c481f3 --- /dev/null +++ b/rc-v1.43-v2/new/05t2rs949.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 3470353, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -23.51056, + "lng": -46.87611, + "name": "Barueri" + } + } + ], + "established": 1994, + "external_ids": [], + "id": "https://ror.org/05t2rs949", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fieb.edu.br" + } + ], + "names": [ + { + "value": "Fundação Instututo de Educação de Barueri", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto Tecnológico de Barueri", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FIEB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05tamah23.json b/rc-v1.43-v2/new/05tamah23.json new file mode 100644 index 000000000..8bb04a5d7 --- /dev/null +++ b/rc-v1.43-v2/new/05tamah23.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2653941, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.2, + "lng": 0.11667, + "name": "Cambridge" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011032" + ], + "preferred": "501100011032" + } + ], + "id": "https://ror.org/05tamah23", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cedar.iph.cam.ac.uk" + } + ], + "names": [ + { + "value": "Communicating Diet and Activity Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre for Diet and Activity Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CEDAR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United Kingdom Clinical Research Collaboration", + "type": "related", + "id": "https://ror.org/025ecp212" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05tvkct11.json b/rc-v1.43-v2/new/05tvkct11.json new file mode 100644 index 000000000..7ad1b9f21 --- /dev/null +++ b/rc-v1.43-v2/new/05tvkct11.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2158177, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -37.814, + "lng": 144.96332, + "name": "Melbourne" + } + } + ], + "established": 1978, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6431 4914" + ], + "preferred": "0000 0004 6431 4914" + }, + { + "type": "wikidata", + "all": [ + "Q7238757" + ], + "preferred": "Q7238757" + }, + { + "type": "fundref", + "all": [ + "100012188" + ], + "preferred": "100012188" + } + ], + "id": "https://ror.org/05tvkct11", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Pratt_Foundation" + } + ], + "names": [ + { + "value": "Pratt Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05v727m31.json b/rc-v1.43-v2/new/05v727m31.json new file mode 100644 index 000000000..5595c66ba --- /dev/null +++ b/rc-v1.43-v2/new/05v727m31.json @@ -0,0 +1,127 @@ +{ + "locations": [ + { + "geonames_id": 2978317, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.1787, + "lng": 5.76281, + "name": "Saint-Martin-d'Hères" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q3551589" + ], + "preferred": "Q3551589" + }, + { + "type": "fundref", + "all": [ + "100012953" + ], + "preferred": "100012953" + } + ], + "id": "https://ror.org/05v727m31", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Community_Universit%C3%A9_Grenoble_Alpes" + } + ], + "names": [ + { + "value": "Communauté Université Grenoble Alpes", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Grenoble Alpes ComUE", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Communauté Université Grenoble-Alpes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Grenoble Alpes Community", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ComUE Université Grenoble Alpes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Community University Grenoble Alps", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "COMUE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "related", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Grenoble Institute of Technology", + "type": "related", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "French National Centre for Scientific Research", + "type": "related", + "id": "https://ror.org/02feahw73" + }, + { + "label": "French Institute for Research in Computer Science and Automation", + "type": "related", + "id": "https://ror.org/02kvxyf05" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05vs9t239.json b/rc-v1.43-v2/new/05vs9t239.json new file mode 100644 index 000000000..1e38561a2 --- /dev/null +++ b/rc-v1.43-v2/new/05vs9t239.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 1793511, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 37.86944, + "lng": 112.56028, + "name": "Taiyuan" + } + } + ], + "established": 1998, + "external_ids": [], + "id": "https://ror.org/05vs9t239", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sx.sgcc.com.cn" + } + ], + "names": [ + { + "value": "State Grid Shanxi Electric Power Company Electric Power Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "国网山西省电力公司电力科学研究院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/new/05wnp0977.json b/rc-v1.43-v2/new/05wnp0977.json new file mode 100644 index 000000000..03ced11cd --- /dev/null +++ b/rc-v1.43-v2/new/05wnp0977.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012339" + ], + "preferred": "100012339" + } + ], + "id": "https://ror.org/05wnp0977", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gov.uk/government/organisations/defence-and-security-accelerator" + } + ], + "names": [ + { + "value": "Defence and Security Accelerator", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DASA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ministry of Defence", + "type": "parent", + "id": "https://ror.org/01bvxzn29" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/relationships.csv b/rc-v1.43-v2/relationships.csv new file mode 100644 index 000000000..ec5712f8e --- /dev/null +++ b/rc-v1.43-v2/relationships.csv @@ -0,0 +1,952 @@ +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 +9986,https://github.com/ror-community/ror-updates/issues/9986,"Modify the information in an existing ROR record: +UNIVERSIDAD DE LA LAGUNA https://ror.org/01r9z8p25 +",UNIVERSIDAD DE LA LAGUNA,https://ror.org/01r9z8p25,https://ror.org/03cmntr54,Instituto de Astrofísica de Canarias,Child,Production +9986,https://github.com/ror-community/ror-updates/issues/9986,"Modify the information in an existing ROR record: +UNIVERSIDAD DE LA LAGUNA https://ror.org/01r9z8p25 +",Instituto de Astrofísica de Canarias,https://ror.org/03cmntr54,https://ror.org/01r9z8p25,UNIVERSIDAD DE LA LAGUNA,Parent,Release +9986,https://github.com/ror-community/ror-updates/issues/9986,"Modify the information in an existing ROR record: +UNIVERSIDAD DE LA LAGUNA https://ror.org/01r9z8p25 +",UNIVERSIDAD DE LA LAGUNA,https://ror.org/01r9z8p25,https://ror.org/005a3p084,Hospital Universitario Nuestra Señora de Candelaria,Related,Production +9986,https://github.com/ror-community/ror-updates/issues/9986,"Modify the information in an existing ROR record: +UNIVERSIDAD DE LA LAGUNA https://ror.org/01r9z8p25 +",Hospital Universitario Nuestra Señora de Candelaria,https://ror.org/005a3p084,https://ror.org/01r9z8p25,UNIVERSIDAD DE LA LAGUNA,Related,Release +9712,https://github.com/ror-community/ror-updates/issues/9712,Modify the information in an existing ROR record: AT4 wireless (Spain) - https://ror.org/05f8nen40,AT4 wireless (Spain),https://ror.org/05f8nen40,https://ror.org/02b3ny291,Dekra (Germany),Successor,Production +9713,https://github.com/ror-community/ror-updates/issues/9713,Modify the information in an existing ROR record: IberEspacio (Spain) - https://ror.org/00mccb878,IberEspacio (Spain),https://ror.org/00mccb878,https://ror.org/04mnaqe33,Arquimea (Spain),Successor,Production +9715,https://github.com/ror-community/ror-updates/issues/9715,Modify the information in an existing ROR record: Lipotec (Spain) - https://ror.org/04k1qv985,Lipotec (Spain),https://ror.org/04k1qv985,https://ror.org/03kp1tb17,Lubrizol Life Science Health (United States),Successor,Production +9760,https://github.com/ror-community/ror-updates/issues/9760,Modify the information in an existing ROR record: AIDIMA Technology Institute - https://ror.org/030gd0911,AIDIMA Technology Institute,https://ror.org/030gd0911,https://ror.org/057f9wg13,"Instituto Tecnológico Metalmecánico, Mueble, Madera, Embalaje y Afines",Successor,Production +9755,https://github.com/ror-community/ror-updates/issues/9755,Modify the information in an existing ROR record: Catalonian Research and Innovation Centre - https://ror.org/03hpdk269,Catalonian Research and Innovation Centre,https://ror.org/03hpdk269,https://ror.org/01m260238,Ateknea Solutions (Spain),Successor,Production +9726,https://github.com/ror-community/ror-updates/issues/9726,Modify the information in an existing ROR record: Centre de Recerca en Sanitat Animal - https://ror.org/011jtr847,Centre de Recerca en Sanitat Animal,https://ror.org/011jtr847,https://ror.org/012zh9h13,Institute for Research and Technology in Food and Agriculture,Successor,Production +9719,https://github.com/ror-community/ror-updates/issues/9719,Modify the information in an existing ROR record: Ramem (Spain) - https://ror.org/057yy7z71,Ramem (Spain),https://ror.org/057yy7z71,https://ror.org/04mnaqe33,Arquimea (Spain),Successor,Production +9765,https://github.com/ror-community/ror-updates/issues/9765,Modify the information in an existing ROR record: Centre for Nanoscience and Nanotechnology - https://ror.org/00zay3w86,Centre for Nanoscience and Nanotechnology,https://ror.org/00zay3w86,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9765,https://github.com/ror-community/ror-updates/issues/9765,Modify the information in an existing ROR record: Centre for Nanoscience and Nanotechnology - https://ror.org/00zay3w86,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/00zay3w86,Centre for Nanoscience and Nanotechnology,Child,Release +9766,https://github.com/ror-community/ror-updates/issues/9766,Modify the information in an existing ROR record: Centre de recherche en Epidémiologie et Santé des Populations - https://ror.org/01ed4t417,Centre de recherche en Epidémiologie et Santé des Populations,https://ror.org/01ed4t417,https://ror.org/02vjkv261,Inserm,Parent,Release +9766,https://github.com/ror-community/ror-updates/issues/9766,Modify the information in an existing ROR record: Centre de recherche en Epidémiologie et Santé des Populations - https://ror.org/01ed4t417,Inserm,https://ror.org/02vjkv261,https://ror.org/01ed4t417,Centre de recherche en Epidémiologie et Santé des Populations,Child,Release +9766,https://github.com/ror-community/ror-updates/issues/9766,Modify the information in an existing ROR record: Centre de recherche en Epidémiologie et Santé des Populations - https://ror.org/01ed4t417,Centre de recherche en Epidémiologie et Santé des Populations,https://ror.org/01ed4t417,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9766,https://github.com/ror-community/ror-updates/issues/9766,Modify the information in an existing ROR record: Centre de recherche en Epidémiologie et Santé des Populations - https://ror.org/01ed4t417,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/01ed4t417,Centre de recherche en Epidémiologie et Santé des Populations,Child,Release +9767,https://github.com/ror-community/ror-updates/issues/9767,Modify the information in an existing ROR record: Department of Mathematics and their Applications - https://ror.org/03k9z2963,Department of Mathematics and their Applications,https://ror.org/03k9z2963,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9767,https://github.com/ror-community/ror-updates/issues/9767,Modify the information in an existing ROR record: Department of Mathematics and their Applications - https://ror.org/03k9z2963,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/03k9z2963,Department of Mathematics and their Applications,Child,Release +9768,https://github.com/ror-community/ror-updates/issues/9768,Modify the information in an existing ROR record: Département de Mathématiques - https://ror.org/03ab0zs98,Département de Mathématiques,https://ror.org/03ab0zs98,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9768,https://github.com/ror-community/ror-updates/issues/9768,Modify the information in an existing ROR record: Département de Mathématiques - https://ror.org/03ab0zs98,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/03ab0zs98,Département de Mathématiques,Child,Release +9768,https://github.com/ror-community/ror-updates/issues/9768,Modify the information in an existing ROR record: Département de Mathématiques - https://ror.org/03ab0zs98,Département de Mathématiques,https://ror.org/03ab0zs98,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9768,https://github.com/ror-community/ror-updates/issues/9768,Modify the information in an existing ROR record: Département de Mathématiques - https://ror.org/03ab0zs98,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/03ab0zs98,Département de Mathématiques,Child,Release +9769,https://github.com/ror-community/ror-updates/issues/9769,"Modify the information in an existing ROR record: Fluides, Automatique et Systèmes Thermiques - https://ror.org/02byv2846","Fluides, Automatique et Systèmes Thermiques",https://ror.org/02byv2846,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9769,https://github.com/ror-community/ror-updates/issues/9769,"Modify the information in an existing ROR record: Fluides, Automatique et Systèmes Thermiques - https://ror.org/02byv2846",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02byv2846,"Fluides, Automatique et Systèmes Thermiques",Child,Release +9769,https://github.com/ror-community/ror-updates/issues/9769,"Modify the information in an existing ROR record: Fluides, Automatique et Systèmes Thermiques - https://ror.org/02byv2846","Fluides, Automatique et Systèmes Thermiques",https://ror.org/02byv2846,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9769,https://github.com/ror-community/ror-updates/issues/9769,"Modify the information in an existing ROR record: Fluides, Automatique et Systèmes Thermiques - https://ror.org/02byv2846",University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02byv2846,"Fluides, Automatique et Systèmes Thermiques",Child,Release +9771,https://github.com/ror-community/ror-updates/issues/9771,Modify the information in an existing ROR record: Genotoxic Stress and Cancer - https://ror.org/01b5rtm37,Genotoxic Stress and Cancer,https://ror.org/01b5rtm37,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9771,https://github.com/ror-community/ror-updates/issues/9771,Modify the information in an existing ROR record: Genotoxic Stress and Cancer - https://ror.org/01b5rtm37,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/01b5rtm37,Genotoxic Stress and Cancer,Child,Release +9771,https://github.com/ror-community/ror-updates/issues/9771,Modify the information in an existing ROR record: Genotoxic Stress and Cancer - https://ror.org/01b5rtm37,Genotoxic Stress and Cancer,https://ror.org/01b5rtm37,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9771,https://github.com/ror-community/ror-updates/issues/9771,Modify the information in an existing ROR record: Genotoxic Stress and Cancer - https://ror.org/01b5rtm37,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/01b5rtm37,Genotoxic Stress and Cancer,Child,Release +9773,https://github.com/ror-community/ror-updates/issues/9773,Modify the information in an existing ROR record: Génétique Quantitative et Évolution Le Moulon - https://ror.org/012fqzm33,Génétique Quantitative et Évolution Le Moulon,https://ror.org/012fqzm33,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9773,https://github.com/ror-community/ror-updates/issues/9773,Modify the information in an existing ROR record: Génétique Quantitative et Évolution Le Moulon - https://ror.org/012fqzm33,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/012fqzm33,Génétique Quantitative et Évolution Le Moulon,Child,Release +9773,https://github.com/ror-community/ror-updates/issues/9773,Modify the information in an existing ROR record: Génétique Quantitative et Évolution Le Moulon - https://ror.org/012fqzm33,Génétique Quantitative et Évolution Le Moulon,https://ror.org/012fqzm33,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9773,https://github.com/ror-community/ror-updates/issues/9773,Modify the information in an existing ROR record: Génétique Quantitative et Évolution Le Moulon - https://ror.org/012fqzm33,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/012fqzm33,Génétique Quantitative et Évolution Le Moulon,Child,Release +9774,https://github.com/ror-community/ror-updates/issues/9774,"Modify the information in an existing ROR record: Inflammation, Chemokines and Immunopathology - https://ror.org/05dy6wv04","Inflammation, Chemokines and Immunopathology",https://ror.org/05dy6wv04,https://ror.org/02vjkv261,Inserm,Parent,Release +9774,https://github.com/ror-community/ror-updates/issues/9774,"Modify the information in an existing ROR record: Inflammation, Chemokines and Immunopathology - https://ror.org/05dy6wv04",Inserm,https://ror.org/02vjkv261,https://ror.org/05dy6wv04,"Inflammation, Chemokines and Immunopathology",Child,Release +9774,https://github.com/ror-community/ror-updates/issues/9774,"Modify the information in an existing ROR record: Inflammation, Chemokines and Immunopathology - https://ror.org/05dy6wv04","Inflammation, Chemokines and Immunopathology",https://ror.org/05dy6wv04,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9774,https://github.com/ror-community/ror-updates/issues/9774,"Modify the information in an existing ROR record: Inflammation, Chemokines and Immunopathology - https://ror.org/05dy6wv04",University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/05dy6wv04,"Inflammation, Chemokines and Immunopathology",Child,Release +9776,https://github.com/ror-community/ror-updates/issues/9776,Modify the information in an existing ROR record: Institut Galien Paris Sud - https://ror.org/02mnw9q71,Institut Galien Paris Sud,https://ror.org/02mnw9q71,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9776,https://github.com/ror-community/ror-updates/issues/9776,Modify the information in an existing ROR record: Institut Galien Paris Sud - https://ror.org/02mnw9q71,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02mnw9q71,Institut Galien Paris Sud,Child,Release +9776,https://github.com/ror-community/ror-updates/issues/9776,Modify the information in an existing ROR record: Institut Galien Paris Sud - https://ror.org/02mnw9q71,Institut Galien Paris Sud,https://ror.org/02mnw9q71,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9776,https://github.com/ror-community/ror-updates/issues/9776,Modify the information in an existing ROR record: Institut Galien Paris Sud - https://ror.org/02mnw9q71,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02mnw9q71,Institut Galien Paris Sud,Child,Release +9777,https://github.com/ror-community/ror-updates/issues/9777,Modify the information in an existing ROR record: Institut d'Astrophysique Spatiale - https://ror.org/014p8mr66,Institut d'Astrophysique Spatiale,https://ror.org/014p8mr66,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9777,https://github.com/ror-community/ror-updates/issues/9777,Modify the information in an existing ROR record: Institut d'Astrophysique Spatiale - https://ror.org/014p8mr66,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/014p8mr66,Institut d'Astrophysique Spatiale,Child,Release +9777,https://github.com/ror-community/ror-updates/issues/9777,Modify the information in an existing ROR record: Institut d'Astrophysique Spatiale - https://ror.org/014p8mr66,Institut d'Astrophysique Spatiale,https://ror.org/014p8mr66,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9777,https://github.com/ror-community/ror-updates/issues/9777,Modify the information in an existing ROR record: Institut d'Astrophysique Spatiale - https://ror.org/014p8mr66,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/014p8mr66,Institut d'Astrophysique Spatiale,Child,Release +9779,https://github.com/ror-community/ror-updates/issues/9779,Modify the information in an existing ROR record: Institut de Chimie Moléculaire et des Matériaux d'Orsay - https://ror.org/05wzh1m37,Institut de Chimie Moléculaire et des Matériaux d'Orsay,https://ror.org/05wzh1m37,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9779,https://github.com/ror-community/ror-updates/issues/9779,Modify the information in an existing ROR record: Institut de Chimie Moléculaire et des Matériaux d'Orsay - https://ror.org/05wzh1m37,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/05wzh1m37,Institut de Chimie Moléculaire et des Matériaux d'Orsay,Child,Release +9779,https://github.com/ror-community/ror-updates/issues/9779,Modify the information in an existing ROR record: Institut de Chimie Moléculaire et des Matériaux d'Orsay - https://ror.org/05wzh1m37,Institut de Chimie Moléculaire et des Matériaux d'Orsay,https://ror.org/05wzh1m37,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9779,https://github.com/ror-community/ror-updates/issues/9779,Modify the information in an existing ROR record: Institut de Chimie Moléculaire et des Matériaux d'Orsay - https://ror.org/05wzh1m37,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/05wzh1m37,Institut de Chimie Moléculaire et des Matériaux d'Orsay,Child,Release +9778,https://github.com/ror-community/ror-updates/issues/9778,Modify the information in an existing ROR record: University of Paris-Sud - https://ror.org/028rypz17,University of Paris-Sud,https://ror.org/028rypz17,https://ror.org/03xjwb503,University of Paris-Saclay,Successor,Release +9780,https://github.com/ror-community/ror-updates/issues/9780,Modify the information in an existing ROR record: Institut de Chimie des Substances Naturelles - https://ror.org/02st4q439,Institut de Chimie des Substances Naturelles,https://ror.org/02st4q439,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9780,https://github.com/ror-community/ror-updates/issues/9780,Modify the information in an existing ROR record: Institut de Chimie des Substances Naturelles - https://ror.org/02st4q439,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02st4q439,Institut de Chimie des Substances Naturelles,Child,Release +9780,https://github.com/ror-community/ror-updates/issues/9780,Modify the information in an existing ROR record: Institut de Chimie des Substances Naturelles - https://ror.org/02st4q439,Institut de Chimie des Substances Naturelles,https://ror.org/02st4q439,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9780,https://github.com/ror-community/ror-updates/issues/9780,Modify the information in an existing ROR record: Institut de Chimie des Substances Naturelles - https://ror.org/02st4q439,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02st4q439,Institut de Chimie des Substances Naturelles,Child,Release +9781,https://github.com/ror-community/ror-updates/issues/9781,Modify the information in an existing ROR record: Institut de Mécanique Céleste et de Calcul des Éphémérides - https://ror.org/002zc3t08,Institut de Mécanique Céleste et de Calcul des Éphémérides,https://ror.org/002zc3t08,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9781,https://github.com/ror-community/ror-updates/issues/9781,Modify the information in an existing ROR record: Institut de Mécanique Céleste et de Calcul des Éphémérides - https://ror.org/002zc3t08,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/002zc3t08,Institut de Mécanique Céleste et de Calcul des Éphémérides,Child,Release +9782,https://github.com/ror-community/ror-updates/issues/9782,Modify the information in an existing ROR record: Institut des Sciences Moléculaires d'Orsay - https://ror.org/0211r2z47,Institut des Sciences Moléculaires d'Orsay,https://ror.org/0211r2z47,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9782,https://github.com/ror-community/ror-updates/issues/9782,Modify the information in an existing ROR record: Institut des Sciences Moléculaires d'Orsay - https://ror.org/0211r2z47,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/0211r2z47,Institut des Sciences Moléculaires d'Orsay,Child,Release +9782,https://github.com/ror-community/ror-updates/issues/9782,Modify the information in an existing ROR record: Institut des Sciences Moléculaires d'Orsay - https://ror.org/0211r2z47,Institut des Sciences Moléculaires d'Orsay,https://ror.org/0211r2z47,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9782,https://github.com/ror-community/ror-updates/issues/9782,Modify the information in an existing ROR record: Institut des Sciences Moléculaires d'Orsay - https://ror.org/0211r2z47,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/0211r2z47,Institut des Sciences Moléculaires d'Orsay,Child,Release +9783,https://github.com/ror-community/ror-updates/issues/9783,Modify the information in an existing ROR record: Institut des Sciences des Plantes de Paris Saclay - https://ror.org/00ajjta07,Institut des Sciences des Plantes de Paris Saclay,https://ror.org/00ajjta07,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9783,https://github.com/ror-community/ror-updates/issues/9783,Modify the information in an existing ROR record: Institut des Sciences des Plantes de Paris Saclay - https://ror.org/00ajjta07,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/00ajjta07,Institut des Sciences des Plantes de Paris Saclay,Child,Release +9783,https://github.com/ror-community/ror-updates/issues/9783,Modify the information in an existing ROR record: Institut des Sciences des Plantes de Paris Saclay - https://ror.org/00ajjta07,Institut des Sciences des Plantes de Paris Saclay,https://ror.org/00ajjta07,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9783,https://github.com/ror-community/ror-updates/issues/9783,Modify the information in an existing ROR record: Institut des Sciences des Plantes de Paris Saclay - https://ror.org/00ajjta07,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/00ajjta07,Institut des Sciences des Plantes de Paris Saclay,Child,Release +9784,https://github.com/ror-community/ror-updates/issues/9784,Modify the information in an existing ROR record: Institute of Integrative Biology of the Cell - https://ror.org/01fftxe08,Institute of Integrative Biology of the Cell,https://ror.org/01fftxe08,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9784,https://github.com/ror-community/ror-updates/issues/9784,Modify the information in an existing ROR record: Institute of Integrative Biology of the Cell - https://ror.org/01fftxe08,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/01fftxe08,Institute of Integrative Biology of the Cell,Child,Release +9784,https://github.com/ror-community/ror-updates/issues/9784,Modify the information in an existing ROR record: Institute of Integrative Biology of the Cell - https://ror.org/01fftxe08,Institute of Integrative Biology of the Cell,https://ror.org/01fftxe08,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9784,https://github.com/ror-community/ror-updates/issues/9784,Modify the information in an existing ROR record: Institute of Integrative Biology of the Cell - https://ror.org/01fftxe08,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/01fftxe08,Institute of Integrative Biology of the Cell,Child,Release +9785,https://github.com/ror-community/ror-updates/issues/9785,Modify the information in an existing ROR record: Interactions Cellulaires et Physiopathologie Hépathique - https://ror.org/05dpfhh73,Interactions Cellulaires et Physiopathologie Hépathique,https://ror.org/05dpfhh73,https://ror.org/02vjkv261,Inserm,Parent,Release +9785,https://github.com/ror-community/ror-updates/issues/9785,Modify the information in an existing ROR record: Interactions Cellulaires et Physiopathologie Hépathique - https://ror.org/05dpfhh73,Inserm,https://ror.org/02vjkv261,https://ror.org/05dpfhh73,Interactions Cellulaires et Physiopathologie Hépathique,Child,Release +9785,https://github.com/ror-community/ror-updates/issues/9785,Modify the information in an existing ROR record: Interactions Cellulaires et Physiopathologie Hépathique - https://ror.org/05dpfhh73,Interactions Cellulaires et Physiopathologie Hépathique,https://ror.org/05dpfhh73,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9785,https://github.com/ror-community/ror-updates/issues/9785,Modify the information in an existing ROR record: Interactions Cellulaires et Physiopathologie Hépathique - https://ror.org/05dpfhh73,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/05dpfhh73,Interactions Cellulaires et Physiopathologie Hépathique,Child,Release +9786,https://github.com/ror-community/ror-updates/issues/9786,Modify the information in an existing ROR record: Laboratoire Aimé Cotton - https://ror.org/021xexe56,Laboratoire Aimé Cotton,https://ror.org/021xexe56,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9786,https://github.com/ror-community/ror-updates/issues/9786,Modify the information in an existing ROR record: Laboratoire Aimé Cotton - https://ror.org/021xexe56,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/021xexe56,Laboratoire Aimé Cotton,Child,Release +9786,https://github.com/ror-community/ror-updates/issues/9786,Modify the information in an existing ROR record: Laboratoire Aimé Cotton - https://ror.org/021xexe56,Laboratoire Aimé Cotton,https://ror.org/021xexe56,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9786,https://github.com/ror-community/ror-updates/issues/9786,Modify the information in an existing ROR record: Laboratoire Aimé Cotton - https://ror.org/021xexe56,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/021xexe56,Laboratoire Aimé Cotton,Child,Release +9787,https://github.com/ror-community/ror-updates/issues/9787,"Modify the information in an existing ROR record: Laboratoire Complexité, Innovation et Activités Motrices et Sportives - https://ror.org/00k3ph542","Laboratoire Complexité, Innovation et Activités Motrices et Sportives",https://ror.org/00k3ph542,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9787,https://github.com/ror-community/ror-updates/issues/9787,"Modify the information in an existing ROR record: Laboratoire Complexité, Innovation et Activités Motrices et Sportives - https://ror.org/00k3ph542",University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/00k3ph542,"Laboratoire Complexité, Innovation et Activités Motrices et Sportives",Child,Release +9788,https://github.com/ror-community/ror-updates/issues/9788,Modify the information in an existing ROR record: Laboratoire de Chimie Physique - https://ror.org/016r2hq43,Laboratoire de Chimie Physique,https://ror.org/016r2hq43,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9788,https://github.com/ror-community/ror-updates/issues/9788,Modify the information in an existing ROR record: Laboratoire de Chimie Physique - https://ror.org/016r2hq43,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/016r2hq43,Laboratoire de Chimie Physique,Child,Release +9788,https://github.com/ror-community/ror-updates/issues/9788,Modify the information in an existing ROR record: Laboratoire de Chimie Physique - https://ror.org/016r2hq43,Laboratoire de Chimie Physique,https://ror.org/016r2hq43,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9788,https://github.com/ror-community/ror-updates/issues/9788,Modify the information in an existing ROR record: Laboratoire de Chimie Physique - https://ror.org/016r2hq43,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/016r2hq43,Laboratoire de Chimie Physique,Child,Release +9789,https://github.com/ror-community/ror-updates/issues/9789,Modify the information in an existing ROR record: Laboratoire de Génie Électrique et Électronique de Paris - https://ror.org/02xnnng09,Laboratoire de Génie Électrique et Électronique de Paris,https://ror.org/02xnnng09,https://ror.org/019tcpt25,CentraleSupélec,Parent,Production +9789,https://github.com/ror-community/ror-updates/issues/9789,Modify the information in an existing ROR record: Laboratoire de Génie Électrique et Électronique de Paris - https://ror.org/02xnnng09,CentraleSupélec,https://ror.org/019tcpt25,https://ror.org/02xnnng09,Laboratoire de Génie Électrique et Électronique de Paris,Child,Release +9789,https://github.com/ror-community/ror-updates/issues/9789,Modify the information in an existing ROR record: Laboratoire de Génie Électrique et Électronique de Paris - https://ror.org/02xnnng09,Laboratoire de Génie Électrique et Électronique de Paris,https://ror.org/02xnnng09,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9789,https://github.com/ror-community/ror-updates/issues/9789,Modify the information in an existing ROR record: Laboratoire de Génie Électrique et Électronique de Paris - https://ror.org/02xnnng09,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02xnnng09,Laboratoire de Génie Électrique et Électronique de Paris,Child,Release +9789,https://github.com/ror-community/ror-updates/issues/9789,Modify the information in an existing ROR record: Laboratoire de Génie Électrique et Électronique de Paris - https://ror.org/02xnnng09,Laboratoire de Génie Électrique et Électronique de Paris,https://ror.org/02xnnng09,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9789,https://github.com/ror-community/ror-updates/issues/9789,Modify the information in an existing ROR record: Laboratoire de Génie Électrique et Électronique de Paris - https://ror.org/02xnnng09,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02xnnng09,Laboratoire de Génie Électrique et Électronique de Paris,Child,Release +9790,https://github.com/ror-community/ror-updates/issues/9790,Modify the information in an existing ROR record: Laboratoire de Physique des Gaz et des Plasmas - https://ror.org/04bgjpg77,Laboratoire de Physique des Gaz et des Plasmas,https://ror.org/04bgjpg77,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9790,https://github.com/ror-community/ror-updates/issues/9790,Modify the information in an existing ROR record: Laboratoire de Physique des Gaz et des Plasmas - https://ror.org/04bgjpg77,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/04bgjpg77,Laboratoire de Physique des Gaz et des Plasmas,Child,Release +9791,https://github.com/ror-community/ror-updates/issues/9791,Modify the information in an existing ROR record: Laboratoire des Signaux & Systèmes - https://ror.org/00skw9v43,Laboratoire des Signaux & Systèmes,https://ror.org/00skw9v43,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9791,https://github.com/ror-community/ror-updates/issues/9791,Modify the information in an existing ROR record: Laboratoire des Signaux & Systèmes - https://ror.org/00skw9v43,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/00skw9v43,Laboratoire des Signaux & Systèmes,Child,Release +9791,https://github.com/ror-community/ror-updates/issues/9791,Modify the information in an existing ROR record: Laboratoire des Signaux & Systèmes - https://ror.org/00skw9v43,Laboratoire des Signaux & Systèmes,https://ror.org/00skw9v43,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9791,https://github.com/ror-community/ror-updates/issues/9791,Modify the information in an existing ROR record: Laboratoire des Signaux & Systèmes - https://ror.org/00skw9v43,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/00skw9v43,Laboratoire des Signaux & Systèmes,Child,Release +9792,https://github.com/ror-community/ror-updates/issues/9792,Modify the information in an existing ROR record: Laboratoire pour l'utilisation des lasers intenses - https://ror.org/002ty1h48,Laboratoire pour l'utilisation des lasers intenses,https://ror.org/002ty1h48,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9792,https://github.com/ror-community/ror-updates/issues/9792,Modify the information in an existing ROR record: Laboratoire pour l'utilisation des lasers intenses - https://ror.org/002ty1h48,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/002ty1h48,Laboratoire pour l'utilisation des lasers intenses,Child,Release +9793,https://github.com/ror-community/ror-updates/issues/9793,Modify the information in an existing ROR record: Laboratory of Solid State Physics - https://ror.org/02dyaew97,Laboratory of Solid State Physics,https://ror.org/02dyaew97,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9793,https://github.com/ror-community/ror-updates/issues/9793,Modify the information in an existing ROR record: Laboratory of Solid State Physics - https://ror.org/02dyaew97,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02dyaew97,Laboratory of Solid State Physics,Child,Release +9793,https://github.com/ror-community/ror-updates/issues/9793,Modify the information in an existing ROR record: Laboratory of Solid State Physics - https://ror.org/02dyaew97,Laboratory of Solid State Physics,https://ror.org/02dyaew97,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9793,https://github.com/ror-community/ror-updates/issues/9793,Modify the information in an existing ROR record: Laboratory of Solid State Physics - https://ror.org/02dyaew97,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02dyaew97,Laboratory of Solid State Physics,Child,Release +9795,https://github.com/ror-community/ror-updates/issues/9795,Modify the information in an existing ROR record: Laboratory of Theoretical Physics and Statistical Models - https://ror.org/00w67e447,Laboratory of Theoretical Physics and Statistical Models,https://ror.org/00w67e447,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9795,https://github.com/ror-community/ror-updates/issues/9795,Modify the information in an existing ROR record: Laboratory of Theoretical Physics and Statistical Models - https://ror.org/00w67e447,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/00w67e447,Laboratory of Theoretical Physics and Statistical Models,Child,Release +9795,https://github.com/ror-community/ror-updates/issues/9795,Modify the information in an existing ROR record: Laboratory of Theoretical Physics and Statistical Models - https://ror.org/00w67e447,Laboratory of Theoretical Physics and Statistical Models,https://ror.org/00w67e447,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9795,https://github.com/ror-community/ror-updates/issues/9795,Modify the information in an existing ROR record: Laboratory of Theoretical Physics and Statistical Models - https://ror.org/00w67e447,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/00w67e447,Laboratory of Theoretical Physics and Statistical Models,Child,Release +9796,https://github.com/ror-community/ror-updates/issues/9796,Modify the information in an existing ROR record: Institut des Neurosciences Paris-Saclay - https://ror.org/002v40q27,Institut des Neurosciences Paris-Saclay,https://ror.org/002v40q27,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9796,https://github.com/ror-community/ror-updates/issues/9796,Modify the information in an existing ROR record: Institut des Neurosciences Paris-Saclay - https://ror.org/002v40q27,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/002v40q27,Institut des Neurosciences Paris-Saclay,Child,Release +9796,https://github.com/ror-community/ror-updates/issues/9796,Modify the information in an existing ROR record: Institut des Neurosciences Paris-Saclay - https://ror.org/002v40q27,Institut des Neurosciences Paris-Saclay,https://ror.org/002v40q27,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9796,https://github.com/ror-community/ror-updates/issues/9796,Modify the information in an existing ROR record: Institut des Neurosciences Paris-Saclay - https://ror.org/002v40q27,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/002v40q27,Institut des Neurosciences Paris-Saclay,Child,Release +9797,https://github.com/ror-community/ror-updates/issues/9797,Modify the information in an existing ROR record: Pathophysiology and Novel Therapies - https://ror.org/01et6g203,Pathophysiology and Novel Therapies,https://ror.org/01et6g203,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9797,https://github.com/ror-community/ror-updates/issues/9797,Modify the information in an existing ROR record: Pathophysiology and Novel Therapies - https://ror.org/01et6g203,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/01et6g203,Pathophysiology and Novel Therapies,Child,Release +9798,https://github.com/ror-community/ror-updates/issues/9798,"Modify the information in an existing ROR record: Systèmes Membranaires, Photobiologie, Stress et Détoxication - https://ror.org/03sypqe31","Systèmes Membranaires, Photobiologie, Stress et Détoxication",https://ror.org/03sypqe31,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9798,https://github.com/ror-community/ror-updates/issues/9798,"Modify the information in an existing ROR record: Systèmes Membranaires, Photobiologie, Stress et Détoxication - https://ror.org/03sypqe31",University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/03sypqe31,"Systèmes Membranaires, Photobiologie, Stress et Détoxication",Child,Release +9798,https://github.com/ror-community/ror-updates/issues/9798,"Modify the information in an existing ROR record: Systèmes Membranaires, Photobiologie, Stress et Détoxication - https://ror.org/03sypqe31","Systèmes Membranaires, Photobiologie, Stress et Détoxication",https://ror.org/03sypqe31,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9798,https://github.com/ror-community/ror-updates/issues/9798,"Modify the information in an existing ROR record: Systèmes Membranaires, Photobiologie, Stress et Détoxication - https://ror.org/03sypqe31",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/03sypqe31,"Systèmes Membranaires, Photobiologie, Stress et Détoxication",Child,Release +9798,https://github.com/ror-community/ror-updates/issues/9798,"Modify the information in an existing ROR record: Systèmes Membranaires, Photobiologie, Stress et Détoxication - https://ror.org/03sypqe31","Systèmes Membranaires, Photobiologie, Stress et Détoxication",https://ror.org/03sypqe31,https://ror.org/00jjx8s55,Atomic Energy and Alternative Energies Commission,Parent,Production +9798,https://github.com/ror-community/ror-updates/issues/9798,"Modify the information in an existing ROR record: Systèmes Membranaires, Photobiologie, Stress et Détoxication - https://ror.org/03sypqe31",Atomic Energy and Alternative Energies Commission,https://ror.org/00jjx8s55,https://ror.org/03sypqe31,"Systèmes Membranaires, Photobiologie, Stress et Détoxication",Child,Release +9794,https://github.com/ror-community/ror-updates/issues/9794,Modify the information in an existing ROR record: Laboratory of Systems & Applications of Information & Energy Technologies - https://ror.org/03vam5b06,Laboratory of Systems & Applications of Information & Energy Technologies,https://ror.org/03vam5b06,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9794,https://github.com/ror-community/ror-updates/issues/9794,Modify the information in an existing ROR record: Laboratory of Systems & Applications of Information & Energy Technologies - https://ror.org/03vam5b06,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/03vam5b06,Laboratory of Systems & Applications of Information & Energy Technologies,Child,Release +9794,https://github.com/ror-community/ror-updates/issues/9794,Modify the information in an existing ROR record: Laboratory of Systems & Applications of Information & Energy Technologies - https://ror.org/03vam5b06,Laboratory of Systems & Applications of Information & Energy Technologies,https://ror.org/03vam5b06,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9794,https://github.com/ror-community/ror-updates/issues/9794,Modify the information in an existing ROR record: Laboratory of Systems & Applications of Information & Energy Technologies - https://ror.org/03vam5b06,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/03vam5b06,Laboratory of Systems & Applications of Information & Energy Technologies,Child,Release +9799,https://github.com/ror-community/ror-updates/issues/9799,Modify the information in an existing ROR record: Unité Mixte de Physique CNRS/Thales - https://ror.org/02erddr56,Unité Mixte de Physique CNRS/Thales,https://ror.org/02erddr56,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9799,https://github.com/ror-community/ror-updates/issues/9799,Modify the information in an existing ROR record: Unité Mixte de Physique CNRS/Thales - https://ror.org/02erddr56,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02erddr56,Unité Mixte de Physique CNRS/Thales,Child,Release +9799,https://github.com/ror-community/ror-updates/issues/9799,Modify the information in an existing ROR record: Unité Mixte de Physique CNRS/Thales - https://ror.org/02erddr56,Unité Mixte de Physique CNRS/Thales,https://ror.org/02erddr56,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9799,https://github.com/ror-community/ror-updates/issues/9799,Modify the information in an existing ROR record: Unité Mixte de Physique CNRS/Thales - https://ror.org/02erddr56,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02erddr56,Unité Mixte de Physique CNRS/Thales,Child,Release +9800,https://github.com/ror-community/ror-updates/issues/9800,"Modify the information in an existing ROR record: Écologie, Systématique et Évolution - https://ror.org/00kk89y84","Écologie, Systématique et Évolution",https://ror.org/00kk89y84,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9800,https://github.com/ror-community/ror-updates/issues/9800,"Modify the information in an existing ROR record: Écologie, Systématique et Évolution - https://ror.org/00kk89y84",University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/00kk89y84,"Écologie, Systématique et Évolution",Child,Release +9800,https://github.com/ror-community/ror-updates/issues/9800,"Modify the information in an existing ROR record: Écologie, Systématique et Évolution - https://ror.org/00kk89y84","Écologie, Systématique et Évolution",https://ror.org/00kk89y84,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9800,https://github.com/ror-community/ror-updates/issues/9800,"Modify the information in an existing ROR record: Écologie, Systématique et Évolution - https://ror.org/00kk89y84",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/00kk89y84,"Écologie, Systématique et Évolution",Child,Release +9801,https://github.com/ror-community/ror-updates/issues/9801,"Modify the information in an existing ROR record: Évolution, Génomes, Comportement, Écologie - https://ror.org/011abem59","Évolution, Génomes, Comportement, Écologie",https://ror.org/011abem59,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9801,https://github.com/ror-community/ror-updates/issues/9801,"Modify the information in an existing ROR record: Évolution, Génomes, Comportement, Écologie - https://ror.org/011abem59",University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/011abem59,"Évolution, Génomes, Comportement, Écologie",Child,Release +9801,https://github.com/ror-community/ror-updates/issues/9801,"Modify the information in an existing ROR record: Évolution, Génomes, Comportement, Écologie - https://ror.org/011abem59","Évolution, Génomes, Comportement, Écologie",https://ror.org/011abem59,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9801,https://github.com/ror-community/ror-updates/issues/9801,"Modify the information in an existing ROR record: Évolution, Génomes, Comportement, Écologie - https://ror.org/011abem59",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/011abem59,"Évolution, Génomes, Comportement, Écologie",Child,Release +9802,https://github.com/ror-community/ror-updates/issues/9802,Modify the information in an existing ROR record: Agronomie - https://ror.org/02cptmd52,Agronomie,https://ror.org/02cptmd52,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9802,https://github.com/ror-community/ror-updates/issues/9802,Modify the information in an existing ROR record: Agronomie - https://ror.org/02cptmd52,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02cptmd52,Agronomie,Child,Release +9802,https://github.com/ror-community/ror-updates/issues/9802,Modify the information in an existing ROR record: Agronomie - https://ror.org/02cptmd52,Agronomie,https://ror.org/02cptmd52,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9802,https://github.com/ror-community/ror-updates/issues/9802,Modify the information in an existing ROR record: Agronomie - https://ror.org/02cptmd52,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02cptmd52,Agronomie,Child,Release +9806,https://github.com/ror-community/ror-updates/issues/9806,Modify the information in an existing ROR record: Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique - https://ror.org/035gq6r08,Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique,https://ror.org/035gq6r08,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9806,https://github.com/ror-community/ror-updates/issues/9806,Modify the information in an existing ROR record: Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique - https://ror.org/035gq6r08,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/035gq6r08,Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique,Child,Release +9830,https://github.com/ror-community/ror-updates/issues/9830,Modify the information in an existing ROR record: Fishing in Ireland - https://ror.org/04ma29860,Fishing in Ireland,https://ror.org/04ma29860,https://ror.org/022rydv31,Inland Fisheries Ireland,Successor,Release +9825,https://github.com/ror-community/ror-updates/issues/9825,"Modify the information in an existing ROR record: +IImmune Response and Development in Insects https://ror.org/030przz70 +",Immune Response and Development in Insects,https://ror.org/030przz70,https://ror.org/05qpmg879,Institute for Molecular and Cellular Biology,Parent,Production +9825,https://github.com/ror-community/ror-updates/issues/9825,"Modify the information in an existing ROR record: +IImmune Response and Development in Insects https://ror.org/030przz70 +",Institute for Molecular and Cellular Biology,https://ror.org/05qpmg879,https://ror.org/030przz70,Immune Response and Development in Insects,Child,Release +9825,https://github.com/ror-community/ror-updates/issues/9825,"Modify the information in an existing ROR record: +IImmune Response and Development in Insects https://ror.org/030przz70 +",Immune Response and Development in Insects,https://ror.org/030przz70,https://ror.org/02vjkv261,Inserm,Parent,Release +9825,https://github.com/ror-community/ror-updates/issues/9825,"Modify the information in an existing ROR record: +IImmune Response and Development in Insects https://ror.org/030przz70 +",Inserm,https://ror.org/02vjkv261,https://ror.org/030przz70,Immune Response and Development in Insects,Child,Release +9825,https://github.com/ror-community/ror-updates/issues/9825,"Modify the information in an existing ROR record: +IImmune Response and Development in Insects https://ror.org/030przz70 +",Immune Response and Development in Insects,https://ror.org/030przz70,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9825,https://github.com/ror-community/ror-updates/issues/9825,"Modify the information in an existing ROR record: +IImmune Response and Development in Insects https://ror.org/030przz70 +",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/030przz70,Immune Response and Development in Insects,Child,Release +9891,https://github.com/ror-community/ror-updates/issues/9891,"Modify the information in an existing ROR record: + Centre d'Études Spatiales de la Biosphère https://ror.org/01225hq90 +",Centre d'Études Spatiales de la Biosphère,https://ror.org/01225hq90,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9891,https://github.com/ror-community/ror-updates/issues/9891,"Modify the information in an existing ROR record: + Centre d'Études Spatiales de la Biosphère https://ror.org/01225hq90 +",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/01225hq90,Centre d'Études Spatiales de la Biosphère,Child,Release +9891,https://github.com/ror-community/ror-updates/issues/9891,"Modify the information in an existing ROR record: + Centre d'Études Spatiales de la Biosphère https://ror.org/01225hq90 +",Centre d'Études Spatiales de la Biosphère,https://ror.org/01225hq90,https://ror.org/003vg9w96,"National Research Institute for Agriculture, Food and Environment",Parent,Release +9891,https://github.com/ror-community/ror-updates/issues/9891,"Modify the information in an existing ROR record: + Centre d'Études Spatiales de la Biosphère https://ror.org/01225hq90 +","National Research Institute for Agriculture, Food and Environment",https://ror.org/003vg9w96,https://ror.org/01225hq90,Centre d'Études Spatiales de la Biosphère,Child,Release +9901,https://github.com/ror-community/ror-updates/issues/9901,"Modify the information in an existing ROR record: +LEGOS https://ror.org/02chvqy57 +",LEGOS,https://ror.org/02chvqy57,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9901,https://github.com/ror-community/ror-updates/issues/9901,"Modify the information in an existing ROR record: +LEGOS https://ror.org/02chvqy57 +",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02chvqy57,LEGOS,Child,Release +9905,https://github.com/ror-community/ror-updates/issues/9905,"Modify the information in an existing ROR record: +Northwestern University in Qatar https://ror.org/006m74d95 +",Northwestern University in Qatar,https://ror.org/006m74d95,https://ror.org/000e0be47,Northwestern University,Related,Production +9905,https://github.com/ror-community/ror-updates/issues/9905,"Modify the information in an existing ROR record: +Northwestern University in Qatar https://ror.org/006m74d95 +",Northwestern University,https://ror.org/000e0be47,https://ror.org/006m74d95,Northwestern University in Qatar,Related,Release +9906,https://github.com/ror-community/ror-updates/issues/9906,"Modify the information in an existing ROR record: +Northwestern Medicine https://ror.org/04fzwnh64 +",Northwestern Medicine,https://ror.org/04fzwnh64,https://ror.org/000e0be47,Northwestern University,Related,Production +9906,https://github.com/ror-community/ror-updates/issues/9906,"Modify the information in an existing ROR record: +Northwestern Medicine https://ror.org/04fzwnh64 +",Northwestern University,https://ror.org/000e0be47,https://ror.org/04fzwnh64,Northwestern Medicine,Related,Release +9907,https://github.com/ror-community/ror-updates/issues/9907,"Modify the information in an existing ROR record: +Robert H. Lurie Comprehensive Cancer Center of Northwestern University https://ror.org/02p4far57 +",Robert H. Lurie Comprehensive Cancer Center of Northwestern University,https://ror.org/02p4far57,https://ror.org/000e0be47,Northwestern University,Related,Production +9907,https://github.com/ror-community/ror-updates/issues/9907,"Modify the information in an existing ROR record: +Robert H. Lurie Comprehensive Cancer Center of Northwestern University https://ror.org/02p4far57 +",Northwestern University,https://ror.org/000e0be47,https://ror.org/02p4far57,Robert H. Lurie Comprehensive Cancer Center of Northwestern University,Related,Release +9909,https://github.com/ror-community/ror-updates/issues/9909,"Modify the information in an existing ROR record: +Department of Water https://ror.org/017wrhq72 +",Department of Water,https://ror.org/017wrhq72,https://ror.org/0508kew31,Department of Water and Environmental Regulation,Successor,Production +9909,https://github.com/ror-community/ror-updates/issues/9909,"Modify the information in an existing ROR record: +Department of Water https://ror.org/017wrhq72 +",Department of Water and Environmental Regulation,https://ror.org/0508kew31,https://ror.org/017wrhq72,Department of Water,Predecessor,Release +9918,https://github.com/ror-community/ror-updates/issues/9918,Modify the information in an existing ROR record: Austrian BioImaging/CMI - https://ror.org/028696h48,Austrian BioImaging/CMI,https://ror.org/028696h48,https://ror.org/05n3x4p02,Medical University of Vienna,Related,Release +9918,https://github.com/ror-community/ror-updates/issues/9918,Modify the information in an existing ROR record: Austrian BioImaging/CMI - https://ror.org/028696h48,Medical University of Vienna,https://ror.org/05n3x4p02,https://ror.org/028696h48,Austrian BioImaging/CMI,Related,Release +9928,https://github.com/ror-community/ror-updates/issues/9928,Modify the information in an existing ROR record: Office of Electricity Delivery and Energy Reliability - https://ror.org/03rd4h240,Office of Electricity Delivery and Energy Reliability,https://ror.org/03rd4h240,https://ror.org/02y6dp041,Office of Electricity,Successor,Release +9931,https://github.com/ror-community/ror-updates/issues/9931,Modify the information in an existing ROR record: Materials Sciences and Engineering Division - https://ror.org/05dnzrj50,Materials Sciences and Engineering Division,https://ror.org/05dnzrj50,https://ror.org/05mg91w61,Office of Basic Energy Sciences,Successor,Release +9949,https://github.com/ror-community/ror-updates/issues/9949,Modify the information in an existing ROR record: New Mexico State University Alamogordo - https://ror.org/007sts724,New Mexico State University Alamogordo,https://ror.org/007sts724,https://ror.org/00hpz7z43,New Mexico State University,Parent,Production +9949,https://github.com/ror-community/ror-updates/issues/9949,Modify the information in an existing ROR record: New Mexico State University Alamogordo - https://ror.org/007sts724,New Mexico State University,https://ror.org/00hpz7z43,https://ror.org/007sts724,New Mexico State University Alamogordo,Child,Release +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Università della Svizzera italiana,https://ror.org/03c4atk17,https://ror.org/01dpyn972,Institute of Oncology Research,Child,Production +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Institute of Oncology Research,https://ror.org/01dpyn972,https://ror.org/03c4atk17,Università della Svizzera italiana,Parent,Release +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Università della Svizzera italiana,https://ror.org/03c4atk17,https://ror.org/05gfswd81,Institute for Research in Biomedicine,Child,Production +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Institute for Research in Biomedicine,https://ror.org/05gfswd81,https://ror.org/03c4atk17,Università della Svizzera italiana,Parent,Release +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Università della Svizzera italiana,https://ror.org/03c4atk17,https://ror.org/013355g38,Dalle Molle Institute for Artificial Intelligence Research,Child,Production +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Dalle Molle Institute for Artificial Intelligence Research,https://ror.org/013355g38,https://ror.org/03c4atk17,Università della Svizzera italiana,Parent,Release +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Università della Svizzera italiana,https://ror.org/03c4atk17,https://ror.org/02k3baz05,Facoltà di Teologia di Lugano,Child,Production +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Facoltà di Teologia di Lugano,https://ror.org/02k3baz05,https://ror.org/03c4atk17,Università della Svizzera italiana,Parent,Release +9992,https://github.com/ror-community/ror-updates/issues/9992,"Modify the information in an existing ROR record: +Elite School of Optometry https://ror.org/00vvz3k68 +",Elite School of Optometry,https://ror.org/00vvz3k68,https://ror.org/032jk8892,SASTRA University,Related,Production +9992,https://github.com/ror-community/ror-updates/issues/9992,"Modify the information in an existing ROR record: +Elite School of Optometry https://ror.org/00vvz3k68 +",SASTRA University,https://ror.org/032jk8892,https://ror.org/00vvz3k68,Elite School of Optometry,Related,Release +10017,https://github.com/ror-community/ror-updates/issues/10017,Modify the information in an existing ROR record: Barcelonabeta - https://ror.org/03k4wdb90,Barcelonabeta,https://ror.org/03k4wdb90,https://ror.org/04n0g0b29,Pompeu Fabra University,Parent,Release +10017,https://github.com/ror-community/ror-updates/issues/10017,Modify the information in an existing ROR record: Barcelonabeta - https://ror.org/03k4wdb90,Pompeu Fabra University,https://ror.org/04n0g0b29,https://ror.org/03k4wdb90,Barcelonabeta,Child,Release +10017,https://github.com/ror-community/ror-updates/issues/10017,Modify the information in an existing ROR record: Barcelonabeta - https://ror.org/03k4wdb90,Barcelonabeta,https://ror.org/03k4wdb90,https://ror.org/01nry9c15,Pasqual Maragall Foundation,Parent,Release +10017,https://github.com/ror-community/ror-updates/issues/10017,Modify the information in an existing ROR record: Barcelonabeta - https://ror.org/03k4wdb90,Pasqual Maragall Foundation,https://ror.org/01nry9c15,https://ror.org/03k4wdb90,Barcelonabeta,Child,Release +10018,https://github.com/ror-community/ror-updates/issues/10018,Modify the information in an existing ROR record: Barcelonaβeta Brain Research Center - https://ror.org/023hj4e57,Barcelonaβeta Brain Research Center,https://ror.org/023hj4e57,https://ror.org/03k4wdb90,Barcelonaβeta Brain Research Center,Successor,Release +9409,https://github.com/ror-community/ror-updates/issues/9409,"Add a new organization to ROR: + +Nestlé Health Science",Nestlé Health Science (United States),https://ror.org/03y8jvk69,https://ror.org/01v5xwf23,Nestlé (Switzerland),Parent,Production +9409,https://github.com/ror-community/ror-updates/issues/9409,"Add a new organization to ROR: + +Nestlé Health Science",Nestlé (Switzerland),https://ror.org/01v5xwf23,https://ror.org/03y8jvk69,Nestlé Health Science (United States),Child,Release +9418,https://github.com/ror-community/ror-updates/issues/9418,"Add a new organization to ROR: + +Ninja Theory",Ninja Theory (United Kingdom),https://ror.org/04xrsn650,https://ror.org/00d0nc645,Microsoft (United States),Parent,Production +9418,https://github.com/ror-community/ror-updates/issues/9418,"Add a new organization to ROR: + +Ninja Theory",Microsoft (United States),https://ror.org/00d0nc645,https://ror.org/04xrsn650,Ninja Theory (United Kingdom),Child,Release +8479,https://github.com/ror-community/ror-updates/issues/8479,Add a new organization to ROR: State Key Laboratory of Aerodynamics,State Key Laboratory of Aerodynamics,https://ror.org/055rh9p75,https://ror.org/00jma8s40,China Aerodynamics Research and Development Center,Parent,Production +8479,https://github.com/ror-community/ror-updates/issues/8479,Add a new organization to ROR: State Key Laboratory of Aerodynamics,China Aerodynamics Research and Development Center,https://ror.org/00jma8s40,https://ror.org/055rh9p75,State Key Laboratory of Aerodynamics,Child,Release +8329,https://github.com/ror-community/ror-updates/issues/8329,Add a new organization to ROR: State Key Laboratory of Automobile Simulation and Control,State Key Laboratory of Automotive Simulation and Control,https://ror.org/00b67z867,https://ror.org/00js3aw79,Jilin University,Parent,Production +8329,https://github.com/ror-community/ror-updates/issues/8329,Add a new organization to ROR: State Key Laboratory of Automobile Simulation and Control,Jilin University,https://ror.org/00js3aw79,https://ror.org/00b67z867,State Key Laboratory of Automotive Simulation and Control,Child,Release +8393,https://github.com/ror-community/ror-updates/issues/8393,Add a new organization to ROR: State Key Laboratory of Quantum Optics and Quantum Optics Devices,State Key Laboratory of Quantum Optics and Quantum Optics Devices,https://ror.org/035z18f46,https://ror.org/03y3e3s17,Shanxi University,Parent,Production +8393,https://github.com/ror-community/ror-updates/issues/8393,Add a new organization to ROR: State Key Laboratory of Quantum Optics and Quantum Optics Devices,Shanxi University,https://ror.org/03y3e3s17,https://ror.org/035z18f46,State Key Laboratory of Quantum Optics and Quantum Optics Devices,Child,Release +8458,https://github.com/ror-community/ror-updates/issues/8458,Add a new organization to ROR: State Key Laboratory of Virtual Reality Technology and Systems,State Key Laboratory of Virtual Reality Technology and Systems,https://ror.org/0009eea46,https://ror.org/00wk2mp56,Beihang University,Parent,Production +8458,https://github.com/ror-community/ror-updates/issues/8458,Add a new organization to ROR: State Key Laboratory of Virtual Reality Technology and Systems,Beihang University,https://ror.org/00wk2mp56,https://ror.org/0009eea46,State Key Laboratory of Virtual Reality Technology and Systems,Child,Release +8478,https://github.com/ror-community/ror-updates/issues/8478,Add a new organization to ROR: State Key Laboratory of Power System and Generation Equipment,State Key Laboratory of Power System and Generation Equipment,https://ror.org/043evzg22,https://ror.org/03cve4549,Tsinghua University,Parent,Production +8478,https://github.com/ror-community/ror-updates/issues/8478,Add a new organization to ROR: State Key Laboratory of Power System and Generation Equipment,Tsinghua University,https://ror.org/03cve4549,https://ror.org/043evzg22,State Key Laboratory of Power System and Generation Equipment,Child,Release +9494,https://github.com/ror-community/ror-updates/issues/9494,Add a new organization to ROR: Bloomsbury (United States),Bloomsbury (United States),https://ror.org/042vxm455,https://ror.org/04yyy0y35,Bloomsbury Publishing (United Kingdom),Parent,Production +9494,https://github.com/ror-community/ror-updates/issues/9494,Add a new organization to ROR: Bloomsbury (United States),Bloomsbury Publishing (United Kingdom),https://ror.org/04yyy0y35,https://ror.org/042vxm455,Bloomsbury (United States),Child,Release +9499,https://github.com/ror-community/ror-updates/issues/9499,"Add a new organization to ROR: + +University National Center of Scientific and Technical Documentation",University National Center of Scientific and Technical Documentation,https://ror.org/03hc27x54,https://ror.org/05v1m8q81,Ministry of Higher Education and Scientific Research,Parent,Production +9499,https://github.com/ror-community/ror-updates/issues/9499,"Add a new organization to ROR: + +University National Center of Scientific and Technical Documentation",Ministry of Higher Education and Scientific Research,https://ror.org/05v1m8q81,https://ror.org/03hc27x54,University National Center of Scientific and Technical Documentation,Child,Release +9500,https://github.com/ror-community/ror-updates/issues/9500,"Add a new organization to ROR: + +University Hospitals Bristol and Weston NHS Foundation Trust",University Hospitals Bristol and Weston NHS Foundation Trust,https://ror.org/03jzzxg14,https://ror.org/04nm1cv11,University Hospitals Bristol NHS Foundation Trust,Predecessor,Release +9500,https://github.com/ror-community/ror-updates/issues/9500,"Add a new organization to ROR: + +University Hospitals Bristol and Weston NHS Foundation Trust",University Hospitals Bristol NHS Foundation Trust,https://ror.org/04nm1cv11,https://ror.org/03jzzxg14,University Hospitals Bristol and Weston NHS Foundation Trust,Successor,Release +9500,https://github.com/ror-community/ror-updates/issues/9500,"Add a new organization to ROR: + +University Hospitals Bristol and Weston NHS Foundation Trust",University Hospitals Bristol and Weston NHS Foundation Trust,https://ror.org/03jzzxg14,https://ror.org/03fpf5m04,Weston Area Health NHS Trust,Predecessor,Release +9500,https://github.com/ror-community/ror-updates/issues/9500,"Add a new organization to ROR: + +University Hospitals Bristol and Weston NHS Foundation Trust",Weston Area Health NHS Trust,https://ror.org/03fpf5m04,https://ror.org/03jzzxg14,University Hospitals Bristol and Weston NHS Foundation Trust,Successor,Release +9500,https://github.com/ror-community/ror-updates/issues/9500,"Add a new organization to ROR: + +University Hospitals Bristol and Weston NHS Foundation Trust",University Hospitals Bristol and Weston NHS Foundation Trust,https://ror.org/03jzzxg14,https://ror.org/03mc19e15,Weston General Hospital,Child,Production +9500,https://github.com/ror-community/ror-updates/issues/9500,"Add a new organization to ROR: + +University Hospitals Bristol and Weston NHS Foundation Trust",Weston General Hospital,https://ror.org/03mc19e15,https://ror.org/03jzzxg14,University Hospitals Bristol and Weston NHS Foundation Trust,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/05g2hd893,Beaumont Health,Predecessor,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Beaumont Health,https://ror.org/05g2hd893,https://ror.org/02hb5yj49,Corewell Health,Successor,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/02ahxdd04,Spectrum Health,Predecessor,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Spectrum Health,https://ror.org/02ahxdd04,https://ror.org/02hb5yj49,Corewell Health,Successor,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/02x3f7722,Lakeland Health,Predecessor,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Lakeland Health,https://ror.org/02x3f7722,https://ror.org/02hb5yj49,Corewell Health,Successor,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/05x643e19,Corewell Health Butterworth Hospital,Child,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health Butterworth Hospital,https://ror.org/05x643e19,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/03bk8p931,Helen DeVos Children's Hospital,Child,Production +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Helen DeVos Children's Hospital,https://ror.org/03bk8p931,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/00qy68j92,Corewell Health Blodgett Hospital,Child,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health Blodgett Hospital,https://ror.org/00qy68j92,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/04xcq9q51,Corewell Health Reed City Hospital,Child,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health Reed City Hospital,https://ror.org/04xcq9q51,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/053jm8142,Corewell Health Zeeland Hospital,Child,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health Zeeland Hospital,https://ror.org/053jm8142,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/03nr10290,Corewell Health Children's,Child,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health Children's,https://ror.org/03nr10290,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/03x4pp342,"Beaumont Hospital, Dearborn",Child,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,"Beaumont Hospital, Dearborn",https://ror.org/03x4pp342,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/058sakv40,Corewell Health William Beaumont University Hospital,Child,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health William Beaumont University Hospital,https://ror.org/058sakv40,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/03artm726,"Beaumont Hospital, Royal Oak",Child,Production +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,"Beaumont Hospital, Royal Oak",https://ror.org/03artm726,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/05x9ffc66,"Beaumont Hospital, Troy",Child,Production +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,"Beaumont Hospital, Troy",https://ror.org/05x9ffc66,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/02j9n6e35,ALBA Synchrotron (Spain),Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",ALBA Synchrotron (Spain),https://ror.org/02j9n6e35,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/01js2sh04,Deutsches Elektronen-Synchrotron DESY,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Deutsches Elektronen-Synchrotron DESY,https://ror.org/01js2sh04,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/05etxs293,Diamond Light Source,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Diamond Light Source,https://ror.org/05etxs293,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/01c3rrh15,Elettra-Sincrotrone Trieste S.C.p.A.,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Elettra-Sincrotrone Trieste S.C.p.A.,https://ror.org/01c3rrh15,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/01wp2jz98,European X-Ray Free-Electron Laser,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",European X-Ray Free-Electron Laser,https://ror.org/01wp2jz98,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/03tkwyq76,FELIX Laboratory,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",FELIX Laboratory,https://ror.org/03tkwyq76,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/02aj13c28,Helmholtz-Zentrum Berlin für Materialien und Energie,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Helmholtz-Zentrum Berlin für Materialien und Energie,https://ror.org/02aj13c28,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/01zy2cs03,Helmholtz-Zentrum Dresden-Rossendorf,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Helmholtz-Zentrum Dresden-Rossendorf,https://ror.org/01zy2cs03,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/005ta0471,Istituto Nazionale di Fisica Nucleare,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Istituto Nazionale di Fisica Nucleare,https://ror.org/005ta0471,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/03q28x580,MAX IV Laboratory,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",MAX IV Laboratory,https://ror.org/03q28x580,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/03eh3y714,Paul Scherrer Institute,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Paul Scherrer Institute,https://ror.org/03eh3y714,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/05r3f7h03,Physikalisch-Technische Bundesanstalt,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Physikalisch-Technische Bundesanstalt,https://ror.org/05r3f7h03,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/01ydb3330,Soleil Synchrotron,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Soleil Synchrotron,https://ror.org/01ydb3330,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/01ydb3330,Soleil Synchrotron,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Soleil Synchrotron,https://ror.org/01ydb3330,https://ror.org/04wcn4e27,LEAPS,Related,Release +9690,https://github.com/ror-community/ror-updates/issues/9690,Add a new organization to ROR - Institute of Chinese Materia Medica,Institute of Chinese Materia Medica,https://ror.org/04kn56m50,https://ror.org/02drdmm93,Chinese Academy of Medical Sciences & Peking Union Medical College,Parent,Production +9690,https://github.com/ror-community/ror-updates/issues/9690,Add a new organization to ROR - Institute of Chinese Materia Medica,Chinese Academy of Medical Sciences & Peking Union Medical College,https://ror.org/02drdmm93,https://ror.org/04kn56m50,Institute of Chinese Materia Medica,Child,Release +9695,https://github.com/ror-community/ror-updates/issues/9695,Add a new organization to ROR: China Electric Power Research Institute,China Electric Power Research Institute,https://ror.org/05ehpzy81,https://ror.org/05twwhs70,State Grid Corporation of China (China),Parent,Production +9695,https://github.com/ror-community/ror-updates/issues/9695,Add a new organization to ROR: China Electric Power Research Institute,State Grid Corporation of China (China),https://ror.org/05twwhs70,https://ror.org/05ehpzy81,China Electric Power Research Institute,Child,Release +9702,https://github.com/ror-community/ror-updates/issues/9702,"Add a new organization to ROR: + +Deutsche Institut für angewandte Pflegeforschung e.V.",Deutsche Institut für angewandte Pflegeforschung e.V.,https://ror.org/02bjrmf75,https://ror.org/024nr0776,Catholic University of Applied Sciences of North Rhine – Westphalia,Related,Production +9702,https://github.com/ror-community/ror-updates/issues/9702,"Add a new organization to ROR: + +Deutsche Institut für angewandte Pflegeforschung e.V.",Catholic University of Applied Sciences of North Rhine – Westphalia,https://ror.org/024nr0776,https://ror.org/02bjrmf75,Deutsche Institut für angewandte Pflegeforschung e.V.,Related,Release +9718,https://github.com/ror-community/ror-updates/issues/9718,Add a new organization to ROR - Cegid,Cegid (France),https://ror.org/03eewzy02,https://ror.org/03kevw840,Meta4 (Spain),Predecessor,Release +9734,https://github.com/ror-community/ror-updates/issues/9734,Add a new organization to ROR: DRACE GEOCISA S.A. (Spain),DRACE GEOCISA S.A. (Spain),https://ror.org/03gf4dx13,https://ror.org/0040z4m89,Geocisa (Spain),Predecessor,Release +9734,https://github.com/ror-community/ror-updates/issues/9734,Add a new organization to ROR: DRACE GEOCISA S.A. (Spain),Geocisa (Spain),https://ror.org/0040z4m89,https://ror.org/03gf4dx13,DRACE GEOCISA S.A. (Spain),Successor,Release +9741,https://github.com/ror-community/ror-updates/issues/9741,Add a new organization to ROR: Cesefor,Cesefor,https://ror.org/057k6gq03,https://ror.org/03ry8wj79,Instituto de Biotecnología de León,Predecessor,Production +9754,https://github.com/ror-community/ror-updates/issues/9754,Add a new organization to ROR - Spanish National Health System,Sistema Nacional de Salud,https://ror.org/026z37f85,https://ror.org/04t4b6y41,Instituto Nacional de la Salud,Predecessor,Release +9754,https://github.com/ror-community/ror-updates/issues/9754,Add a new organization to ROR - Spanish National Health System,Sistema Nacional de Salud,https://ror.org/026z37f85,https://ror.org/00y6q9n79,Ministry of Health,Parent,Production +9754,https://github.com/ror-community/ror-updates/issues/9754,Add a new organization to ROR - Spanish National Health System,Ministry of Health,https://ror.org/00y6q9n79,https://ror.org/026z37f85,Sistema Nacional de Salud,Child,Release +9836,https://github.com/ror-community/ror-updates/issues/9836,"Add a new organization to ROR: + +Médecine Cardiovasculaire Translationnelle",Médecine Cardiovasculaire Translationnelle,https://ror.org/010e21634,https://ror.org/00pg6eq24,University of Strasbourg,Parent,Production +9836,https://github.com/ror-community/ror-updates/issues/9836,"Add a new organization to ROR: + +Médecine Cardiovasculaire Translationnelle",University of Strasbourg,https://ror.org/00pg6eq24,https://ror.org/010e21634,Médecine Cardiovasculaire Translationnelle,Child,Release +9835,https://github.com/ror-community/ror-updates/issues/9835,Add a new organization to ROR: Hospital Universitario de Toledo,Hospital Universitario de Toledo,https://ror.org/00wxgxz56,https://ror.org/0289cxp23,Hospital Virgen de la Salud,Predecessor,Release +9835,https://github.com/ror-community/ror-updates/issues/9835,Add a new organization to ROR: Hospital Universitario de Toledo,Hospital Virgen de la Salud,https://ror.org/0289cxp23,https://ror.org/00wxgxz56,Hospital Universitario de Toledo,Successor,Release +9832,https://github.com/ror-community/ror-updates/issues/9832,"Add a new organization to ROR: + +NFDI4DS",NFDI4DS,https://ror.org/00bb4nn95,https://ror.org/05qj6w324,Nationale Forschungsdateninfrastruktur,Parent,Production +9832,https://github.com/ror-community/ror-updates/issues/9832,"Add a new organization to ROR: + +NFDI4DS",Nationale Forschungsdateninfrastruktur,https://ror.org/05qj6w324,https://ror.org/00bb4nn95,NFDI4DS,Child,Release +9854,https://github.com/ror-community/ror-updates/issues/9854,"Add a new organization to ROR: + +Wales Centre for Public Policy",Wales Centre for Public Policy,https://ror.org/03y0ymy78,https://ror.org/05j5g1b69,Public Policy Institute for Wales,Predecessor,Release +9854,https://github.com/ror-community/ror-updates/issues/9854,"Add a new organization to ROR: + +Wales Centre for Public Policy",Public Policy Institute for Wales,https://ror.org/05j5g1b69,https://ror.org/03y0ymy78,Wales Centre for Public Policy,Successor,Release +9854,https://github.com/ror-community/ror-updates/issues/9854,"Add a new organization to ROR: + +Wales Centre for Public Policy",Wales Centre for Public Policy,https://ror.org/03y0ymy78,https://ror.org/03kk7td41,Cardiff University,Related,Production +9854,https://github.com/ror-community/ror-updates/issues/9854,"Add a new organization to ROR: + +Wales Centre for Public Policy",Cardiff University,https://ror.org/03kk7td41,https://ror.org/03y0ymy78,Wales Centre for Public Policy,Related,Release +9855,https://github.com/ror-community/ror-updates/issues/9855,"Add a new organization to ROR: + +Escuela Universitaria de Magisterio Begoñako Andra Mari",Escuela Universitaria de Magisterio Begoñako Andra Mari,https://ror.org/009xdmc59,https://ror.org/00ne6sr39,Universidad de Deusto,Related,Production +9855,https://github.com/ror-community/ror-updates/issues/9855,"Add a new organization to ROR: + +Escuela Universitaria de Magisterio Begoñako Andra Mari",Universidad de Deusto,https://ror.org/00ne6sr39,https://ror.org/009xdmc59,Escuela Universitaria de Magisterio Begoñako Andra Mari,Related,Release +9874,https://github.com/ror-community/ror-updates/issues/9874,Add a new organization to ROR: Cégep Beauce-Appalaches,Cégep Beauce-Appalaches,https://ror.org/05sz3st37,https://ror.org/02805zw73,Hôpital d'Youville de Sherbrooke,Parent,Production +9874,https://github.com/ror-community/ror-updates/issues/9874,Add a new organization to ROR: Cégep Beauce-Appalaches,Hôpital d'Youville de Sherbrooke,https://ror.org/02805zw73,https://ror.org/05sz3st37,Cégep Beauce-Appalaches,Child,Release +9874,https://github.com/ror-community/ror-updates/issues/9874,Add a new organization to ROR: Cégep Beauce-Appalaches,Cégep Beauce-Appalaches,https://ror.org/05sz3st37,https://ror.org/02805zw73,Hôpital d'Youville de Sherbrooke,Child,Production +9874,https://github.com/ror-community/ror-updates/issues/9874,Add a new organization to ROR: Cégep Beauce-Appalaches,Hôpital d'Youville de Sherbrooke,https://ror.org/02805zw73,https://ror.org/05sz3st37,Cégep Beauce-Appalaches,Parent,Release +9873,https://github.com/ror-community/ror-updates/issues/9873,Add a new organization to ROR: Institut de tourisme et d'hôtellerie du Québec [ITHQ],Institut de tourisme et d'hôtellerie du Québec,https://ror.org/02w3bnx54,https://ror.org/05hqvvq43,Government of Northwest Territories,Parent,Production +9873,https://github.com/ror-community/ror-updates/issues/9873,Add a new organization to ROR: Institut de tourisme et d'hôtellerie du Québec [ITHQ],Government of Northwest Territories,https://ror.org/05hqvvq43,https://ror.org/02w3bnx54,Institut de tourisme et d'hôtellerie du Québec,Child,Release +9523,https://github.com/ror-community/ror-updates/issues/9523,Add a new organization to ROR: Strategic Environmental Research and Development Program,Strategic Environmental Research and Development Program,https://ror.org/00ew61678,https://ror.org/0447fe631,United States Department of Defense,Parent,Production +9523,https://github.com/ror-community/ror-updates/issues/9523,Add a new organization to ROR: Strategic Environmental Research and Development Program,United States Department of Defense,https://ror.org/0447fe631,https://ror.org/00ew61678,Strategic Environmental Research and Development Program,Child,Release +9666,https://github.com/ror-community/ror-updates/issues/9666,"Add a new organization to ROR: Centre on Innovation and Energy Demand, University of Sussex",Centre on Innovation and Energy Demand,https://ror.org/00g1jn849,https://ror.org/00ayhx656,University of Sussex,Parent,Production +9666,https://github.com/ror-community/ror-updates/issues/9666,"Add a new organization to ROR: Centre on Innovation and Energy Demand, University of Sussex",University of Sussex,https://ror.org/00ayhx656,https://ror.org/00g1jn849,Centre on Innovation and Energy Demand,Child,Release +9524,https://github.com/ror-community/ror-updates/issues/9524,Add a new organization to ROR: European Metrology Programme for Innovation and Research,European Metrology Programme for Innovation and Research,https://ror.org/042k5q325,https://ror.org/03csrq586,European Association of National Metrology Institutes,Parent,Production +9524,https://github.com/ror-community/ror-updates/issues/9524,Add a new organization to ROR: European Metrology Programme for Innovation and Research,European Association of National Metrology Institutes,https://ror.org/03csrq586,https://ror.org/042k5q325,European Metrology Programme for Innovation and Research,Child,Release +9525,https://github.com/ror-community/ror-updates/issues/9525,Add a new organization to ROR: FURTHERMORE grants in publishing,FURTHERMORE grants in publishing,https://ror.org/04vzm8988,https://ror.org/03cn98e27,J.M. Kaplan Fund,Parent,Production +9525,https://github.com/ror-community/ror-updates/issues/9525,Add a new organization to ROR: FURTHERMORE grants in publishing,J.M. Kaplan Fund,https://ror.org/03cn98e27,https://ror.org/04vzm8988,FURTHERMORE grants in publishing,Child,Release +9527,https://github.com/ror-community/ror-updates/issues/9527,Add a new organization to ROR: Common Fund,NIH Common Fund,https://ror.org/001d55x84,https://ror.org/02e3wq066,Division of Program Coordination Planning and Strategic Initiatives,Parent,Production +9527,https://github.com/ror-community/ror-updates/issues/9527,Add a new organization to ROR: Common Fund,Division of Program Coordination Planning and Strategic Initiatives,https://ror.org/02e3wq066,https://ror.org/001d55x84,NIH Common Fund,Child,Release +9530,https://github.com/ror-community/ror-updates/issues/9530,Add a new organization to ROR: National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber,NIHR Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber,https://ror.org/0300g2m85,https://ror.org/0187kwz08,National Institute for Health Research,Parent,Production +9530,https://github.com/ror-community/ror-updates/issues/9530,Add a new organization to ROR: National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber,National Institute for Health Research,https://ror.org/0187kwz08,https://ror.org/0300g2m85,NIHR Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber,Child,Release +9531,https://github.com/ror-community/ror-updates/issues/9531,"Add a new organization to ROR: Nonwovens Institute, North Carolina State University",The Nonwovens Institute,https://ror.org/0568g2481,https://ror.org/04tj63d06,North Carolina State University,Parent,Production +9531,https://github.com/ror-community/ror-updates/issues/9531,"Add a new organization to ROR: Nonwovens Institute, North Carolina State University",North Carolina State University,https://ror.org/04tj63d06,https://ror.org/0568g2481,The Nonwovens Institute,Child,Release +9532,https://github.com/ror-community/ror-updates/issues/9532,Add a new organization to ROR: Collaboration for Leadership in Applied Health Research and Care - Greater Manchester,NIHR Applied Research Collaboration Greater Manchester,https://ror.org/021954z67,https://ror.org/0187kwz08,National Institute for Health Research,Parent,Production +9532,https://github.com/ror-community/ror-updates/issues/9532,Add a new organization to ROR: Collaboration for Leadership in Applied Health Research and Care - Greater Manchester,National Institute for Health Research,https://ror.org/0187kwz08,https://ror.org/021954z67,NIHR Applied Research Collaboration Greater Manchester,Child,Release +9534,https://github.com/ror-community/ror-updates/issues/9534,"Add a new organization to ROR: Stanley Center for Psychiatric Research, Broad Institute",Stanley Center for Psychiatric Research,https://ror.org/01tm9b530,https://ror.org/05a0ya142,Broad Institute,Parent,Production +9534,https://github.com/ror-community/ror-updates/issues/9534,"Add a new organization to ROR: Stanley Center for Psychiatric Research, Broad Institute",Broad Institute,https://ror.org/05a0ya142,https://ror.org/01tm9b530,Stanley Center for Psychiatric Research,Child,Release +9537,https://github.com/ror-community/ror-updates/issues/9537,Add a new organization to ROR: Communicating Diet and Activity Research,Communicating Diet and Activity Research,https://ror.org/05tamah23,https://ror.org/025ecp212,United Kingdom Clinical Research Collaboration,Related,Production +9537,https://github.com/ror-community/ror-updates/issues/9537,Add a new organization to ROR: Communicating Diet and Activity Research,United Kingdom Clinical Research Collaboration,https://ror.org/025ecp212,https://ror.org/05tamah23,Communicating Diet and Activity Research,Related,Release +9545,https://github.com/ror-community/ror-updates/issues/9545,Add a new organization to ROR: Instituto Nacional de Ciência e Tecnologia Translacional em Medicina,Instituto Nacional de Ciência e Tecnologia Translacional em Medicina,https://ror.org/01vt9w950,https://ror.org/041yk2d64,Universidade Federal do Rio Grande do Sul,Parent,Production +9545,https://github.com/ror-community/ror-updates/issues/9545,Add a new organization to ROR: Instituto Nacional de Ciência e Tecnologia Translacional em Medicina,Universidade Federal do Rio Grande do Sul,https://ror.org/041yk2d64,https://ror.org/01vt9w950,Instituto Nacional de Ciência e Tecnologia Translacional em Medicina,Child,Release +9552,https://github.com/ror-community/ror-updates/issues/9552,Add a new organization to ROR: Foundation Medicine,Foundation Medicine (United States),https://ror.org/02ackr434,https://ror.org/00by1q217,Roche (Switzerland),Parent,Production +9552,https://github.com/ror-community/ror-updates/issues/9552,Add a new organization to ROR: Foundation Medicine,Roche (Switzerland),https://ror.org/00by1q217,https://ror.org/02ackr434,Foundation Medicine (United States),Child,Release +9553,https://github.com/ror-community/ror-updates/issues/9553,Add a new organization to ROR: OVC Pet Trust,OVC Pet Trust,https://ror.org/02stdqb15,https://ror.org/04frvgs13,Ontario Veterinary College,Parent,Production +9553,https://github.com/ror-community/ror-updates/issues/9553,Add a new organization to ROR: OVC Pet Trust,Ontario Veterinary College,https://ror.org/04frvgs13,https://ror.org/02stdqb15,OVC Pet Trust,Child,Release +9554,https://github.com/ror-community/ror-updates/issues/9554,Add a new organization to ROR: EIT Food,EIT Food,https://ror.org/01kde4v59,https://ror.org/036dxts37,European Institute of Innovation and Technology,Parent,Production +9554,https://github.com/ror-community/ror-updates/issues/9554,Add a new organization to ROR: EIT Food,European Institute of Innovation and Technology,https://ror.org/036dxts37,https://ror.org/01kde4v59,EIT Food,Child,Release +9895,https://github.com/ror-community/ror-updates/issues/9895,"Add a new organization to ROR: + +Fondazione Giannino Bassetti",Fondazione Giannino Bassetti,https://ror.org/027620g33,https://ror.org/01ym3w380,Globus et Locus,Related,Production +9895,https://github.com/ror-community/ror-updates/issues/9895,"Add a new organization to ROR: + +Fondazione Giannino Bassetti",Globus et Locus,https://ror.org/01ym3w380,https://ror.org/027620g33,Fondazione Giannino Bassetti,Related,Release +9897,https://github.com/ror-community/ror-updates/issues/9897,"Add a new organization to ROR: + +Ministerio para la Transformación Digital y de la Función Pública",Ministerio para la Transformación Digital y de la Función Pública,https://ror.org/01qh08519,https://ror.org/03sv46s19,Ministerio de Asuntos Económicos y Transformación Digital,Predecessor,Release +9897,https://github.com/ror-community/ror-updates/issues/9897,"Add a new organization to ROR: + +Ministerio para la Transformación Digital y de la Función Pública",Ministerio de Asuntos Económicos y Transformación Digital,https://ror.org/03sv46s19,https://ror.org/01qh08519,Ministerio para la Transformación Digital y de la Función Pública,Successor,Release +9910,https://github.com/ror-community/ror-updates/issues/9910,"Add a new organization to ROR: + +Panskura Banamali College (Autonomous)",Panskura Banamali College,https://ror.org/01hn2pk88,https://ror.org/027jsza11,Vidyasagar University,Related,Production +9910,https://github.com/ror-community/ror-updates/issues/9910,"Add a new organization to ROR: + +Panskura Banamali College (Autonomous)",Vidyasagar University,https://ror.org/027jsza11,https://ror.org/01hn2pk88,Panskura Banamali College,Related,Release +9543,https://github.com/ror-community/ror-updates/issues/9543,Add a new organization to ROR: ZOLL Medical Corporation,ZOLL Medical Corporation (United States),https://ror.org/036wkjd70,https://ror.org/018wp0236,Asahi Kasei (Japan),Parent,Production +9543,https://github.com/ror-community/ror-updates/issues/9543,Add a new organization to ROR: ZOLL Medical Corporation,Asahi Kasei (Japan),https://ror.org/018wp0236,https://ror.org/036wkjd70,ZOLL Medical Corporation (United States),Child,Release +9555,https://github.com/ror-community/ror-updates/issues/9555,"Add a new organization to ROR: Ministère de l’Éducation, Gouvernement de l’Ontario",Ministry of Education,https://ror.org/016gy9w96,https://ror.org/015pzp858,Government of Ontario,Parent,Production +9555,https://github.com/ror-community/ror-updates/issues/9555,"Add a new organization to ROR: Ministère de l’Éducation, Gouvernement de l’Ontario",Government of Ontario,https://ror.org/015pzp858,https://ror.org/016gy9w96,Ministry of Education,Child,Release +9556,https://github.com/ror-community/ror-updates/issues/9556,Add a new organization to ROR: Ministry of Science and Technology (Pakistan),Ministry of Science and Technology,https://ror.org/03jn2p430,https://ror.org/00pnp4y96,Government of Pakistan,Parent,Production +9556,https://github.com/ror-community/ror-updates/issues/9556,Add a new organization to ROR: Ministry of Science and Technology (Pakistan),Government of Pakistan,https://ror.org/00pnp4y96,https://ror.org/03jn2p430,Ministry of Science and Technology,Child,Release +9558,https://github.com/ror-community/ror-updates/issues/9558,Add a new organization to ROR: Fondation Saint-Luc,Fondation Saint-Luc,https://ror.org/021354321,https://ror.org/03s4khd80,Cliniques Universitaires Saint-Luc,Parent,Production +9558,https://github.com/ror-community/ror-updates/issues/9558,Add a new organization to ROR: Fondation Saint-Luc,Cliniques Universitaires Saint-Luc,https://ror.org/03s4khd80,https://ror.org/021354321,Fondation Saint-Luc,Child,Release +9559,https://github.com/ror-community/ror-updates/issues/9559,"Add a new organization to ROR: Departement Economie, Wetenschap & Innovatie","Departement Economie, Wetenschap & Innovatie",https://ror.org/01g94x362,https://ror.org/04qxsrb28,Flemish Government,Parent,Production +9559,https://github.com/ror-community/ror-updates/issues/9559,"Add a new organization to ROR: Departement Economie, Wetenschap & Innovatie",Flemish Government,https://ror.org/04qxsrb28,https://ror.org/01g94x362,"Departement Economie, Wetenschap & Innovatie",Child,Release +9560,https://github.com/ror-community/ror-updates/issues/9560,Add a new organization to ROR: Grundfos Fond,Grundfos Fond,https://ror.org/0008vp155,https://ror.org/05rdv5n40,Grundfos (Denmark),Child,Production +9560,https://github.com/ror-community/ror-updates/issues/9560,Add a new organization to ROR: Grundfos Fond,Grundfos (Denmark),https://ror.org/05rdv5n40,https://ror.org/0008vp155,Grundfos Fond,Parent,Release +9564,https://github.com/ror-community/ror-updates/issues/9564,Add a new organization to ROR: Medtronic Foundation,Medtronic Foundation,https://ror.org/01f7saf07,https://ror.org/00grd1h17,Medtronic (United States),Parent,Production +9564,https://github.com/ror-community/ror-updates/issues/9564,Add a new organization to ROR: Medtronic Foundation,Medtronic (United States),https://ror.org/00grd1h17,https://ror.org/01f7saf07,Medtronic Foundation,Child,Release +9568,https://github.com/ror-community/ror-updates/issues/9568,Add a new organization to ROR: Stiftung Charité,Stiftung Charité,https://ror.org/016rf0n60,https://ror.org/001w7jn25,Charité - Universitätsmedizin Berlin,Parent,Production +9568,https://github.com/ror-community/ror-updates/issues/9568,Add a new organization to ROR: Stiftung Charité,Charité - Universitätsmedizin Berlin,https://ror.org/001w7jn25,https://ror.org/016rf0n60,Stiftung Charité,Child,Release +9569,https://github.com/ror-community/ror-updates/issues/9569,Add a new organization to ROR: Ontario Agri-Food Innovation Alliance,Ontario Agri-Food Innovation Alliance,https://ror.org/02ftfma65,https://ror.org/011n4tk56,Agricultural Research Institute of Ontario,Related,Production +9569,https://github.com/ror-community/ror-updates/issues/9569,Add a new organization to ROR: Ontario Agri-Food Innovation Alliance,Agricultural Research Institute of Ontario,https://ror.org/011n4tk56,https://ror.org/02ftfma65,Ontario Agri-Food Innovation Alliance,Related,Release +9569,https://github.com/ror-community/ror-updates/issues/9569,Add a new organization to ROR: Ontario Agri-Food Innovation Alliance,Ontario Agri-Food Innovation Alliance,https://ror.org/02ftfma65,https://ror.org/01r7awg59,University of Guelph,Related,Production +9569,https://github.com/ror-community/ror-updates/issues/9569,Add a new organization to ROR: Ontario Agri-Food Innovation Alliance,University of Guelph,https://ror.org/01r7awg59,https://ror.org/02ftfma65,Ontario Agri-Food Innovation Alliance,Related,Release +9570,https://github.com/ror-community/ror-updates/issues/9570,"Add a new organization to ROR: Agricultural Research Institute, California State University",Agricultural Research Institute,https://ror.org/00m98kt33,https://ror.org/020qm1538,California State University System,Parent,Production +9570,https://github.com/ror-community/ror-updates/issues/9570,"Add a new organization to ROR: Agricultural Research Institute, California State University",California State University System,https://ror.org/020qm1538,https://ror.org/00m98kt33,Agricultural Research Institute,Child,Release +9571,https://github.com/ror-community/ror-updates/issues/9571,Add a new organization to ROR: Astellas Pharma (Canada),Astellas Pharma (Canada),https://ror.org/041repn61,https://ror.org/01cjash87,Astellas Pharma (Japan),Parent,Production +9571,https://github.com/ror-community/ror-updates/issues/9571,Add a new organization to ROR: Astellas Pharma (Canada),Astellas Pharma (Japan),https://ror.org/01cjash87,https://ror.org/041repn61,Astellas Pharma (Canada),Child,Release +9573,https://github.com/ror-community/ror-updates/issues/9573,Add a new organization to ROR: Stanford SystemX Alliance,Stanford SystemX Alliance,https://ror.org/0551gkb08,https://ror.org/00f54p054,Stanford University,Parent,Production +9573,https://github.com/ror-community/ror-updates/issues/9573,Add a new organization to ROR: Stanford SystemX Alliance,Stanford University,https://ror.org/00f54p054,https://ror.org/0551gkb08,Stanford SystemX Alliance,Child,Release +9574,https://github.com/ror-community/ror-updates/issues/9574,Add a new organization to ROR: National Centres of Competence in Research SwissMAP,NCCR SwissMAP,https://ror.org/00xzacp61,https://ror.org/00yjd3n13,Swiss National Science Foundation,Parent,Production +9574,https://github.com/ror-community/ror-updates/issues/9574,Add a new organization to ROR: National Centres of Competence in Research SwissMAP,Swiss National Science Foundation,https://ror.org/00yjd3n13,https://ror.org/00xzacp61,NCCR SwissMAP,Child,Release +9574,https://github.com/ror-community/ror-updates/issues/9574,Add a new organization to ROR: National Centres of Competence in Research SwissMAP,NCCR SwissMAP,https://ror.org/00xzacp61,https://ror.org/05a28rw58,ETH Zurich,Parent,Production +9574,https://github.com/ror-community/ror-updates/issues/9574,Add a new organization to ROR: National Centres of Competence in Research SwissMAP,ETH Zurich,https://ror.org/05a28rw58,https://ror.org/00xzacp61,NCCR SwissMAP,Child,Release +9574,https://github.com/ror-community/ror-updates/issues/9574,Add a new organization to ROR: National Centres of Competence in Research SwissMAP,NCCR SwissMAP,https://ror.org/00xzacp61,https://ror.org/01swzsf04,University of Geneva,Parent,Production +9574,https://github.com/ror-community/ror-updates/issues/9574,Add a new organization to ROR: National Centres of Competence in Research SwissMAP,University of Geneva,https://ror.org/01swzsf04,https://ror.org/00xzacp61,NCCR SwissMAP,Child,Release +9575,https://github.com/ror-community/ror-updates/issues/9575,"Add a new organization to ROR: Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development","Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development",https://ror.org/057p7e749,https://ror.org/05tgxx705,Department of Science and Technology,Parent,Production +9575,https://github.com/ror-community/ror-updates/issues/9575,"Add a new organization to ROR: Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development",Department of Science and Technology,https://ror.org/05tgxx705,https://ror.org/057p7e749,"Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development",Child,Release +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,Communauté Université Grenoble Alpes,https://ror.org/05v727m31,https://ror.org/02rx3b187,Université Grenoble Alpes,Related,Production +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,Université Grenoble Alpes,https://ror.org/02rx3b187,https://ror.org/05v727m31,Communauté Université Grenoble Alpes,Related,Release +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,Communauté Université Grenoble Alpes,https://ror.org/05v727m31,https://ror.org/05sbt2524,Grenoble Institute of Technology,Related,Production +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,Grenoble Institute of Technology,https://ror.org/05sbt2524,https://ror.org/05v727m31,Communauté Université Grenoble Alpes,Related,Release +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,Communauté Université Grenoble Alpes,https://ror.org/05v727m31,https://ror.org/02feahw73,French National Centre for Scientific Research,Related,Production +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/05v727m31,Communauté Université Grenoble Alpes,Related,Release +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,Communauté Université Grenoble Alpes,https://ror.org/05v727m31,https://ror.org/02kvxyf05,French Institute for Research in Computer Science and Automation,Related,Release +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,French Institute for Research in Computer Science and Automation,https://ror.org/02kvxyf05,https://ror.org/05v727m31,Communauté Université Grenoble Alpes,Related,Release +9580,https://github.com/ror-community/ror-updates/issues/9580,Add a new organization to ROR: Agricultural Experiment Station,Agricultural Experiment Station,https://ror.org/009q0jm69,https://ror.org/00hpz7z43,New Mexico State University,Parent,Production +9580,https://github.com/ror-community/ror-updates/issues/9580,Add a new organization to ROR: Agricultural Experiment Station,New Mexico State University,https://ror.org/00hpz7z43,https://ror.org/009q0jm69,Agricultural Experiment Station,Child,Release +9582,https://github.com/ror-community/ror-updates/issues/9582,Add a new organization to ROR: National Research Council of the Philippines,National Research Council of the Philippines,https://ror.org/00c746491,https://ror.org/05tgxx705,Department of Science and Technology,Parent,Production +9582,https://github.com/ror-community/ror-updates/issues/9582,Add a new organization to ROR: National Research Council of the Philippines,Department of Science and Technology,https://ror.org/05tgxx705,https://ror.org/00c746491,National Research Council of the Philippines,Child,Release +9583,https://github.com/ror-community/ror-updates/issues/9583,Add a new organization to ROR: Nuclear Science and Technology Research Institute,Nuclear Science and Technology Research Institute,https://ror.org/05cebxq10,https://ror.org/04feqxb79,Atomic Energy Organization of Iran,Parent,Production +9583,https://github.com/ror-community/ror-updates/issues/9583,Add a new organization to ROR: Nuclear Science and Technology Research Institute,Atomic Energy Organization of Iran,https://ror.org/04feqxb79,https://ror.org/05cebxq10,Nuclear Science and Technology Research Institute,Child,Release +9924,https://github.com/ror-community/ror-updates/issues/9924,Add a new organization to ROR: Zentrum für Klinische Tiermedizin,Zentrum für Klinische Tiermedizin,https://ror.org/02qqvpd39,https://ror.org/02am8se85,Klinik für Schweine,Child,Release +9924,https://github.com/ror-community/ror-updates/issues/9924,Add a new organization to ROR: Zentrum für Klinische Tiermedizin,Klinik für Schweine,https://ror.org/02am8se85,https://ror.org/02qqvpd39,Zentrum für Klinische Tiermedizin,Parent,Release +9585,https://github.com/ror-community/ror-updates/issues/9585,"Add a new organization to ROR: Office of Planning, Research and Evaluation","Office of Planning, Research and Evaluation",https://ror.org/05jnma812,https://ror.org/00g8hms52,Administration for Children and Families,Parent,Production +9585,https://github.com/ror-community/ror-updates/issues/9585,"Add a new organization to ROR: Office of Planning, Research and Evaluation",Administration for Children and Families,https://ror.org/00g8hms52,https://ror.org/05jnma812,"Office of Planning, Research and Evaluation",Child,Release +9586,https://github.com/ror-community/ror-updates/issues/9586,Add a new organization to ROR: Emory National Primate Research Center,Emory National Primate Research Center,https://ror.org/038kr2d80,https://ror.org/03czfpz43,Emory University,Parent,Production +9586,https://github.com/ror-community/ror-updates/issues/9586,Add a new organization to ROR: Emory National Primate Research Center,Emory University,https://ror.org/03czfpz43,https://ror.org/038kr2d80,Emory National Primate Research Center,Child,Release +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,Special Programme for Research and Training in Tropical Diseases,https://ror.org/046j7pv84,https://ror.org/02dg0pv02,United Nations Children's Fund,Parent,Production +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,United Nations Children's Fund,https://ror.org/02dg0pv02,https://ror.org/046j7pv84,Special Programme for Research and Training in Tropical Diseases,Child,Release +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,Special Programme for Research and Training in Tropical Diseases,https://ror.org/046j7pv84,https://ror.org/051777d98,United Nations Development Programme,Parent,Production +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,United Nations Development Programme,https://ror.org/051777d98,https://ror.org/046j7pv84,Special Programme for Research and Training in Tropical Diseases,Child,Release +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,Special Programme for Research and Training in Tropical Diseases,https://ror.org/046j7pv84,https://ror.org/00ae7jd04,World Bank,Parent,Production +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,World Bank,https://ror.org/00ae7jd04,https://ror.org/046j7pv84,Special Programme for Research and Training in Tropical Diseases,Child,Release +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,Special Programme for Research and Training in Tropical Diseases,https://ror.org/046j7pv84,https://ror.org/01f80g185,World Health Organization,Parent,Production +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,World Health Organization,https://ror.org/01f80g185,https://ror.org/046j7pv84,Special Programme for Research and Training in Tropical Diseases,Child,Release +9599,https://github.com/ror-community/ror-updates/issues/9599,Add a new organization to ROR: Cancer Research UK Manchester Centre,Cancer Research UK Manchester Centre,https://ror.org/033svsm10,https://ror.org/054225q67,Cancer Research UK,Parent,Production +9599,https://github.com/ror-community/ror-updates/issues/9599,Add a new organization to ROR: Cancer Research UK Manchester Centre,Cancer Research UK,https://ror.org/054225q67,https://ror.org/033svsm10,Cancer Research UK Manchester Centre,Child,Release +9599,https://github.com/ror-community/ror-updates/issues/9599,Add a new organization to ROR: Cancer Research UK Manchester Centre,Cancer Research UK Manchester Centre,https://ror.org/033svsm10,https://ror.org/027m9bs27,University of Manchester,Parent,Production +9599,https://github.com/ror-community/ror-updates/issues/9599,Add a new organization to ROR: Cancer Research UK Manchester Centre,University of Manchester,https://ror.org/027m9bs27,https://ror.org/033svsm10,Cancer Research UK Manchester Centre,Child,Release +9599,https://github.com/ror-community/ror-updates/issues/9599,Add a new organization to ROR: Cancer Research UK Manchester Centre,Cancer Research UK Manchester Centre,https://ror.org/033svsm10,https://ror.org/03v9efr22,The Christie NHS Foundation Trust,Parent,Production +9599,https://github.com/ror-community/ror-updates/issues/9599,Add a new organization to ROR: Cancer Research UK Manchester Centre,The Christie NHS Foundation Trust,https://ror.org/03v9efr22,https://ror.org/033svsm10,Cancer Research UK Manchester Centre,Child,Release +9597,https://github.com/ror-community/ror-updates/issues/9597,"Add a new organization to ROR: Johnson Cancer Research Center, Kansas State University",Johnson Cancer Research Center,https://ror.org/00nffqq91,https://ror.org/05p1j8758,Kansas State University,Parent,Production +9597,https://github.com/ror-community/ror-updates/issues/9597,"Add a new organization to ROR: Johnson Cancer Research Center, Kansas State University",Kansas State University,https://ror.org/05p1j8758,https://ror.org/00nffqq91,Johnson Cancer Research Center,Child,Release +9596,https://github.com/ror-community/ror-updates/issues/9596,Add a new organization to ROR: NIHR Greater Manchester Patient Safety Translational Research Centre,NIHR Greater Manchester Patient Safety Translational Research Centre,https://ror.org/0436znn81,https://ror.org/0187kwz08,National Institute for Health Research,Parent,Production +9596,https://github.com/ror-community/ror-updates/issues/9596,Add a new organization to ROR: NIHR Greater Manchester Patient Safety Translational Research Centre,National Institute for Health Research,https://ror.org/0187kwz08,https://ror.org/0436znn81,NIHR Greater Manchester Patient Safety Translational Research Centre,Child,Release +9595,https://github.com/ror-community/ror-updates/issues/9595,Add a new organization to ROR: Packard Center,Packard Center,https://ror.org/042fhmq33,https://ror.org/00za53h95,Johns Hopkins University,Parent,Production +9595,https://github.com/ror-community/ror-updates/issues/9595,Add a new organization to ROR: Packard Center,Johns Hopkins University,https://ror.org/00za53h95,https://ror.org/042fhmq33,Packard Center,Child,Release +9933,https://github.com/ror-community/ror-updates/issues/9933,"Add a new organization to ROR: The Affiliated Shunde Hospital of Jinan University, Foshan, China",The Affiliated Shunde Hospital of Jinan University,https://ror.org/04x2nq985,https://ror.org/02xe5ns62,Jinan University,Parent,Production +9933,https://github.com/ror-community/ror-updates/issues/9933,"Add a new organization to ROR: The Affiliated Shunde Hospital of Jinan University, Foshan, China",Jinan University,https://ror.org/02xe5ns62,https://ror.org/04x2nq985,The Affiliated Shunde Hospital of Jinan University,Child,Release +9594,https://github.com/ror-community/ror-updates/issues/9594,Add a new organization to ROR: Cornell University Agricultural Experiment Station,Cornell University Agricultural Experiment Station,https://ror.org/012qsrr25,https://ror.org/05bnh6r87,Cornell University,Parent,Production +9594,https://github.com/ror-community/ror-updates/issues/9594,Add a new organization to ROR: Cornell University Agricultural Experiment Station,Cornell University,https://ror.org/05bnh6r87,https://ror.org/012qsrr25,Cornell University Agricultural Experiment Station,Child,Release +9602,https://github.com/ror-community/ror-updates/issues/9602,Add a new organization to ROR: Waltham Centre for Pet Nutrition,Waltham Centre for Pet Nutrition,https://ror.org/00p7f7z86,https://ror.org/028vrr082,Mars (United States),Parent,Production +9602,https://github.com/ror-community/ror-updates/issues/9602,Add a new organization to ROR: Waltham Centre for Pet Nutrition,Mars (United States),https://ror.org/028vrr082,https://ror.org/00p7f7z86,Waltham Centre for Pet Nutrition,Child,Release +9601,https://github.com/ror-community/ror-updates/issues/9601,"Add a new organization to ROR: National Transportation Center, Morgan State University",National Transportation Center,https://ror.org/02wjh7838,https://ror.org/017d8gk22,Morgan State University,Parent,Production +9601,https://github.com/ror-community/ror-updates/issues/9601,"Add a new organization to ROR: National Transportation Center, Morgan State University",Morgan State University,https://ror.org/017d8gk22,https://ror.org/02wjh7838,National Transportation Center,Child,Release +9600,https://github.com/ror-community/ror-updates/issues/9600,"Add a new organization to ROR: Centre for Climate Change Economics and Policy, University of Leeds",Centre for Climate Change Economics and Policy,https://ror.org/03tsg3y65,https://ror.org/024mrxd33,University of Leeds,Parent,Production +9600,https://github.com/ror-community/ror-updates/issues/9600,"Add a new organization to ROR: Centre for Climate Change Economics and Policy, University of Leeds",University of Leeds,https://ror.org/024mrxd33,https://ror.org/03tsg3y65,Centre for Climate Change Economics and Policy,Child,Release +9600,https://github.com/ror-community/ror-updates/issues/9600,"Add a new organization to ROR: Centre for Climate Change Economics and Policy, University of Leeds",Centre for Climate Change Economics and Policy,https://ror.org/03tsg3y65,https://ror.org/0090zs177,London School of Economics and Political Science,Parent,Production +9600,https://github.com/ror-community/ror-updates/issues/9600,"Add a new organization to ROR: Centre for Climate Change Economics and Policy, University of Leeds",London School of Economics and Political Science,https://ror.org/0090zs177,https://ror.org/03tsg3y65,Centre for Climate Change Economics and Policy,Child,Release +9608,https://github.com/ror-community/ror-updates/issues/9608,Add a new organization to ROR: NIHR Applied Research Collaboration West,NIHR Applied Research Collaboration West,https://ror.org/03pzxq793,https://ror.org/0187kwz08,National Institute for Health Research,Parent,Production +9608,https://github.com/ror-community/ror-updates/issues/9608,Add a new organization to ROR: NIHR Applied Research Collaboration West,National Institute for Health Research,https://ror.org/0187kwz08,https://ror.org/03pzxq793,NIHR Applied Research Collaboration West,Child,Release +9606,https://github.com/ror-community/ror-updates/issues/9606,Add a new organization to ROR: Michigan Center for Urban African American Aging Research,Michigan Center for Urban African American Aging Research,https://ror.org/00q1brk57,https://ror.org/01070mq45,Wayne State University,Parent,Production +9606,https://github.com/ror-community/ror-updates/issues/9606,Add a new organization to ROR: Michigan Center for Urban African American Aging Research,Wayne State University,https://ror.org/01070mq45,https://ror.org/00q1brk57,Michigan Center for Urban African American Aging Research,Child,Release +9609,https://github.com/ror-community/ror-updates/issues/9609,Add a new organization to ROR: Defence and Security Accelerator,Defence and Security Accelerator,https://ror.org/05wnp0977,https://ror.org/01bvxzn29,Ministry of Defence,Parent,Production +9609,https://github.com/ror-community/ror-updates/issues/9609,Add a new organization to ROR: Defence and Security Accelerator,Ministry of Defence,https://ror.org/01bvxzn29,https://ror.org/05wnp0977,Defence and Security Accelerator,Child,Release +9610,https://github.com/ror-community/ror-updates/issues/9610,Add a new organization to ROR: NIHR Collaboration for Leadership in Applied Health Research and Care South London,NIHR Collaboration for Leadership in Applied Health Research and Care South London,https://ror.org/02gqg2511,https://ror.org/0187kwz08,National Institute for Health Research,Parent,Production +9610,https://github.com/ror-community/ror-updates/issues/9610,Add a new organization to ROR: NIHR Collaboration for Leadership in Applied Health Research and Care South London,National Institute for Health Research,https://ror.org/0187kwz08,https://ror.org/02gqg2511,NIHR Collaboration for Leadership in Applied Health Research and Care South London,Child,Release +9611,https://github.com/ror-community/ror-updates/issues/9611,Add a new organization to ROR: National Institute for Health Research Applied Research Collaboration South West Peninsula,NIHR Applied Research Collaboration South West Peninsula,https://ror.org/01qgn1839,https://ror.org/0187kwz08,National Institute for Health Research,Parent,Production +9611,https://github.com/ror-community/ror-updates/issues/9611,Add a new organization to ROR: National Institute for Health Research Applied Research Collaboration South West Peninsula,National Institute for Health Research,https://ror.org/0187kwz08,https://ror.org/01qgn1839,NIHR Applied Research Collaboration South West Peninsula,Child,Release +9921,https://github.com/ror-community/ror-updates/issues/9921,"Add a new organization to ROR: + +European Association for Education Law and Policy",European Association for Education Law and Policy,https://ror.org/016782g02,https://ror.org/006e5kg04,Vrije Universiteit Brussel,Related,Production +9921,https://github.com/ror-community/ror-updates/issues/9921,"Add a new organization to ROR: + +European Association for Education Law and Policy",Vrije Universiteit Brussel,https://ror.org/006e5kg04,https://ror.org/016782g02,European Association for Education Law and Policy,Related,Release +9615,https://github.com/ror-community/ror-updates/issues/9615,Add a new organization to ROR: Emerald Foundation,The Emerald Foundation,https://ror.org/031tb8x29,https://ror.org/02avhnb77,Emerald Group Publishing (United Kingdom),Parent,Production +9615,https://github.com/ror-community/ror-updates/issues/9615,Add a new organization to ROR: Emerald Foundation,Emerald Group Publishing (United Kingdom),https://ror.org/02avhnb77,https://ror.org/031tb8x29,The Emerald Foundation,Child,Release +9612,https://github.com/ror-community/ror-updates/issues/9612,Add a new organization to ROR: Taylor Family Institute for Innovative Psychiatric Research,Taylor Family Institute for Innovative Psychiatric Research,https://ror.org/03x3g5467,https://ror.org/01yc7t268,Washington University in St. Louis,Parent,Production +9612,https://github.com/ror-community/ror-updates/issues/9612,Add a new organization to ROR: Taylor Family Institute for Innovative Psychiatric Research,Washington University in St. Louis,https://ror.org/01yc7t268,https://ror.org/03x3g5467,Taylor Family Institute for Innovative Psychiatric Research,Child,Release +9621,https://github.com/ror-community/ror-updates/issues/9621,Add a new organization to ROR: International Progressive MS Alliance,International Progressive MS Alliance,https://ror.org/04hh1k009,https://ror.org/052gp0981,Multiple Sclerosis International Federation,Parent,Production +9621,https://github.com/ror-community/ror-updates/issues/9621,Add a new organization to ROR: International Progressive MS Alliance,Multiple Sclerosis International Federation,https://ror.org/052gp0981,https://ror.org/04hh1k009,International Progressive MS Alliance,Child,Release +9620,https://github.com/ror-community/ror-updates/issues/9620,Add a new organization to ROR: Center for Innovative Medicine,Center for Innovative Medicine,https://ror.org/04d4pvt78,https://ror.org/037zgn354,Johns Hopkins Medicine,Parent,Production +9620,https://github.com/ror-community/ror-updates/issues/9620,Add a new organization to ROR: Center for Innovative Medicine,Johns Hopkins Medicine,https://ror.org/037zgn354,https://ror.org/04d4pvt78,Center for Innovative Medicine,Child,Release +9619,https://github.com/ror-community/ror-updates/issues/9619,Add a new organization to ROR: Leverhulme Centre for Integrative Research on Agriculture and Health,Leverhulme Centre for Integrative Research on Agriculture and Health,https://ror.org/041qq2t66,https://ror.org/053xt2a19,London International Development Centre,Parent,Production +9619,https://github.com/ror-community/ror-updates/issues/9619,Add a new organization to ROR: Leverhulme Centre for Integrative Research on Agriculture and Health,London International Development Centre,https://ror.org/053xt2a19,https://ror.org/041qq2t66,Leverhulme Centre for Integrative Research on Agriculture and Health,Child,Release +9618,https://github.com/ror-community/ror-updates/issues/9618,Add a new organization to ROR: Scottish Office Home and Health Department,Scottish Home and Health Department,https://ror.org/043xqa828,https://ror.org/03t61s708,Parliament of United Kingdom,Parent,Production +9618,https://github.com/ror-community/ror-updates/issues/9618,Add a new organization to ROR: Scottish Office Home and Health Department,Parliament of United Kingdom,https://ror.org/03t61s708,https://ror.org/043xqa828,Scottish Home and Health Department,Child,Release +9627,https://github.com/ror-community/ror-updates/issues/9627,"Add a new organization to ROR: Center for Wireless Communications, University of California, San Diego",Center for Wireless Communications,https://ror.org/04b57z061,https://ror.org/0168r3w48,"University of California, San Diego",Parent,Production +9627,https://github.com/ror-community/ror-updates/issues/9627,"Add a new organization to ROR: Center for Wireless Communications, University of California, San Diego","University of California, San Diego",https://ror.org/0168r3w48,https://ror.org/04b57z061,Center for Wireless Communications,Child,Release +9624,https://github.com/ror-community/ror-updates/issues/9624,Add a new organization to ROR: National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care North West Coast,NIHR Collaboration for Leadership in Applied Health Research and Care North West Coast,https://ror.org/03tmzq288,https://ror.org/0187kwz08,National Institute for Health Research,Parent,Production +9624,https://github.com/ror-community/ror-updates/issues/9624,Add a new organization to ROR: National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care North West Coast,National Institute for Health Research,https://ror.org/0187kwz08,https://ror.org/03tmzq288,NIHR Collaboration for Leadership in Applied Health Research and Care North West Coast,Child,Release +9623,https://github.com/ror-community/ror-updates/issues/9623,Add a new organization to ROR: Real Colegio Complutense,Real Colegio Complutense,https://ror.org/05b0g2v72,https://ror.org/03vek6s52,Harvard University,Parent,Production +9623,https://github.com/ror-community/ror-updates/issues/9623,Add a new organization to ROR: Real Colegio Complutense,Harvard University,https://ror.org/03vek6s52,https://ror.org/05b0g2v72,Real Colegio Complutense,Child,Release +9630,https://github.com/ror-community/ror-updates/issues/9630,Add a new organization to ROR: MRC Centre for Environment and Health,MRC Centre for Environment and Health,https://ror.org/01vw4c203,https://ror.org/041kmwe10,Imperial College London,Parent,Production +9630,https://github.com/ror-community/ror-updates/issues/9630,Add a new organization to ROR: MRC Centre for Environment and Health,Imperial College London,https://ror.org/041kmwe10,https://ror.org/01vw4c203,MRC Centre for Environment and Health,Child,Release +9630,https://github.com/ror-community/ror-updates/issues/9630,Add a new organization to ROR: MRC Centre for Environment and Health,MRC Centre for Environment and Health,https://ror.org/01vw4c203,https://ror.org/03x94j517,Medical Research Council,Parent,Production +9630,https://github.com/ror-community/ror-updates/issues/9630,Add a new organization to ROR: MRC Centre for Environment and Health,Medical Research Council,https://ror.org/03x94j517,https://ror.org/01vw4c203,MRC Centre for Environment and Health,Child,Release +9629,https://github.com/ror-community/ror-updates/issues/9629,Add a new organization to ROR: Cancer Imaging Centre,Cancer Imaging Centre,https://ror.org/023a2er20,https://ror.org/013meh722,University of Cambridge,Parent,Production +9629,https://github.com/ror-community/ror-updates/issues/9629,Add a new organization to ROR: Cancer Imaging Centre,University of Cambridge,https://ror.org/013meh722,https://ror.org/023a2er20,Cancer Imaging Centre,Child,Release +9629,https://github.com/ror-community/ror-updates/issues/9629,Add a new organization to ROR: Cancer Imaging Centre,Cancer Imaging Centre,https://ror.org/023a2er20,https://ror.org/027m9bs27,University of Manchester,Parent,Production +9629,https://github.com/ror-community/ror-updates/issues/9629,Add a new organization to ROR: Cancer Imaging Centre,University of Manchester,https://ror.org/027m9bs27,https://ror.org/023a2er20,Cancer Imaging Centre,Child,Release +9628,https://github.com/ror-community/ror-updates/issues/9628,"Add a new organization to ROR: Pacific Earthquake Engineering Research Center, University of California Berkeley",Pacific Earthquake Engineering Research Center,https://ror.org/02cq2e244,https://ror.org/01an7q238,"University of California, Berkeley",Parent,Production +9628,https://github.com/ror-community/ror-updates/issues/9628,"Add a new organization to ROR: Pacific Earthquake Engineering Research Center, University of California Berkeley","University of California, Berkeley",https://ror.org/01an7q238,https://ror.org/02cq2e244,Pacific Earthquake Engineering Research Center,Child,Release +9632,https://github.com/ror-community/ror-updates/issues/9632,Add a new organization to ROR: Medical College of Wisconsin Cancer Center,Medical College of Wisconsin Cancer Center,https://ror.org/0115fxs14,https://ror.org/00qqv6244,Medical College of Wisconsin,Parent,Production +9632,https://github.com/ror-community/ror-updates/issues/9632,Add a new organization to ROR: Medical College of Wisconsin Cancer Center,Medical College of Wisconsin,https://ror.org/00qqv6244,https://ror.org/0115fxs14,Medical College of Wisconsin Cancer Center,Child,Release +9638,https://github.com/ror-community/ror-updates/issues/9638,Add a new organization to ROR: National Centre for Energy Systems Integration,National Centre for Energy Systems Integration,https://ror.org/02r4fqa76,https://ror.org/01kj2bm70,Newcastle University,Parent,Production +9638,https://github.com/ror-community/ror-updates/issues/9638,Add a new organization to ROR: National Centre for Energy Systems Integration,Newcastle University,https://ror.org/01kj2bm70,https://ror.org/02r4fqa76,National Centre for Energy Systems Integration,Child,Release +9640,https://github.com/ror-community/ror-updates/issues/9640,Add a new organization to ROR: QuantIC,QuantIC,https://ror.org/04qdwq068,https://ror.org/00vtgdb53,University of Glasgow,Parent,Production +9640,https://github.com/ror-community/ror-updates/issues/9640,Add a new organization to ROR: QuantIC,University of Glasgow,https://ror.org/00vtgdb53,https://ror.org/04qdwq068,QuantIC,Child,Release +9643,https://github.com/ror-community/ror-updates/issues/9643,Add a new organization to ROR: UCL Hospitals Charitable Foundation,UCL Hospitals Charitable Foundation,https://ror.org/05mz0pr34,https://ror.org/02jx3x895,University College London,Parent,Production +9643,https://github.com/ror-community/ror-updates/issues/9643,Add a new organization to ROR: UCL Hospitals Charitable Foundation,University College London,https://ror.org/02jx3x895,https://ror.org/05mz0pr34,UCL Hospitals Charitable Foundation,Child,Release +9642,https://github.com/ror-community/ror-updates/issues/9642,Add a new organization to ROR: Vodafone Foundation,Vodafone Foundation,https://ror.org/03thdsj80,https://ror.org/01v7jrq42,Vodafone (United Kingdom),Parent,Production +9642,https://github.com/ror-community/ror-updates/issues/9642,Add a new organization to ROR: Vodafone Foundation,Vodafone (United Kingdom),https://ror.org/01v7jrq42,https://ror.org/03thdsj80,Vodafone Foundation,Child,Release +9647,https://github.com/ror-community/ror-updates/issues/9647,Add a new organization to ROR: BMA Foundation for Medical Research,BMA Foundation for Medical Research,https://ror.org/03hvdbf98,https://ror.org/02caz1f24,British Medical Association,Parent,Production +9647,https://github.com/ror-community/ror-updates/issues/9647,Add a new organization to ROR: BMA Foundation for Medical Research,British Medical Association,https://ror.org/02caz1f24,https://ror.org/03hvdbf98,BMA Foundation for Medical Research,Child,Release +9645,https://github.com/ror-community/ror-updates/issues/9645,Add a new organization to ROR: Asthma UK Centre for Applied Research,Asthma UK Centre for Applied Research,https://ror.org/04ect1284,https://ror.org/01nrxwf90,University of Edinburgh,Parent,Production +9645,https://github.com/ror-community/ror-updates/issues/9645,Add a new organization to ROR: Asthma UK Centre for Applied Research,University of Edinburgh,https://ror.org/01nrxwf90,https://ror.org/04ect1284,Asthma UK Centre for Applied Research,Child,Release +9648,https://github.com/ror-community/ror-updates/issues/9648,Add a new organization to ROR: Life Sciences Research Network Wales,Life Sciences Research Network Wales,https://ror.org/0526zh358,https://ror.org/03kk7td41,Cardiff University,Parent,Production +9648,https://github.com/ror-community/ror-updates/issues/9648,Add a new organization to ROR: Life Sciences Research Network Wales,Cardiff University,https://ror.org/03kk7td41,https://ror.org/0526zh358,Life Sciences Research Network Wales,Child,Release +9650,https://github.com/ror-community/ror-updates/issues/9650,Add a new organization to ROR: Royal Marsden Cancer Charity,Royal Marsden Cancer Charity,https://ror.org/058ne9w36,https://ror.org/034vb5t35,Royal Marsden Hospital,Parent,Production +9650,https://github.com/ror-community/ror-updates/issues/9650,Add a new organization to ROR: Royal Marsden Cancer Charity,Royal Marsden Hospital,https://ror.org/034vb5t35,https://ror.org/058ne9w36,Royal Marsden Cancer Charity,Child,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/012zs8222,"University at Albany, State University of New York",Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,"University at Albany, State University of New York",https://ror.org/012zs8222,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/008rmbt77,Binghamton University,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Binghamton University,https://ror.org/008rmbt77,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/0306aeb62,SUNY Brockport,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,SUNY Brockport,https://ror.org/0306aeb62,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/01y64my43,"University at Buffalo, State University of New York",Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,"University at Buffalo, State University of New York",https://ror.org/01y64my43,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/01y64my43,"University at Buffalo, State University of New York",Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,"University at Buffalo, State University of New York",https://ror.org/01y64my43,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/03rwgpn18,Clarkson University,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Clarkson University,https://ror.org/03rwgpn18,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/05bnh6r87,Cornell University,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Cornell University,https://ror.org/05bnh6r87,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/05a4pj207,State University of New York College at Cortland,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,State University of New York College at Cortland,https://ror.org/05a4pj207,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/00qv0tw17,SUNY College of Environmental Science and Forestry,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,SUNY College of Environmental Science and Forestry,https://ror.org/00qv0tw17,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/05vrs0r17,SUNY Fredonia,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,SUNY Fredonia,https://ror.org/05vrs0r17,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/03g1q6c06,State University of New York at Geneseo,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,State University of New York at Geneseo,https://ror.org/03g1q6c06,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/004majf41,Hobart and William Smith Colleges,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Hobart and William Smith Colleges,https://ror.org/004majf41,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/01597g643,State University of New York at Oswego,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,State University of New York at Oswego,https://ror.org/01597g643,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/033zmj163,SUNY Plattsburgh,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,SUNY Plattsburgh,https://ror.org/033zmj163,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/032qgrc76,State University of New York at Potsdam,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,State University of New York at Potsdam,https://ror.org/032qgrc76,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/00v4yb702,Rochester Institute of Technology,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Rochester Institute of Technology,https://ror.org/00v4yb702,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/05pvqha70,St. Lawrence University,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,St. Lawrence University,https://ror.org/05pvqha70,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/025r5qe02,Syracuse University,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Syracuse University,https://ror.org/025r5qe02,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9655,https://github.com/ror-community/ror-updates/issues/9655,Add a new organization to ROR: Osher Center for Integrative Medicine,Osher Center for Integrative Medicine,https://ror.org/00wtrxf04,https://ror.org/04b6nzv94,Brigham and Women's Hospital,Parent,Production +9655,https://github.com/ror-community/ror-updates/issues/9655,Add a new organization to ROR: Osher Center for Integrative Medicine,Brigham and Women's Hospital,https://ror.org/04b6nzv94,https://ror.org/00wtrxf04,Osher Center for Integrative Medicine,Child,Release +9956,https://github.com/ror-community/ror-updates/issues/9956,"Add a new organization to ROR: + +Instituto Tecnológico de San Luis Potosí",Instituto Tecnológico de San Luis Potosí,https://ror.org/04w0a0617,https://ror.org/00davry38,National Technological Institute of Mexico,Parent,Production +9956,https://github.com/ror-community/ror-updates/issues/9956,"Add a new organization to ROR: + +Instituto Tecnológico de San Luis Potosí",National Technological Institute of Mexico,https://ror.org/00davry38,https://ror.org/04w0a0617,Instituto Tecnológico de San Luis Potosí,Child,Release +9968,https://github.com/ror-community/ror-updates/issues/9968,"Add a new organization to ROR: + +Lund Trust",Lund Trust,https://ror.org/017d4c820,https://ror.org/051z6e826,Arcadia Fund,Related,Production +9968,https://github.com/ror-community/ror-updates/issues/9968,"Add a new organization to ROR: + +Lund Trust",Arcadia Fund,https://ror.org/051z6e826,https://ror.org/017d4c820,Lund Trust,Related,Release +9977,https://github.com/ror-community/ror-updates/issues/9977,Add a new organization to ROR - University of Oklahoma Schusterman Center,University of Oklahoma - Tulsa,https://ror.org/04g1a0w27,https://ror.org/02aqsxs83,University of Oklahoma,Parent,Production +9977,https://github.com/ror-community/ror-updates/issues/9977,Add a new organization to ROR - University of Oklahoma Schusterman Center,University of Oklahoma,https://ror.org/02aqsxs83,https://ror.org/04g1a0w27,University of Oklahoma - Tulsa,Child,Release +9980,https://github.com/ror-community/ror-updates/issues/9980,"Add a new organization to ROR: + +INFN Gruppo Collegato di Cosenza",INFN Gruppo Collegato di Cosenza,https://ror.org/039epzh36,https://ror.org/005ta0471,Istituto Nazionale di Fisica Nucleare,Parent,Production +9980,https://github.com/ror-community/ror-updates/issues/9980,"Add a new organization to ROR: + +INFN Gruppo Collegato di Cosenza",Istituto Nazionale di Fisica Nucleare,https://ror.org/005ta0471,https://ror.org/039epzh36,INFN Gruppo Collegato di Cosenza,Child,Release +9980,https://github.com/ror-community/ror-updates/issues/9980,"Add a new organization to ROR: + +INFN Gruppo Collegato di Cosenza",INFN Gruppo Collegato di Cosenza,https://ror.org/039epzh36,https://ror.org/02rc97e94,University of Calabria,Related,Production +9980,https://github.com/ror-community/ror-updates/issues/9980,"Add a new organization to ROR: + +INFN Gruppo Collegato di Cosenza",University of Calabria,https://ror.org/02rc97e94,https://ror.org/039epzh36,INFN Gruppo Collegato di Cosenza,Related,Release +9981,https://github.com/ror-community/ror-updates/issues/9981,"Add a new organization to ROR: + +Center for Open Neuroscience",Center for Open Neuroscience,https://ror.org/04tfhh831,https://ror.org/049s0rh22,Dartmouth College,Related,Production +9981,https://github.com/ror-community/ror-updates/issues/9981,"Add a new organization to ROR: + +Center for Open Neuroscience",Dartmouth College,https://ror.org/049s0rh22,https://ror.org/04tfhh831,Center for Open Neuroscience,Related,Release +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",NODES S.c.a.r.l,https://ror.org/04hp1ky92,https://ror.org/00bgk9508,Polytechnic University of Turin,Related,Production +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",Polytechnic University of Turin,https://ror.org/00bgk9508,https://ror.org/04hp1ky92,NODES S.c.a.r.l,Related,Release +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",NODES S.c.a.r.l,https://ror.org/04hp1ky92,https://ror.org/048tbm396,University of Turin,Related,Production +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",University of Turin,https://ror.org/048tbm396,https://ror.org/04hp1ky92,NODES S.c.a.r.l,Related,Release +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",NODES S.c.a.r.l,https://ror.org/04hp1ky92,https://ror.org/04387x656,University of Eastern Piedmont Amadeo Avogadro,Related,Production +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",University of Eastern Piedmont Amadeo Avogadro,https://ror.org/04387x656,https://ror.org/04hp1ky92,NODES S.c.a.r.l,Related,Release +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",NODES S.c.a.r.l,https://ror.org/04hp1ky92,https://ror.org/00s409261,University of Insubria,Related,Production +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",University of Insubria,https://ror.org/00s409261,https://ror.org/04hp1ky92,NODES S.c.a.r.l,Related,Release +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",NODES S.c.a.r.l,https://ror.org/04hp1ky92,https://ror.org/03126ng80,University of Aosta Valley,Related,Production +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",University of Aosta Valley,https://ror.org/03126ng80,https://ror.org/04hp1ky92,NODES S.c.a.r.l,Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/04b8d7j46,Anabaptist Mennonite Biblical Seminary,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Anabaptist Mennonite Biblical Seminary,https://ror.org/04b8d7j46,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/03cebjr81,Anderson University - Indiana,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Anderson University - Indiana,https://ror.org/03cebjr81,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/02faxbd19,Bethel University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Bethel University,https://ror.org/02faxbd19,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/05gq3a412,Butler University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Butler University,https://ror.org/05gq3a412,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/05vnxnq07,Christian Theological Seminary,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Christian Theological Seminary,https://ror.org/05vnxnq07,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/022fjwc94,Concordia Theological Seminary,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Concordia Theological Seminary,https://ror.org/022fjwc94,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/02mks6v46,DePauw University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",DePauw University,https://ror.org/02mks6v46,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/0566sj483,Earlham College,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Earlham College,https://ror.org/0566sj483,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/05w35s747,Franklin College,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Franklin College,https://ror.org/05w35s747,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/03tj80n37,Goshen College,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Goshen College,https://ror.org/03tj80n37,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/00qsr9g17,Grace College & Seminary,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Grace College & Seminary,https://ror.org/00qsr9g17,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/00vc14296,Hanover College,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Hanover College,https://ror.org/00vc14296,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/054wajj09,Huntington University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Huntington University,https://ror.org/054wajj09,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/02aswte26,Manchester University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Manchester University,https://ror.org/02aswte26,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/00p4ywg82,Marian University - Indiana,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Marian University - Indiana,https://ror.org/00p4ywg82,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/0453rg493,Oakland City University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Oakland City University,https://ror.org/0453rg493,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/045jby416,Saint Mary-of-the-Woods College,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Saint Mary-of-the-Woods College,https://ror.org/045jby416,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/02r839n55,Saint Mary's College,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Saint Mary's College,https://ror.org/02r839n55,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/05tyqjm34,Saint Meinrad Seminary and School of Theology,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Saint Meinrad Seminary and School of Theology,https://ror.org/05tyqjm34,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/005aghs32,Taylor University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Taylor University,https://ror.org/005aghs32,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/038e0dv78,Trine University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Trine University,https://ror.org/038e0dv78,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/052133d12,University of Indianapolis,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",University of Indianapolis,https://ror.org/052133d12,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/01h6pze39,University of Saint Francis,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",University of Saint Francis,https://ror.org/01h6pze39,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/00p11pk44,Wabash College,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Wabash College,https://ror.org/00p11pk44,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +10020,https://github.com/ror-community/ror-updates/issues/10020,Add a new organization to ROR: NVIDIA (Italy),NVIDIA (Italy),https://ror.org/04z2hsy54,https://ror.org/03jdj4y14,Nvidia (United States),Parent,Production +10020,https://github.com/ror-community/ror-updates/issues/10020,Add a new organization to ROR: NVIDIA (Italy),Nvidia (United States),https://ror.org/03jdj4y14,https://ror.org/04z2hsy54,NVIDIA (Italy),Child,Release +10024,https://github.com/ror-community/ror-updates/issues/10024,Add a new organization to ROR: Institutul de Studii Sud-Est Europene,Institutul de Studii Sud-Est Europene,https://ror.org/007bytg49,https://ror.org/0561n6946,Romanian Academy,Parent,Production +10024,https://github.com/ror-community/ror-updates/issues/10024,Add a new organization to ROR: Institutul de Studii Sud-Est Europene,Romanian Academy,https://ror.org/0561n6946,https://ror.org/007bytg49,Institutul de Studii Sud-Est Europene,Child,Release +10052,https://github.com/ror-community/ror-updates/issues/10052,Add a new organization to ROR - Instituto de Ciências Sociais da Universidade de Lisboa,Instituto de Ciências Sociais,https://ror.org/020rfvw83,https://ror.org/01c27hj86,University of Lisbon,Parent,Production +10052,https://github.com/ror-community/ror-updates/issues/10052,Add a new organization to ROR - Instituto de Ciências Sociais da Universidade de Lisboa,University of Lisbon,https://ror.org/01c27hj86,https://ror.org/020rfvw83,Instituto de Ciências Sociais,Child,Release +10051,https://github.com/ror-community/ror-updates/issues/10051,Add a new organization to ROR - Instituto de Medicina Molecular,Instituto de Medicina Molecular João Lobo Antunes,https://ror.org/019g8w217,https://ror.org/01c27hj86,University of Lisbon,Parent,Production +10051,https://github.com/ror-community/ror-updates/issues/10051,Add a new organization to ROR - Instituto de Medicina Molecular,University of Lisbon,https://ror.org/01c27hj86,https://ror.org/019g8w217,Instituto de Medicina Molecular João Lobo Antunes,Child,Release +10049,https://github.com/ror-community/ror-updates/issues/10049,Add a new organization to ROR - Instituto Superior de Engenharia do Porto,Instituto Superior de Engenharia do Porto,https://ror.org/04h7zpy51,https://ror.org/04988re48,Polytechnic Institute of Porto,Parent,Production +10049,https://github.com/ror-community/ror-updates/issues/10049,Add a new organization to ROR - Instituto Superior de Engenharia do Porto,Polytechnic Institute of Porto,https://ror.org/04988re48,https://ror.org/04h7zpy51,Instituto Superior de Engenharia do Porto,Child,Release +10048,https://github.com/ror-community/ror-updates/issues/10048,Add a new organization to ROR: Fundación para la Investigación Médica Aplicada,Fundación para la Investigación Médica Aplicada,https://ror.org/01qew8q20,https://ror.org/02rxc7m23,Universidad de Navarra,Related,Production +10048,https://github.com/ror-community/ror-updates/issues/10048,Add a new organization to ROR: Fundación para la Investigación Médica Aplicada,Universidad de Navarra,https://ror.org/02rxc7m23,https://ror.org/01qew8q20,Fundación para la Investigación Médica Aplicada,Related,Release +10044,https://github.com/ror-community/ror-updates/issues/10044,Add a new organization to ROR: Centro de Estudos Sociais,Centro de Estudos Sociais,https://ror.org/04fab7w85,https://ror.org/04z8k9a98,University of Coimbra,Parent,Production +10044,https://github.com/ror-community/ror-updates/issues/10044,Add a new organization to ROR: Centro de Estudos Sociais,University of Coimbra,https://ror.org/04z8k9a98,https://ror.org/04fab7w85,Centro de Estudos Sociais,Child,Release +10039,https://github.com/ror-community/ror-updates/issues/10039,Add a new organization to ROR: Fondazione Ricerca Biomedica Avanzata Onlus - VIMM,Fondazione Ricerca Biomedica Avanzata Onlus - VIMM,https://ror.org/03q5e6q66,https://ror.org/0048jxt15,Veneto Institute of Molecular Medicine Home,Related,Release +10039,https://github.com/ror-community/ror-updates/issues/10039,Add a new organization to ROR: Fondazione Ricerca Biomedica Avanzata Onlus - VIMM,Veneto Institute of Molecular Medicine Home,https://ror.org/0048jxt15,https://ror.org/03q5e6q66,Fondazione Ricerca Biomedica Avanzata Onlus - VIMM,Related,Release +10030,https://github.com/ror-community/ror-updates/issues/10030,Add a new organization to ROR: The Aga Khan University (International) in the United Kingdom,The Aga Khan University (International) in the United Kingdom,https://ror.org/04m2z2476,https://ror.org/03gd0dm95,Aga Khan University,Parent,Production +10030,https://github.com/ror-community/ror-updates/issues/10030,Add a new organization to ROR: The Aga Khan University (International) in the United Kingdom,Aga Khan University,https://ror.org/03gd0dm95,https://ror.org/04m2z2476,The Aga Khan University (International) in the United Kingdom,Child,Release +10072,https://github.com/ror-community/ror-updates/issues/10072,"Add a new organization to ROR: + +Instituto Politécnico",Instituto Politécnico do Rio de Janeiro,https://ror.org/01g0jwx42,https://ror.org/0198v2949,Rio de Janeiro State University,Parent,Production +10072,https://github.com/ror-community/ror-updates/issues/10072,"Add a new organization to ROR: + +Instituto Politécnico",Rio de Janeiro State University,https://ror.org/0198v2949,https://ror.org/01g0jwx42,Instituto Politécnico do Rio de Janeiro,Child,Release +10071,https://github.com/ror-community/ror-updates/issues/10071,"Add a new organization to ROR: + +Vaccine & Gene Therapy Institute",Vaccine and Gene Therapy Institute,https://ror.org/00d4pqn65,https://ror.org/009avj582,Oregon Health & Science University,Parent,Production +10071,https://github.com/ror-community/ror-updates/issues/10071,"Add a new organization to ROR: + +Vaccine & Gene Therapy Institute",Oregon Health & Science University,https://ror.org/009avj582,https://ror.org/00d4pqn65,Vaccine and Gene Therapy Institute,Child,Release +10060,https://github.com/ror-community/ror-updates/issues/10060,Modify the information in an existing ROR record: Ghana Health Service - https://ror.org/052ss8w32,Ghana Health Service,https://ror.org/052ss8w32,https://ror.org/05c7h4935,Ministry of Health,Parent,Release +10060,https://github.com/ror-community/ror-updates/issues/10060,Modify the information in an existing ROR record: Ghana Health Service - https://ror.org/052ss8w32,Ministry of Health,https://ror.org/05c7h4935,https://ror.org/052ss8w32,Ghana Health Service,Child,Release +10062,https://github.com/ror-community/ror-updates/issues/10062,"Modify the information in an existing ROR record: +Université Saint-Louis https://ror.org/02ygek028 +",Université Saint-Louis,https://ror.org/02ygek028,https://ror.org/02495e989,UCLouvain,Parent,Release +10062,https://github.com/ror-community/ror-updates/issues/10062,"Modify the information in an existing ROR record: +Université Saint-Louis https://ror.org/02ygek028 +",UCLouvain,https://ror.org/02495e989,https://ror.org/02ygek028,Université Saint-Louis,Child,Release +10079,https://github.com/ror-community/ror-updates/issues/10079,"Modify the information in an existing ROR record: +Fresenius Medical Care (Germany) https://ror.org/04sk0bj73 +",Fresenius Medical Care (Germany),https://ror.org/04sk0bj73,https://ror.org/01v376g59,Fresenius (Germany),Related,Release +10079,https://github.com/ror-community/ror-updates/issues/10079,"Modify the information in an existing ROR record: +Fresenius Medical Care (Germany) https://ror.org/04sk0bj73 +",Fresenius (Germany),https://ror.org/01v376g59,https://ror.org/04sk0bj73,Fresenius Medical Care (Germany),Related,Release +10084,https://github.com/ror-community/ror-updates/issues/10084,Modify the information in an existing ROR record: Einaudi Institute for Economics and Finance - https://ror.org/04e874t64,Einaudi Institute for Economics and Finance,https://ror.org/04e874t64,https://ror.org/03v2nbx43,Bank of Italy,Related,Production +10084,https://github.com/ror-community/ror-updates/issues/10084,Modify the information in an existing ROR record: Einaudi Institute for Economics and Finance - https://ror.org/04e874t64,Bank of Italy,https://ror.org/03v2nbx43,https://ror.org/04e874t64,Einaudi Institute for Economics and Finance,Related,Release +10077,https://github.com/ror-community/ror-updates/issues/10077,Add a new organization to ROR: Central Adelaide Local Health Network,Central Adelaide Local Health Network,https://ror.org/02r40rn49,https://ror.org/00carf720,Royal Adelaide Hospital,Child,Production +10077,https://github.com/ror-community/ror-updates/issues/10077,Add a new organization to ROR: Central Adelaide Local Health Network,Royal Adelaide Hospital,https://ror.org/00carf720,https://ror.org/02r40rn49,Central Adelaide Local Health Network,Parent,Release +10077,https://github.com/ror-community/ror-updates/issues/10077,Add a new organization to ROR: Central Adelaide Local Health Network,Central Adelaide Local Health Network,https://ror.org/02r40rn49,https://ror.org/00x362k69,Queen Elizabeth Hospital,Child,Production +10077,https://github.com/ror-community/ror-updates/issues/10077,Add a new organization to ROR: Central Adelaide Local Health Network,Queen Elizabeth Hospital,https://ror.org/00x362k69,https://ror.org/02r40rn49,Central Adelaide Local Health Network,Parent,Release diff --git a/rc-v1.43-v2/updates/0000n5x09.json b/rc-v1.43-v2/updates/0000n5x09.json new file mode 100644 index 000000000..01b0ec315 --- /dev/null +++ b/rc-v1.43-v2/updates/0000n5x09.json @@ -0,0 +1,99 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0373 6662" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "grid.463886.7" + ], + "preferred": "grid.463886.7", + "type": "grid" + } + ], + "id": "https://ror.org/0000n5x09", + "links": [ + { + "type": "website", + "value": "http://umr-iate.cirad.fr/en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Agropolymerpolymer Engineering and Emerging Technologies" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Ingénierie des Agropolymères et Technologies Emergentes" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IATE" + } + ], + "relationships": [ + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "parent", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/000e0be47.json b/rc-v1.43-v2/updates/000e0be47.json new file mode 100644 index 000000000..c8b61c819 --- /dev/null +++ b/rc-v1.43-v2/updates/000e0be47.json @@ -0,0 +1,153 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1851, + "external_ids": [ + { + "all": [ + "100007059", + "100008250", + "100011249", + "100013826" + ], + "preferred": "100007059", + "type": "fundref" + }, + { + "all": [ + "grid.16753.36" + ], + "preferred": "grid.16753.36", + "type": "grid" + }, + { + "all": [ + "0000 0001 2299 3507" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q309350" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/000e0be47", + "links": [ + { + "type": "website", + "value": "http://www.northwestern.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Northwestern_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.04114, + "lng": -87.69006, + "name": "Evanston" + }, + "geonames_id": 4891382 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Northwestern University" + } + ], + "relationships": [ + { + "label": "Center for Light Energy Activated Redox Processes", + "type": "child", + "id": "https://ror.org/004x7d471" + }, + { + "label": "International Institute for Nanotechnology", + "type": "child", + "id": "https://ror.org/00rncr820" + }, + { + "label": "Central DuPage Hospital", + "type": "related", + "id": "https://ror.org/00g1rc256" + }, + { + "label": "Jesse Brown VA Medical Center", + "type": "related", + "id": "https://ror.org/049qtwc86" + }, + { + "label": "John H. Stroger, Jr. Hospital of Cook County", + "type": "related", + "id": "https://ror.org/05626m728" + }, + { + "label": "Lurie Children's Hospital", + "type": "related", + "id": "https://ror.org/03a6zw892" + }, + { + "label": "Northwestern Medicine Lake Forest Hospital", + "type": "related", + "id": "https://ror.org/03fhrtz10" + }, + { + "label": "Northwestern Memorial Hospital", + "type": "related", + "id": "https://ror.org/009543z50" + }, + { + "label": "Shirley Ryan AbilityLab", + "type": "related", + "id": "https://ror.org/02ja0m249" + }, + { + "label": "Northwestern University in Qatar", + "type": "related", + "id": "https://ror.org/006m74d95" + }, + { + "label": "Northwestern Medicine", + "type": "related", + "id": "https://ror.org/04fzwnh64" + }, + { + "label": "Robert H. Lurie Comprehensive Cancer Center of Northwestern University", + "type": "related", + "id": "https://ror.org/02p4far57" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/000ph9k36.json b/rc-v1.43-v2/updates/000ph9k36.json new file mode 100644 index 000000000..872966e65 --- /dev/null +++ b/rc-v1.43-v2/updates/000ph9k36.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1840, + "external_ids": [ + { + "all": [ + "0000 0004 0490 6520" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q43896576" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.488568.f" + ], + "preferred": "grid.488568.f", + "type": "grid" + } + ], + "id": "https://ror.org/000ph9k36", + "links": [ + { + "type": "website", + "value": "https://www.ukw.de/kinderklinik/schwerpunkte/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.79391, + "lng": 9.95121, + "name": "Würzburg" + }, + "geonames_id": 2805615 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Universitäts-Kinderklinik Würzburg" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UKW" + } + ], + "relationships": [ + { + "label": "Universitätsklinikum Würzburg", + "type": "parent", + "id": "https://ror.org/03pvr2g57" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0015ws592.json b/rc-v1.43-v2/updates/0015ws592.json new file mode 100644 index 000000000..04fc174ff --- /dev/null +++ b/rc-v1.43-v2/updates/0015ws592.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 3012834, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.52894, + "lng": 7.71523, + "name": "Illkirch-Graffenstaden" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0638 2716" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.420255.4" + ], + "preferred": "grid.420255.4" + } + ], + "id": "https://ror.org/0015ws592", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.igbmc.fr" + } + ], + "names": [ + { + "value": "Institute of Genetics and Molecular and Cellular Biology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "institut de génétique et de biologie moléculaire et cellulaire", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "Centre Européen de Recherche en Biologie et en Médecine", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "IGBMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/001p3jz28.json b/rc-v1.43-v2/updates/001p3jz28.json new file mode 100644 index 000000000..cbe11a5da --- /dev/null +++ b/rc-v1.43-v2/updates/001p3jz28.json @@ -0,0 +1,147 @@ +{ + "locations": [ + { + "geonames_id": 1259693, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 28.36725, + "lng": 75.60352, + "name": "Pilāni" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1015 3164" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006464" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2648311" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418391.6" + ], + "preferred": "grid.418391.6" + } + ], + "id": "https://ror.org/001p3jz28", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.bits-pilani.ac.in/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Birla_Institute_of_Technology_and_Science" + } + ], + "names": [ + { + "value": "Birla Institute of Technology and Science, Pilani", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BITS Pilani", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "बिरला प्रौद्योगिकी एवं विज्ञान संस्थान", + "types": [ + "label" + ], + "lang": "hi" + }, + { + "value": "ബിർള ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് ടെക്നോളജി ആന്റ് സയൻസ്", + "types": [ + "label" + ], + "lang": "ml" + }, + { + "value": "बिर्ला इन्स्टिट्यूट ऑफ टेक्नोलॉजी अँड सायन्स", + "types": [ + "label" + ], + "lang": "mr" + }, + { + "value": "ਬਿਰਲਾ ਤਕਨਾਲੋਜੀ ਅਤੇ ਵਿਗਿਆਨ ਸੰਸਥਾ", + "types": [ + "label" + ], + "lang": "pa" + }, + { + "value": "பிர்லா தொழில்நுட்பம் மற்றும் அறிவியல் கழகம்", + "types": [ + "label" + ], + "lang": "ta" + }, + { + "value": "బిట్స్ పిలానీ", + "types": [ + "label" + ], + "lang": "te" + } + ], + "relationships": [ + { + "label": "Birla Institute of Technology and Science - Hyderabad Campus", + "type": "child", + "id": "https://ror.org/014ctt859" + }, + { + "label": "Birla Institute of Technology and Science, Pilani - Dubai Campus", + "type": "child", + "id": "https://ror.org/05jnbme07" + }, + { + "label": "Birla Institute of Technology and Science, Pilani - Goa Campus", + "type": "child", + "id": "https://ror.org/046sh6j17" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/001sezm06.json b/rc-v1.43-v2/updates/001sezm06.json new file mode 100644 index 000000000..c29de83e2 --- /dev/null +++ b/rc-v1.43-v2/updates/001sezm06.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 4751935, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89428, + "lng": -77.4311, + "name": "Chantilly" + } + } + ], + "established": 1944, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0421 9542" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3896512" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.456154.7" + ], + "preferred": "grid.456154.7" + } + ], + "id": "https://ror.org/001sezm06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.parsons.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Parsons_Corporation" + } + ], + "names": [ + { + "value": "Parsons (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/001w7jn25.json b/rc-v1.43-v2/updates/001w7jn25.json new file mode 100644 index 000000000..2c780a796 --- /dev/null +++ b/rc-v1.43-v2/updates/001w7jn25.json @@ -0,0 +1,140 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1710, + "external_ids": [ + { + "all": [ + "501100002839" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.6363.0" + ], + "preferred": "grid.6363.0", + "type": "grid" + }, + { + "all": [ + "0000 0001 2218 4662" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q162684" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/001w7jn25", + "links": [ + { + "type": "website", + "value": "https://www.charite.de/en/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Charit%C3%A9" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + }, + "geonames_id": 2950159 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Charité" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Charité - Universitätsmedizin Berlin" + } + ], + "relationships": [ + { + "label": "Berlin Institute of Health at Charité - Universitätsmedizin Berlin", + "type": "child", + "id": "https://ror.org/0493xsw21" + }, + { + "label": "Centre Virchow-Villermé", + "type": "child", + "id": "https://ror.org/03vkhr254" + }, + { + "label": "Einstein Center Digital Future", + "type": "child", + "id": "https://ror.org/0086bb350" + }, + { + "label": "Deutsches Herzzentrum der Charité", + "type": "child", + "id": "https://ror.org/01mmady97" + }, + { + "label": "Carl-Thiem-Klinikum Cottbus", + "type": "related", + "id": "https://ror.org/044fhy270" + }, + { + "label": "Freie Universität Berlin", + "type": "related", + "id": "https://ror.org/046ak2485" + }, + { + "label": "Humboldt-Universität zu Berlin", + "type": "related", + "id": "https://ror.org/01hcx6992" + }, + { + "label": "Waldkrankenhaus Protestant Hospital", + "type": "related", + "id": "https://ror.org/03afbx254" + }, + { + "label": "Wyss Institute for Biologically Inspired Engineering", + "type": "related", + "id": "https://ror.org/008cfmj78" + }, + { + "label": "Stiftung Charité", + "type": "child", + "id": "https://ror.org/016rf0n60" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00235nr42.json b/rc-v1.43-v2/updates/00235nr42.json new file mode 100644 index 000000000..297ee8b2d --- /dev/null +++ b/rc-v1.43-v2/updates/00235nr42.json @@ -0,0 +1,111 @@ +{ + "locations": [ + { + "geonames_id": 3460834, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -22.42556, + "lng": -45.45278, + "name": "Itajubá" + } + } + ], + "established": 1913, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8992 4656" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006241", + "501100005673" + ], + "preferred": "501100006241" + }, + { + "type": "wikidata", + "all": [ + "Q7894372" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.440561.2" + ], + "preferred": "grid.440561.2" + } + ], + "id": "https://ror.org/00235nr42", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://unifei.edu.br" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Federal_University_of_Itajub%C3%A1" + } + ], + "names": [ + { + "value": "Universidade Federal de Itajubá", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Escola Federal de Engenharia de Itajubá", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Federal University of Itajubá", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UNIFEI", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "EFEI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/002kg1049.json b/rc-v1.43-v2/updates/002kg1049.json new file mode 100644 index 000000000..148366a08 --- /dev/null +++ b/rc-v1.43-v2/updates/002kg1049.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3617763, + "geonames_details": { + "country_code": "NI", + "country_name": "Nicaragua", + "lat": 12.13282, + "lng": -86.2504, + "name": "Managua" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6465 5145" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30293812" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.441310.3" + ], + "preferred": "grid.441310.3" + } + ], + "id": "https://ror.org/002kg1049", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ulam.edu.ni" + } + ], + "names": [ + { + "value": "Universidad de las Américas", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ULAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/002ty1h48.json b/rc-v1.43-v2/updates/002ty1h48.json new file mode 100644 index 000000000..967be3756 --- /dev/null +++ b/rc-v1.43-v2/updates/002ty1h48.json @@ -0,0 +1,106 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1960, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9029 5703" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3214506" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463726.2" + ], + "preferred": "grid.463726.2" + } + ], + "id": "https://ror.org/002ty1h48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://luli.ip-paris.fr" + } + ], + "names": [ + { + "value": "Laboratoire pour l'utilisation des lasers intenses", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory for the User of Intense Lasers", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LULI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Atomic Energy and Alternative Energies Commission", + "type": "parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "École Polytechnique", + "type": "parent", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/002v40q27.json b/rc-v1.43-v2/updates/002v40q27.json new file mode 100644 index 000000000..2e3644f89 --- /dev/null +++ b/rc-v1.43-v2/updates/002v40q27.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2982043, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.7326, + "lng": 2.16923, + "name": "Saclay" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30261478" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.465540.6" + ], + "preferred": "grid.465540.6" + } + ], + "id": "https://ror.org/002v40q27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://neuropsi.cnrs.fr" + } + ], + "names": [ + { + "value": "Institut des Neurosciences Paris-Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut des Neurosciences Paris Saclay", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "Paris-Saclay Institute of Neuroscience", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Neuro-PSI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/002zc3t08.json b/rc-v1.43-v2/updates/002zc3t08.json new file mode 100644 index 000000000..dfa7e1f18 --- /dev/null +++ b/rc-v1.43-v2/updates/002zc3t08.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0672 5780" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3152052" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462516.2" + ], + "preferred": "grid.462516.2" + } + ], + "id": "https://ror.org/002zc3t08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.imcce.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Institut_de_m%C3%A9canique_c%C3%A9leste_et_de_calcul_des_%C3%A9ph%C3%A9m%C3%A9rides" + } + ], + "names": [ + { + "value": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IMCCE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Observatoire de Paris", + "type": "parent", + "id": "https://ror.org/029nkcm90" + }, + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "University of Lille", + "type": "parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/003vg9w96.json b/rc-v1.43-v2/updates/003vg9w96.json new file mode 100644 index 000000000..42156304e --- /dev/null +++ b/rc-v1.43-v2/updates/003vg9w96.json @@ -0,0 +1,766 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100022077" + ], + "preferred": "501100022077" + }, + { + "type": "wikidata", + "all": [ + "Q70571774" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.507621.7" + ], + "preferred": "grid.507621.7" + } + ], + "id": "https://ror.org/003vg9w96", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.inrae.fr/" + } + ], + "names": [ + { + "value": "National Research Institute for Agriculture, Food and Environment", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "INRAE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroResonance Platform", + "type": "child", + "id": "https://ror.org/01wzg9f04" + }, + { + "label": "Agroecology", + "type": "child", + "id": "https://ror.org/00mkad321" + }, + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Biologie Fonctionnelle Insectes et Interactions", + "type": "child", + "id": "https://ror.org/03d1jma17" + }, + { + "label": "Biologie des Oiseaux et Aviculture", + "type": "child", + "id": "https://ror.org/02y3mfk39" + }, + { + "label": "Carnot Institute Qualiment", + "type": "child", + "id": "https://ror.org/032k75171" + }, + { + "label": "Centre Bourgogne-Franche-Comté", + "type": "child", + "id": "https://ror.org/002jby155" + }, + { + "label": "Centre Bretagne-Normandie", + "type": "child", + "id": "https://ror.org/01v6wmk25" + }, + { + "label": "Centre Clermont-Auvergne-Rhône-Alpes", + "type": "child", + "id": "https://ror.org/04aqtsh50" + }, + { + "label": "Centre INRAE Grand-Est - Colmar", + "type": "child", + "id": "https://ror.org/00zg31r41" + }, + { + "label": "Centre Nouvelle Aquitaine-Bordeaux", + "type": "child", + "id": "https://ror.org/00tebkv94" + }, + { + "label": "Centre Occitanie-Montpellier", + "type": "child", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Centre Occitanie-Toulouse", + "type": "child", + "id": "https://ror.org/02sxjwh33" + }, + { + "label": "Centre Pays de la Loire", + "type": "child", + "id": "https://ror.org/020jynt45" + }, + { + "label": "Centre Provence-Alpes-Côte d'Azur", + "type": "child", + "id": "https://ror.org/03qbdej90" + }, + { + "label": "Centre Régional d’Innovation et de Transferts Technologiques des Industries du Bois", + "type": "child", + "id": "https://ror.org/016crzw98" + }, + { + "label": "Centre Val de Loire", + "type": "child", + "id": "https://ror.org/03ntmtb29" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biochimie Structurale", + "type": "child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Centre de Corse", + "type": "child", + "id": "https://ror.org/04hrbdg71" + }, + { + "label": "Centre de Recherche en Nutrition Humaine d'Auvergne", + "type": "child", + "id": "https://ror.org/03rzyjb72" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Centre Île-de-France - Jouy-en-Josas - Antony", + "type": "child", + "id": "https://ror.org/00gtg0p11" + }, + { + "label": "Centre Île-de-France - Versailles-Grignon", + "type": "child", + "id": "https://ror.org/02cbapb21" + }, + { + "label": "Dynamique des Génomes et Adaptation Microbienne", + "type": "child", + "id": "https://ror.org/01gbppd30" + }, + { + "label": "Département Alimentation Humaine", + "type": "child", + "id": "https://ror.org/00pgyqh43" + }, + { + "label": "Département Biologie et Amélioration des Plantes", + "type": "child", + "id": "https://ror.org/05r63mf91" + }, + { + "label": "Département Environnement et Agronomie", + "type": "child", + "id": "https://ror.org/01e7wth34" + }, + { + "label": "Département Mathématiques et Informatique Appliquées", + "type": "child", + "id": "https://ror.org/011emb038" + }, + { + "label": "Département Microbiologie et Chaîne Alimentaire", + "type": "child", + "id": "https://ror.org/03n4vkw74" + }, + { + "label": "Département Physiologie Animale et Systèmes d’Élevage", + "type": "child", + "id": "https://ror.org/03tpcfk14" + }, + { + "label": "Département Santé Animale", + "type": "child", + "id": "https://ror.org/024409k12" + }, + { + "label": "Département Santé des Plantes et Environnement", + "type": "child", + "id": "https://ror.org/0455v8x20" + }, + { + "label": "Département Sciences pour l’Action et le Développement", + "type": "child", + "id": "https://ror.org/03vxmn596" + }, + { + "label": "Département Sciences sociales, agriculture et alimentation, espace et environnement", + "type": "child", + "id": "https://ror.org/012221e05" + }, + { + "label": "Département Génétique Animale", + "type": "child", + "id": "https://ror.org/029xmsm82" + }, + { + "label": "Département Écologie des Forêts, Prairies et Milieux Aquatiques", + "type": "child", + "id": "https://ror.org/00yv4p972" + }, + { + "label": "Ecology of Guianan Forests", + "type": "child", + "id": "https://ror.org/04q9vef57" + }, + { + "label": "Field Observatory in Urban Hydrology", + "type": "child", + "id": "https://ror.org/05v3w8223" + }, + { + "label": "Fish Physiology and Genomics Institute", + "type": "child", + "id": "https://ror.org/04xtaw673" + }, + { + "label": "Fractionnation of AgroResources and Environment", + "type": "child", + "id": "https://ror.org/00136g547" + }, + { + "label": "Genomics and Biotechnology of the Fruits Laboratory", + "type": "child", + "id": "https://ror.org/01z0xsq42" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Grenoble Applied Economics Lab", + "type": "child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Groupe de Recherche en Droit, Économie, Gestion", + "type": "child", + "id": "https://ror.org/00rfccx09" + }, + { + "label": "Génétique Animale et Biologie Intégrative", + "type": "child", + "id": "https://ror.org/03rkgeb39" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Human Nutrition Unit", + "type": "child", + "id": "https://ror.org/003qhrc72" + }, + { + "label": "Infectiologie Animale et Santé Publique", + "type": "child", + "id": "https://ror.org/0454zjr22" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Institut Jean-Pierre Bourgin", + "type": "child", + "id": "https://ror.org/01wqd6v19" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institute for Genetics, Environment and Plant Protection", + "type": "child", + "id": "https://ror.org/038kxsm48" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institute of Mechanics and Engineering", + "type": "child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire CarMeN", + "type": "child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Biologiques et des Procédés", + "type": "child", + "id": "https://ror.org/01yypjb30" + }, + { + "label": "Laboratoire de Biotechnologie de l'Environnement", + "type": "child", + "id": "https://ror.org/022m8c549" + }, + { + "label": "Laboratoire de Génétique Cellulaire", + "type": "child", + "id": "https://ror.org/05k317v03" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire des Interactions Plantes Micro-Organismes", + "type": "child", + "id": "https://ror.org/02gwt2810" + }, + { + "label": "Laboratoire des Symbioses Tropicales et Méditerranéennes", + "type": "child", + "id": "https://ror.org/05q94pf14" + }, + { + "label": "Laboratoire Écologie Fonctionnelle et Environnement", + "type": "child", + "id": "https://ror.org/027rbaq21" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Microbial Ecology", + "type": "child", + "id": "https://ror.org/053vv7851" + }, + { + "label": "Nutrition Obesity & Risk of Thrombosis", + "type": "child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "PhysioPathologie des Adaptations Nutritionnelles", + "type": "child", + "id": "https://ror.org/05vb5nm66" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Soil Agro and Hydrosystems Spatialization", + "type": "child", + "id": "https://ror.org/03k4s1p46" + }, + { + "label": "Stem-Cell and Brain Research Institute", + "type": "child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Stress Abiotiques et Différenciation des Végétaux Cultivés", + "type": "child", + "id": "https://ror.org/03wzth680" + }, + { + "label": "TRANSFORM", + "type": "child", + "id": "https://ror.org/00sxj6k90" + }, + { + "label": "Tropical and Mediterranean Cropping System Functioning and Management", + "type": "child", + "id": "https://ror.org/033x0mt18" + }, + { + "label": "UMR BIOdiversity, GEnes & Communities", + "type": "child", + "id": "https://ror.org/033ebya06" + }, + { + "label": "UMR Territoires", + "type": "child", + "id": "https://ror.org/026tc4g97" + }, + { + "label": "Unité Matériaux et Transformations", + "type": "child", + "id": "https://ror.org/03q99v794" + }, + { + "label": "Unité Mixte de Recherche sur les Herbivores", + "type": "child", + "id": "https://ror.org/03yvemy54" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "child", + "id": "https://ror.org/02g6y2720" + }, + { + "label": "Unité de Recherche Pluridisciplinaire Prairies et Plantes Fourragères", + "type": "child", + "id": "https://ror.org/04247y265" + }, + { + "label": "Zone Atelier Moselle", + "type": "child", + "id": "https://ror.org/016vxbe23" + }, + { + "label": "UMR Transfrontalière BioEcoAgro", + "type": "child", + "id": "https://ror.org/032v67m28" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Unité Mixte de Recherche sur les Fromages", + "type": "child", + "id": "https://ror.org/01xbd2h58" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Agri Obtentions (France)", + "type": "child", + "id": "https://ror.org/04db8q179" + }, + { + "label": "Agronomie", + "type": "child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Centre Alpin sur les Réseaux Trophiques et Ecosystèmes Lacustre", + "type": "child", + "id": "https://ror.org/037vdeb02" + }, + { + "label": "Laboratoire d'Etude des Interactions entre Sol-Agrosystème-Hydrosystème", + "type": "child", + "id": "https://ror.org/05deqk823" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "PAnTher - Physiopathologie Animale et bioThérapie du muscle et du système nerveux", + "type": "child", + "id": "https://ror.org/05vex5m10" + }, + { + "label": "Biomécanique et Pathologie Locomotrice du Cheval", + "type": "child", + "id": "https://ror.org/001rmv394" + }, + { + "label": "Infections Virales et Pathologie Comparée", + "type": "child", + "id": "https://ror.org/015a85k79" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Dynamique Musculaire et Métabolisme", + "type": "child", + "id": "https://ror.org/00xffm983" + }, + { + "label": "EMMAH - Environnement Méditerranéen et Modélisation des Agro-Hydrosystèmes", + "type": "child", + "id": "https://ror.org/048bnmc64" + }, + { + "label": "GESTE - Gestion Territoriale de l'Eau et de l'Environnement", + "type": "child", + "id": "https://ror.org/00pz29t13" + }, + { + "label": "Laboratoire d'Ecophysiologie Végétale, Agronomie & nutritions N.C.S", + "type": "child", + "id": "https://ror.org/01s4cye48" + }, + { + "label": "Laboratoire Agronomie et Environnement", + "type": "child", + "id": "https://ror.org/01dg9a450" + }, + { + "label": "Virologie", + "type": "child", + "id": "https://ror.org/0318tzh81" + }, + { + "label": "ITAP - Technologies et Méthodes pour les Agricultures de demain", + "type": "child", + "id": "https://ror.org/00ftatp57" + }, + { + "label": "Ecologie Comportementale et Biologie des Populations de Poissons", + "type": "child", + "id": "https://ror.org/02brsbg31" + }, + { + "label": "Dynamiques et écologie des paysages agriforestiers", + "type": "child", + "id": "https://ror.org/04wa4se75" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Biologie Epidémiologie et Analyse de Risque en santé animale", + "type": "child", + "id": "https://ror.org/059h64789" + }, + { + "label": "Structures et Marchés Agricoles, Ressources et Territoires", + "type": "child", + "id": "https://ror.org/04fa3ke77" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "child", + "id": "https://ror.org/00780az30" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "France Génomique", + "type": "child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "Épidémiologie des maladies Animales et zoonotiques", + "type": "child", + "id": "https://ror.org/03e04sg66" + }, + { + "label": "Unité Mixte de Recherche sur l'Ecosystème Prairial", + "type": "child", + "id": "https://ror.org/02c3c9255" + }, + { + "label": "Biodiversité, Agroécologie et Aménagement du Paysage", + "type": "child", + "id": "https://ror.org/04byv8g40" + }, + { + "label": "Biologie intégrée pour la valorisation de la diversité des arbres et de la forêt", + "type": "child", + "id": "https://ror.org/04f6qd925" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Innovations thérapeutiques et résistances", + "type": "child", + "id": "https://ror.org/01shz5j60" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "child", + "id": "https://ror.org/03j65n394" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Unité de Recherche Agrosystèmes tropicaux", + "type": "child", + "id": "https://ror.org/00vxck708" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Paris School of Economics", + "type": "child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Etude et Compréhension de la biodiversité", + "type": "child", + "id": "https://ror.org/042w6m452" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "child", + "id": "https://ror.org/01225hq90" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/003x0zc53.json b/rc-v1.43-v2/updates/003x0zc53.json new file mode 100644 index 000000000..80915532d --- /dev/null +++ b/rc-v1.43-v2/updates/003x0zc53.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2023-03-30", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-03-30", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2015, + "external_ids": [ + { + "all": [ + "Q32826443" + ], + "preferred": "Q32826443", + "type": "wikidata" + }, + { + "all": [ + "501100011033" + ], + "preferred": "501100011033", + "type": "fundref" + } + ], + "id": "https://ror.org/003x0zc53", + "links": [ + { + "type": "website", + "value": "https://www.aei.gob.es/" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Agencia_Estatal_de_Investigaci%C3%B3n" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + }, + "geonames_id": 3117735 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Agencia Estatal de Investigación" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "AEI" + } + ], + "relationships": [ + { + "label": "Ministerio de Ciencia, Innovación y Universidades", + "type": "parent", + "id": "https://ror.org/05r0vyz12" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0040z4m89.json b/rc-v1.43-v2/updates/0040z4m89.json new file mode 100644 index 000000000..16a82b48d --- /dev/null +++ b/rc-v1.43-v2/updates/0040z4m89.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0508 2314" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30257014" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434904.e" + ], + "preferred": "grid.434904.e" + } + ], + "id": "https://ror.org/0040z4m89", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.geocisa.com/" + } + ], + "names": [ + { + "value": "Geocisa (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "DRACE GEOCISA S.A. (Spain)", + "type": "successor", + "id": "https://ror.org/03gf4dx13" + } + ], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0048jxt15.json b/rc-v1.43-v2/updates/0048jxt15.json new file mode 100644 index 000000000..fd033d446 --- /dev/null +++ b/rc-v1.43-v2/updates/0048jxt15.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 3171728, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.40797, + "lng": 11.88586, + "name": "Padua" + } + } + ], + "established": 2000, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.428736.c" + ], + "preferred": "grid.428736.c" + }, + { + "type": "wikidata", + "all": [ + "Q30287361" + ], + "preferred": "Q30287361" + }, + { + "type": "isni", + "all": [ + "0000 0005 0370 449X" + ], + "preferred": "0000 0005 0370 449X" + } + ], + "id": "https://ror.org/0048jxt15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vimm.it" + } + ], + "names": [ + { + "value": "Veneto Institute of Molecular Medicine Home", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "VIMM - Veneto Institute of Molecular Medicine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Venetian Institute of Molecular Medicine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "VIMM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Fondazione Ricerca Biomedica Avanzata Onlus - VIMM", + "type": "related", + "id": "https://ror.org/03q5e6q66" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/004majf41.json b/rc-v1.43-v2/updates/004majf41.json new file mode 100644 index 000000000..e05751984 --- /dev/null +++ b/rc-v1.43-v2/updates/004majf41.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1818, + "external_ids": [ + { + "all": [ + "grid.257037.4" + ], + "preferred": "grid.257037.4", + "type": "grid" + }, + { + "all": [ + "Q4119316" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/004majf41", + "links": [ + { + "type": "website", + "value": "http://www2.hws.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Hobart_and_William_Smith_Colleges" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.86896, + "lng": -76.97774, + "name": "Geneva" + }, + "geonames_id": 5118398 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "HWS" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hobart and William Smith Colleges" + } + ], + "relationships": [ + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0050cbz19.json b/rc-v1.43-v2/updates/0050cbz19.json new file mode 100644 index 000000000..32fd53ded --- /dev/null +++ b/rc-v1.43-v2/updates/0050cbz19.json @@ -0,0 +1,87 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1975, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51785610" + ], + "preferred": "Q51785610" + } + ], + "id": "https://ror.org/0050cbz19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www6.jouy.inrae.fr/mosar" + } + ], + "names": [ + { + "value": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Modelisation Systemique Appliquee aux Ruminants", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MoSAR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0051rme32.json b/rc-v1.43-v2/updates/0051rme32.json new file mode 100644 index 000000000..40b75f5e0 --- /dev/null +++ b/rc-v1.43-v2/updates/0051rme32.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 1787458, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 34.27173, + "lng": 108.07891, + "name": "Yangling" + } + } + ], + "established": 1934, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1760 4150" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100007548" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q985808" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.144022.1" + ], + "preferred": "grid.144022.1" + } + ], + "id": "https://ror.org/0051rme32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nwsuaf.edu.cn" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Northwest_A%26F_University" + } + ], + "names": [ + { + "value": "Northwest A&F University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Xīběi Nónglín Kējì Dàxué", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "西北农林科技大学", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "NWAFU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00559m198.json b/rc-v1.43-v2/updates/00559m198.json new file mode 100644 index 000000000..0eb8e6cd8 --- /dev/null +++ b/rc-v1.43-v2/updates/00559m198.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3113236, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.54664, + "lng": -6.59619, + "name": "Ponferrada" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424790.c" + ], + "preferred": "grid.424790.c" + } + ], + "id": "https://ror.org/00559m198", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ciuden.es" + } + ], + "names": [ + { + "value": "Fundación Ciudad de la Energía", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUDEN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/005a3p084.json b/rc-v1.43-v2/updates/005a3p084.json new file mode 100644 index 000000000..cd7b259eb --- /dev/null +++ b/rc-v1.43-v2/updates/005a3p084.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1966, + "external_ids": [ + { + "all": [ + "grid.411331.5" + ], + "preferred": "grid.411331.5", + "type": "grid" + }, + { + "all": [ + "0000 0004 1771 1220" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5908637" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/005a3p084", + "links": [ + { + "type": "website", + "value": "http://www.uihunsc.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Hospital_Universitario_Nuestra_Se%C3%B1ora_de_Candelaria" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 28.46824, + "lng": -16.25462, + "name": "Tenerife" + }, + "geonames_id": 2511174 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "HUNSC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hospital Universitario Nuestra Señora de Candelaria" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "University Hospital of the Nuestra Señora de Candelaria" + } + ], + "relationships": [ + { + "label": "Universidad de La Laguna", + "type": "related", + "id": "https://ror.org/01r9z8p25" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/005aghs32.json b/rc-v1.43-v2/updates/005aghs32.json new file mode 100644 index 000000000..870ac9374 --- /dev/null +++ b/rc-v1.43-v2/updates/005aghs32.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1846, + "external_ids": [ + { + "all": [ + "grid.264622.6" + ], + "preferred": "grid.264622.6", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 9449" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7690168" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/005aghs32", + "links": [ + { + "type": "website", + "value": "http://www.taylor.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Taylor_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.4756, + "lng": -85.49442, + "name": "Upland" + }, + "geonames_id": 4927510 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "TU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Taylor University" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/005ta0471.json b/rc-v1.43-v2/updates/005ta0471.json new file mode 100644 index 000000000..471d5b284 --- /dev/null +++ b/rc-v1.43-v2/updates/005ta0471.json @@ -0,0 +1,258 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1951, + "external_ids": [ + { + "all": [ + "501100004007", + "501100013168" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.6045.7" + ], + "preferred": "grid.6045.7", + "type": "grid" + }, + { + "all": [ + "0000 0004 1757 5281" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1674876" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/005ta0471", + "links": [ + { + "type": "website", + "value": "https://home.infn.it" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Istituto_Nazionale_di_Fisica_Nucleare" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 41.89193, + "lng": 12.51133, + "name": "Rome" + }, + "geonames_id": 3169070 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "INFN" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Istituto Nazionale di Fisica Nucleare" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "National Institute for Nuclear Physics" + } + ], + "relationships": [ + { + "label": "Centro Siciliano di Fisica Nucleare e di Struttura della Materia", + "type": "child", + "id": "https://ror.org/02wdzfm91" + }, + { + "label": "Galileo Galilei Institute for Theoretical Physics", + "type": "child", + "id": "https://ror.org/030ws5c69" + }, + { + "label": "Gran Sasso National Laboratory", + "type": "child", + "id": "https://ror.org/02s8k0k61" + }, + { + "label": "Gran Sasso Science Institute", + "type": "child", + "id": "https://ror.org/043qcb444" + }, + { + "label": "INFN Sezione di Bari", + "type": "child", + "id": "https://ror.org/022hq6c49" + }, + { + "label": "INFN Sezione di Bologna", + "type": "child", + "id": "https://ror.org/04j0x0h93" + }, + { + "label": "INFN Sezione di Cagliari", + "type": "child", + "id": "https://ror.org/03paz5966" + }, + { + "label": "INFN Sezione di Catania", + "type": "child", + "id": "https://ror.org/02pq29p90" + }, + { + "label": "INFN Sezione di Ferrara", + "type": "child", + "id": "https://ror.org/00zs3y046" + }, + { + "label": "INFN Sezione di Firenze", + "type": "child", + "id": "https://ror.org/02vv5y108" + }, + { + "label": "INFN Sezione di Genova", + "type": "child", + "id": "https://ror.org/02v89pq06" + }, + { + "label": "INFN Sezione di Lecce", + "type": "child", + "id": "https://ror.org/00qrf6g60" + }, + { + "label": "INFN Sezione di Milano", + "type": "child", + "id": "https://ror.org/04w4m6z96" + }, + { + "label": "INFN Sezione di Milano Bicocca", + "type": "child", + "id": "https://ror.org/03xejxm22" + }, + { + "label": "INFN Sezione di Napoli", + "type": "child", + "id": "https://ror.org/015kcdd40" + }, + { + "label": "INFN Sezione di Padova", + "type": "child", + "id": "https://ror.org/00z34yn88" + }, + { + "label": "INFN Sezione di Pavia", + "type": "child", + "id": "https://ror.org/01st30669" + }, + { + "label": "INFN Sezione di Perugia", + "type": "child", + "id": "https://ror.org/05478fx36" + }, + { + "label": "INFN Sezione di Pisa", + "type": "child", + "id": "https://ror.org/05symbg58" + }, + { + "label": "INFN Sezione di Roma I", + "type": "child", + "id": "https://ror.org/05eva6s33" + }, + { + "label": "INFN Sezione di Roma II", + "type": "child", + "id": "https://ror.org/025rrx658" + }, + { + "label": "INFN Sezione di Roma III", + "type": "child", + "id": "https://ror.org/009wnjh50" + }, + { + "label": "INFN Sezione di Torino", + "type": "child", + "id": "https://ror.org/01vj6ck58" + }, + { + "label": "INFN Sezione di Trieste", + "type": "child", + "id": "https://ror.org/05j3snm48" + }, + { + "label": "Laboratori Nazionali del Sud", + "type": "child", + "id": "https://ror.org/02k1zhm92" + }, + { + "label": "Legnaro National Laboratories", + "type": "child", + "id": "https://ror.org/025e3ct30" + }, + { + "label": "National Center for Frame Analysis", + "type": "child", + "id": "https://ror.org/001d5wc61" + }, + { + "label": "National Laboratory of Frascati", + "type": "child", + "id": "https://ror.org/049jf1a25" + }, + { + "label": "Trento Institute for Fundamental Physics and Applications", + "type": "child", + "id": "https://ror.org/00nhs3j29" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + }, + { + "label": "INFN Gruppo Collegato di Cosenza", + "type": "child", + "id": "https://ror.org/039epzh36" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00675rp98.json b/rc-v1.43-v2/updates/00675rp98.json new file mode 100644 index 000000000..87e555e06 --- /dev/null +++ b/rc-v1.43-v2/updates/00675rp98.json @@ -0,0 +1,106 @@ +{ + "locations": [ + { + "geonames_id": 2538475, + "geonames_details": { + "country_code": "MA", + "country_name": "Morocco", + "lat": 34.01325, + "lng": -6.83255, + "name": "Rabat" + } + } + ], + "established": 1975, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0441 6417" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006319" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423788.2" + ], + "preferred": "grid.423788.2" + }, + { + "type": "wikidata", + "all": [ + "Q30284534" + ], + "preferred": "Q30284534" + } + ], + "id": "https://ror.org/00675rp98", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cnrst.ma" + } + ], + "names": [ + { + "value": "Centre National pour la Recherche Scientifique et Technique (CNRST)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre National pour la Recherche Scientifique et Technique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Center for Scientific and Technical Research (CNRST)", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "المركز الوطني للبحث العلمي والتقني", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "CNRST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/006e5kg04.json b/rc-v1.43-v2/updates/006e5kg04.json new file mode 100644 index 000000000..ddc4dc680 --- /dev/null +++ b/rc-v1.43-v2/updates/006e5kg04.json @@ -0,0 +1,130 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1834, + "external_ids": [ + { + "all": [ + "501100004418" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.8767.e" + ], + "preferred": "grid.8767.e", + "type": "grid" + }, + { + "all": [ + "0000 0001 2290 8069" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q612665" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/006e5kg04", + "links": [ + { + "type": "website", + "value": "http://www.vub.ac.be/en/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Vrije_Universiteit_Brussel" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + }, + "geonames_id": 2800866 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "VUB" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Vrije Universiteit Brussel" + } + ], + "relationships": [ + { + "label": "Interuniversity Institute for High Energies", + "type": "child", + "id": "https://ror.org/040w2dm02" + }, + { + "label": "VIB-VUB Center for Structural Biology", + "type": "child", + "id": "https://ror.org/03e84cm85" + }, + { + "label": "VIB-VUB Laboratory Myeloid Cell Immunology", + "type": "child", + "id": "https://ror.org/05y4fay10" + }, + { + "label": "Brussels School of International Studies", + "type": "related", + "id": "https://ror.org/002kn6n54" + }, + { + "label": "Centre Hospitalier Universitaire de Saint-Pierre", + "type": "related", + "id": "https://ror.org/05cmp5q80" + }, + { + "label": "Queen Fabiola Children's University Hospital", + "type": "related", + "id": "https://ror.org/01t5yh786" + }, + { + "label": "Universitair Ziekenhuis Brussel", + "type": "related", + "id": "https://ror.org/038f7y939" + }, + { + "label": "European Association for Education Law and Policy", + "type": "related", + "id": "https://ror.org/016782g02" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/006m74d95.json b/rc-v1.43-v2/updates/006m74d95.json new file mode 100644 index 000000000..6d65e7aef --- /dev/null +++ b/rc-v1.43-v2/updates/006m74d95.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 290030, + "geonames_details": { + "country_code": "QA", + "country_name": "Qatar", + "lat": 25.28545, + "lng": 51.53096, + "name": "Doha" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0548 1261", + "0000 0004 9474 7403" + ], + "preferred": "0000 0004 0548 1261" + }, + { + "type": "wikidata", + "all": [ + "Q890759" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.452115.6" + ], + "preferred": "grid.452115.6" + } + ], + "id": "https://ror.org/006m74d95", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.qatar.northwestern.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Northwestern_University_in_Qatar" + } + ], + "names": [ + { + "value": "Northwestern University in Qatar", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidad del noroeste", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "NU-Q", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Northwestern University", + "type": "related", + "id": "https://ror.org/000e0be47" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/007sts724.json b/rc-v1.43-v2/updates/007sts724.json new file mode 100644 index 000000000..fad467bc6 --- /dev/null +++ b/rc-v1.43-v2/updates/007sts724.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 5454627, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.89953, + "lng": -105.96027, + "name": "Alamogordo" + } + } + ], + "established": 1958, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4650 5039" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q7010288" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.449449.0" + ], + "preferred": "grid.449449.0" + } + ], + "id": "https://ror.org/007sts724", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://alamogordo.nmsu.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/New_Mexico_State_University_Alamogordo" + } + ], + "names": [ + { + "value": "New Mexico State University Alamogordo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NMSU Alamogordo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NMSU-A", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "New Mexico State University", + "type": "parent", + "id": "https://ror.org/00hpz7z43" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/007x3c094.json b/rc-v1.43-v2/updates/007x3c094.json new file mode 100644 index 000000000..71546acab --- /dev/null +++ b/rc-v1.43-v2/updates/007x3c094.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1990, + "external_ids": [ + { + "all": [ + "grid.457096.9" + ], + "preferred": "grid.457096.9", + "type": "grid" + } + ], + "id": "https://ror.org/007x3c094", + "links": [ + { + "type": "website", + "value": "http://www.dr1.cnrs.fr/spip.php?article118" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.76496, + "lng": 2.3961, + "name": "Thiais" + }, + "geonames_id": 2972893 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Délégation Paris-Villejuif-03" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "DR03" + } + ], + "relationships": [ + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/008kn4z11.json b/rc-v1.43-v2/updates/008kn4z11.json new file mode 100644 index 000000000..7e47ab594 --- /dev/null +++ b/rc-v1.43-v2/updates/008kn4z11.json @@ -0,0 +1,115 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.457095.a" + ], + "preferred": "grid.457095.a" + } + ], + "id": "https://ror.org/008kn4z11", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iledefrance-villejuif.cnrs.fr/" + } + ], + "names": [ + { + "value": "Délégation Ile-de-France Villejuif", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DR01", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "parent", + "id": "https://ror.org/03yz3tz18" + }, + { + "label": "Architecture Urbanisme Société : Savoirs, Enseignement, Recherche", + "type": "child", + "id": "https://ror.org/0157t2j08" + }, + { + "label": "Centre de Recherche de l'Institut de Démographie de l'Université Paris 1", + "type": "child", + "id": "https://ror.org/02rv1bf67" + }, + { + "label": "Centre de Sociologie Européenne", + "type": "child", + "id": "https://ror.org/05qn0z879" + }, + { + "label": "Institut Carnot ARTS", + "type": "child", + "id": "https://ror.org/04zr5ey71" + }, + { + "label": "International College of Territorial Sciences", + "type": "child", + "id": "https://ror.org/002t9r032" + }, + { + "label": "Laboratoire d'Économie Mathématique et de Microéconomie Appliquée", + "type": "child", + "id": "https://ror.org/003ckn545" + }, + { + "label": "Population and Development Center", + "type": "child", + "id": "https://ror.org/002yg6s88" + }, + { + "label": "Research Institute on the Foundations of Computer Science", + "type": "child", + "id": "https://ror.org/02krdtz55" + }, + { + "label": "Équipe de Recherche sur l’Utilisation des Données Individuelles en Lien avec la Théorie Économique", + "type": "child", + "id": "https://ror.org/047egvh76" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/008rmbt77.json b/rc-v1.43-v2/updates/008rmbt77.json new file mode 100644 index 000000000..4941c92c7 --- /dev/null +++ b/rc-v1.43-v2/updates/008rmbt77.json @@ -0,0 +1,121 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1946, + "external_ids": [ + { + "all": [ + "100008451" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.264260.4" + ], + "preferred": "grid.264260.4", + "type": "grid" + }, + { + "all": [ + "0000 0001 2164 4508" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q863813" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/008rmbt77", + "links": [ + { + "type": "website", + "value": "https://www.binghamton.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Binghamton_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.09869, + "lng": -75.91797, + "name": "Binghamton" + }, + "geonames_id": 5109177 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Binghamton University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "SUNY Binghamton" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "State University of New York, Binghamton" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de Binghamton" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/008rywf59.json b/rc-v1.43-v2/updates/008rywf59.json new file mode 100644 index 000000000..f6f1b3ee2 --- /dev/null +++ b/rc-v1.43-v2/updates/008rywf59.json @@ -0,0 +1,114 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1961, + "external_ids": [ + { + "all": [ + "0000 0001 2169 1275" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q30255991" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.433534.6" + ], + "preferred": "grid.433534.6", + "type": "grid" + } + ], + "id": "https://ror.org/008rywf59", + "links": [ + { + "type": "website", + "value": "http://www.cefe.cnrs.fr/fr/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Centre d'Écologie Fonctionnelle et Évolutive" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CEFE" + } + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Écologie et Environnement", + "type": "parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université Paul-Valéry Montpellier", + "type": "parent", + "id": "https://ror.org/00qhdy563" + }, + { + "label": "École Pratique des Hautes Études", + "type": "parent", + "id": "https://ror.org/046b3cj80" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0090zs177.json b/rc-v1.43-v2/updates/0090zs177.json new file mode 100644 index 000000000..3a380d5a4 --- /dev/null +++ b/rc-v1.43-v2/updates/0090zs177.json @@ -0,0 +1,124 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1895, + "external_ids": [ + { + "all": [ + "100011326" + ], + "preferred": "100011326", + "type": "fundref" + }, + { + "all": [ + "grid.13063.37" + ], + "preferred": "grid.13063.37", + "type": "grid" + }, + { + "all": [ + "0000 0001 0789 5319" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q174570" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/0090zs177", + "links": [ + { + "type": "website", + "value": "http://www.lse.ac.uk/home.aspx" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/London_School_of_Economics" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LSE" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "London School of Economics" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "London School of Economics and Political Science" + }, + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Ysgol Economeg a Gwyddor Gwleidyddiaeth Llundain" + } + ], + "relationships": [ + { + "label": "Systemic Risk Centre", + "type": "child", + "id": "https://ror.org/05d88z031" + }, + { + "label": "International Growth Centre", + "type": "child", + "id": "https://ror.org/01zgm7d48" + }, + { + "label": "University of London", + "type": "parent", + "id": "https://ror.org/04cw6st05" + }, + { + "label": "Centre for Climate Change Economics and Policy", + "type": "child", + "id": "https://ror.org/03tsg3y65" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/009avj582.json b/rc-v1.43-v2/updates/009avj582.json new file mode 100644 index 000000000..1b966faff --- /dev/null +++ b/rc-v1.43-v2/updates/009avj582.json @@ -0,0 +1,152 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1974, + "external_ids": [ + { + "all": [ + "100006668", + "100006667", + "100007804", + "100007269" + ], + "preferred": "100006668", + "type": "fundref" + }, + { + "all": [ + "grid.5288.7" + ], + "preferred": "grid.5288.7", + "type": "grid" + }, + { + "all": [ + "0000 0000 9758 5690" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q282097" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/009avj582", + "links": [ + { + "type": "website", + "value": "http://www.ohsu.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Oregon_Health_%26_Science_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 45.52345, + "lng": -122.67621, + "name": "Portland" + }, + "geonames_id": 5746545 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "OHSU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Oregon Health & Science University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Oregon Health Sciences University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Oregon Health Sciences Center" + } + ], + "relationships": [ + { + "label": "OHSU Knight Cancer Institute", + "type": "child", + "id": "https://ror.org/002shna07" + }, + { + "label": "Doernbecher Children's Hospital", + "type": "related", + "id": "https://ror.org/049w1th24" + }, + { + "label": "Oregon Health and Science University Hospital", + "type": "related", + "id": "https://ror.org/0488bnd65" + }, + { + "label": "Oregon National Primate Research Center", + "type": "related", + "id": "https://ror.org/05fcfqq67" + }, + { + "label": "Portland VA Medical Center", + "type": "related", + "id": "https://ror.org/02v3txv81" + }, + { + "label": "Salem Hospital", + "type": "related", + "id": "https://ror.org/00rfgpg89" + }, + { + "label": "Shriners Hospitals for Children - Portland", + "type": "related", + "id": "https://ror.org/00snwj435" + }, + { + "label": "Vollum Institute", + "type": "related", + "id": "https://ror.org/054hm6j14" + }, + { + "label": "Vaccine and Gene Therapy Institute", + "type": "child", + "id": "https://ror.org/00d4pqn65" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00a7bnr15.json b/rc-v1.43-v2/updates/00a7bnr15.json new file mode 100644 index 000000000..7f48897e4 --- /dev/null +++ b/rc-v1.43-v2/updates/00a7bnr15.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0614 8604" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434278.e" + ], + "preferred": "grid.434278.e" + } + ], + "id": "https://ror.org/00a7bnr15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fundae.es" + } + ], + "names": [ + { + "value": "Fundación Tripartita para la Formación en el Empleo", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00ae7jd04.json b/rc-v1.43-v2/updates/00ae7jd04.json new file mode 100644 index 000000000..58e8e7d4a --- /dev/null +++ b/rc-v1.43-v2/updates/00ae7jd04.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1944, + "external_ids": [ + { + "all": [ + "100004421" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.431778.e" + ], + "preferred": "grid.431778.e", + "type": "grid" + }, + { + "all": [ + "0000 0004 0482 9086" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7164" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00ae7jd04", + "links": [ + { + "type": "website", + "value": "http://www.worldbank.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/World_Bank" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + }, + "geonames_id": 4140963 + } + ], + "names": [ + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Banque Mondiale" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "World Bank" + } + ], + "relationships": [ + { + "label": "World Bank Group", + "type": "parent", + "id": "https://ror.org/02md09461" + }, + { + "label": "Special Programme for Research and Training in Tropical Diseases", + "type": "child", + "id": "https://ror.org/046j7pv84" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00ajjta07.json b/rc-v1.43-v2/updates/00ajjta07.json new file mode 100644 index 000000000..8b51e2cc6 --- /dev/null +++ b/rc-v1.43-v2/updates/00ajjta07.json @@ -0,0 +1,111 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51784779" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503243.3" + ], + "preferred": "grid.503243.3" + } + ], + "id": "https://ror.org/00ajjta07", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ips2.u-psud.fr" + } + ], + "names": [ + { + "value": "Institut des Sciences des Plantes de Paris Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Paris Saclay Institute of Plant Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institute of Plant Sciences of Paris Saclay", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IPS2", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Paris Cité", + "type": "parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "University of Évry Val d'Essonne", + "type": "parent", + "id": "https://ror.org/00e96v939" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00ayhx656.json b/rc-v1.43-v2/updates/00ayhx656.json new file mode 100644 index 000000000..46e846a75 --- /dev/null +++ b/rc-v1.43-v2/updates/00ayhx656.json @@ -0,0 +1,120 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-04-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1961, + "external_ids": [ + { + "all": [ + "501100000838" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.12082.39" + ], + "preferred": "grid.12082.39", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 7590" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1161297" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00ayhx656", + "links": [ + { + "type": "website", + "value": "http://www.sussex.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Sussex" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.82838, + "lng": -0.13947, + "name": "Brighton" + }, + "geonames_id": 2654710 + } + ], + "names": [ + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Prifysgol Sussex" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Sussex" + } + ], + "relationships": [ + { + "label": "Brighton and Sussex Medical School", + "type": "child", + "id": "https://ror.org/01qz7fr76" + }, + { + "label": "Brighton General Hospital", + "type": "related", + "id": "https://ror.org/04dns5t03" + }, + { + "label": "Institute of Development Studies", + "type": "related", + "id": "https://ror.org/0288jxv49" + }, + { + "label": "Princess Royal Hospital", + "type": "related", + "id": "https://ror.org/0573ts924" + }, + { + "label": "Royal Sussex County Hospital", + "type": "related", + "id": "https://ror.org/05fe2n505" + }, + { + "label": "Centre on Innovation and Energy Demand", + "type": "child", + "id": "https://ror.org/00g1jn849" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00b80ez59.json b/rc-v1.43-v2/updates/00b80ez59.json new file mode 100644 index 000000000..5c99dceac --- /dev/null +++ b/rc-v1.43-v2/updates/00b80ez59.json @@ -0,0 +1,97 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.503166.7" + ], + "preferred": "grid.503166.7", + "type": "grid" + } + ], + "id": "https://ror.org/00b80ez59", + "links": [ + { + "type": "website", + "value": "http://www.umr-ecosols.fr/en/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Functional Ecology and Biogeochemistry of Soils and Agrosystems" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Eco & Sols" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes" + } + ], + "relationships": [ + { + "label": "Centre Occitanie-Montpellier", + "type": "parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00bep5t26.json b/rc-v1.43-v2/updates/00bep5t26.json new file mode 100644 index 000000000..97e5b0e8f --- /dev/null +++ b/rc-v1.43-v2/updates/00bep5t26.json @@ -0,0 +1,110 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1907, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2291 9040" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1200925" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462577.5" + ], + "preferred": "grid.462577.5" + } + ], + "id": "https://ror.org/00bep5t26", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bnc.cat" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/National_Library_of_Catalonia" + } + ], + "names": [ + { + "value": "National Library of Catalonia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Bibliotèca de Catalonha", + "types": [ + "label" + ], + "lang": "oc" + }, + { + "value": "Biblioteca de Catalunya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Kataluniako Liburutegia", + "types": [ + "label" + ], + "lang": "eu" + }, + { + "value": "Biblioteca de Catalunya", + "types": [ + "label" + ], + "lang": "gl" + }, + { + "value": "Biblioteca de Cataluña", + "types": [ + "label" + ], + "lang": "es" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00bgk9508.json b/rc-v1.43-v2/updates/00bgk9508.json new file mode 100644 index 000000000..5fc81e868 --- /dev/null +++ b/rc-v1.43-v2/updates/00bgk9508.json @@ -0,0 +1,107 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1859, + "external_ids": [ + { + "all": [ + "100013000" + ], + "preferred": "100013000", + "type": "fundref" + }, + { + "all": [ + "grid.4800.c" + ], + "preferred": "grid.4800.c", + "type": "grid" + }, + { + "all": [ + "0000 0004 1937 0343" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q392897" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00bgk9508", + "links": [ + { + "type": "website", + "value": "http://www.polito.it/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Polytechnic_University_of_Turin" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.07049, + "lng": 7.68682, + "name": "Turin" + }, + "geonames_id": 3165524 + } + ], + "names": [ + { + "lang": "it", + "types": [ + "label" + ], + "value": "Politecnico di Torino" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Polytechnic University of Turin" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "École Polytechnique de Turin" + } + ], + "relationships": [ + { + "label": "Institute for Complex Systems", + "type": "related", + "id": "https://ror.org/05rcgef49" + }, + { + "label": "NODES S.c.a.r.l", + "type": "related", + "id": "https://ror.org/04hp1ky92" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00bv2aa44.json b/rc-v1.43-v2/updates/00bv2aa44.json new file mode 100644 index 000000000..09102f04d --- /dev/null +++ b/rc-v1.43-v2/updates/00bv2aa44.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 4355843, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.14344, + "lng": -77.20137, + "name": "Gaithersburg" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011016" + ], + "preferred": "501100011016" + }, + { + "type": "grid", + "all": [ + "grid.511415.5" + ], + "preferred": "grid.511415.5" + } + ], + "id": "https://ror.org/00bv2aa44", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.stcube.com/" + } + ], + "names": [ + { + "value": "STCube (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "STCube Pharmaceuticals", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "STCube Pharmaceuticals, Inc.", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00by1q217.json b/rc-v1.43-v2/updates/00by1q217.json new file mode 100644 index 000000000..db68ef38a --- /dev/null +++ b/rc-v1.43-v2/updates/00by1q217.json @@ -0,0 +1,266 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-08-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1896, + "external_ids": [ + { + "all": [ + "100004337", + "100007013" + ], + "preferred": "100004337", + "type": "fundref" + }, + { + "all": [ + "grid.417570.0" + ], + "preferred": "grid.417570.0", + "type": "grid" + }, + { + "all": [ + "0000 0004 0374 1269" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q212646" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00by1q217", + "links": [ + { + "type": "website", + "value": "http://www.roche.ch/en/index.htm" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Hoffmann-La_Roche" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 47.55839, + "lng": 7.57327, + "name": "Basel" + }, + "geonames_id": 2661604 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Hoffmann-La Roche" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Roche (Switzerland)" + } + ], + "relationships": [ + { + "label": "Roche (Austria)", + "type": "child", + "id": "https://ror.org/03cwbzb16" + }, + { + "label": "Roche (Belgium)", + "type": "child", + "id": "https://ror.org/00e65d634" + }, + { + "label": "Roche (Bolivia)", + "type": "child", + "id": "https://ror.org/05c66m157" + }, + { + "label": "Roche (Bosnia-Herzegovina)", + "type": "child", + "id": "https://ror.org/04gbzz966" + }, + { + "label": "Roche (Canada)", + "type": "child", + "id": "https://ror.org/006hrz834" + }, + { + "label": "Roche (Chile)", + "type": "child", + "id": "https://ror.org/050q8cm26" + }, + { + "label": "Roche (China)", + "type": "child", + "id": "https://ror.org/02hv5e369" + }, + { + "label": "Roche (Czechia)", + "type": "child", + "id": "https://ror.org/01hyc1n91" + }, + { + "label": "Roche (Denmark)", + "type": "child", + "id": "https://ror.org/04seaqh41" + }, + { + "label": "Roche (Ecuador)", + "type": "child", + "id": "https://ror.org/03836m928" + }, + { + "label": "Roche (Estonia)", + "type": "child", + "id": "https://ror.org/013js5t03" + }, + { + "label": "Roche (Finland)", + "type": "child", + "id": "https://ror.org/00awvt671" + }, + { + "label": "Roche (France)", + "type": "child", + "id": "https://ror.org/01mqmer16" + }, + { + "label": "Roche Pharma AG (Germany)", + "type": "child", + "id": "https://ror.org/00sh68184" + }, + { + "label": "Roche (Greece)", + "type": "child", + "id": "https://ror.org/0392c7938" + }, + { + "label": "Roche (Hungary)", + "type": "child", + "id": "https://ror.org/02ta1jp69" + }, + { + "label": "Roche (India)", + "type": "child", + "id": "https://ror.org/005bzjd21" + }, + { + "label": "Roche (Ireland)", + "type": "child", + "id": "https://ror.org/0152gf261" + }, + { + "label": "Roche (Israel)", + "type": "child", + "id": "https://ror.org/05sy11p04" + }, + { + "label": "Roche (Italy)", + "type": "child", + "id": "https://ror.org/01x544h30" + }, + { + "label": "Roche (Japan)", + "type": "child", + "id": "https://ror.org/01vepzj85" + }, + { + "label": "Roche (Lebanon)", + "type": "child", + "id": "https://ror.org/05cpg6260" + }, + { + "label": "Roche (Netherlands)", + "type": "child", + "id": "https://ror.org/01gcg9888" + }, + { + "label": "Roche (Nicaragua)", + "type": "child", + "id": "https://ror.org/03jg7pr54" + }, + { + "label": "Roche (Norway)", + "type": "child", + "id": "https://ror.org/05v9ym429" + }, + { + "label": "Roche (Portugal)", + "type": "child", + "id": "https://ror.org/04zt79h83" + }, + { + "label": "Roche (Romania)", + "type": "child", + "id": "https://ror.org/04qr62034" + }, + { + "label": "Roche (South Korea)", + "type": "child", + "id": "https://ror.org/030nky627" + }, + { + "label": "Roche (Spain)", + "type": "child", + "id": "https://ror.org/04b8zcj45" + }, + { + "label": "Roche (Sweden)", + "type": "child", + "id": "https://ror.org/055rf7657" + }, + { + "label": "Roche (Tunisia)", + "type": "child", + "id": "https://ror.org/02tnr6p29" + }, + { + "label": "Roche (Turkey)", + "type": "child", + "id": "https://ror.org/05h9m3b45" + }, + { + "label": "Roche (United Kingdom)", + "type": "child", + "id": "https://ror.org/024tgbv41" + }, + { + "label": "Roche (United States)", + "type": "child", + "id": "https://ror.org/011qkaj49" + }, + { + "label": "Foundation Medicine (United States)", + "type": "child", + "id": "https://ror.org/02ackr434" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00ca2c886.json b/rc-v1.43-v2/updates/00ca2c886.json new file mode 100644 index 000000000..3fb9e58e1 --- /dev/null +++ b/rc-v1.43-v2/updates/00ca2c886.json @@ -0,0 +1,204 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1986, + "external_ids": [ + { + "all": [ + "0000 0000 9314 1427" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100004587" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q5918335" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.413448.e" + ], + "preferred": "grid.413448.e", + "type": "grid" + } + ], + "id": "https://ror.org/00ca2c886", + "links": [ + { + "type": "website", + "value": "http://www.isciii.es/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Carlos_III_Health_Institute" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + }, + "geonames_id": 3117735 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Instituto de Salud Carlos III" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Carlos III Health Institute" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Institute of Health Carlos III" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ISCIII" + } + ], + "relationships": [ + { + "label": "Agencia de Evaluación de Tecnologías Sanitarias", + "type": "child", + "id": "https://ror.org/05qs5k564" + }, + { + "label": "Biblioteca Nacional de Ciencias de la Salud", + "type": "child", + "id": "https://ror.org/05s16e423" + }, + { + "label": "Centro Nacional de Epidemiología", + "type": "child", + "id": "https://ror.org/01dd3fd62" + }, + { + "label": "Centro Nacional de Medicina Tropical", + "type": "child", + "id": "https://ror.org/00w603503" + }, + { + "label": "Centro Nacional de Microbiologia", + "type": "child", + "id": "https://ror.org/019ytz097" + }, + { + "label": "Centro Nacional de Sanidad Ambiental", + "type": "child", + "id": "https://ror.org/01rd4et50" + }, + { + "label": "Centro de Investigación Biomédica en Red", + "type": "child", + "id": "https://ror.org/02g87qh62" + }, + { + "label": "Centro de Investigación Biomédica en Red Diabetes y Enfermedades Metabólicas Asociadas", + "type": "child", + "id": "https://ror.org/00dwgct76" + }, + { + "label": "Centro de Investigación Biomédica en Red de Salud Mental", + "type": "child", + "id": "https://ror.org/009byq155" + }, + { + "label": "Escuela Nacional de Medicina del Trabajo", + "type": "child", + "id": "https://ror.org/00g86hk06" + }, + { + "label": "Escuela Nacional de Sanidad", + "type": "child", + "id": "https://ror.org/003xj6z62" + }, + { + "label": "Museo Nacional de Sanidad", + "type": "child", + "id": "https://ror.org/04zbc6m03" + }, + { + "label": "Red de Investigación en Sida", + "type": "child", + "id": "https://ror.org/00c77q313" + }, + { + "label": "Red de Laboratorios de Alertas Biológicas", + "type": "child", + "id": "https://ror.org/03gtv5v80" + }, + { + "label": "Spanish Clinical Research Network", + "type": "child", + "id": "https://ror.org/01yc8eq25" + }, + { + "label": "Unidad de Investigación en cuidados y servicios de salud (Investén-isciii)", + "type": "child", + "id": "https://ror.org/01qmm0x62" + }, + { + "label": "Unidad de Investigación en Salud Digital", + "type": "child", + "id": "https://ror.org/05gqmbr12" + }, + { + "label": "Unidades Centrales Científico-Técnicas", + "type": "child", + "id": "https://ror.org/01wdt4y78" + }, + { + "label": "​Unidad Funcional de Investigación de Enfermedades Crónicas", + "type": "child", + "id": "https://ror.org/04hpbsh69" + }, + { + "label": "Ministerio de Ciencia, Innovación y Universidades", + "type": "parent", + "id": "https://ror.org/05r0vyz12" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00carf720.json b/rc-v1.43-v2/updates/00carf720.json new file mode 100644 index 000000000..7066a873f --- /dev/null +++ b/rc-v1.43-v2/updates/00carf720.json @@ -0,0 +1,105 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1841, + "external_ids": [ + { + "all": [ + "501100004267" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.416075.1" + ], + "preferred": "grid.416075.1", + "type": "grid" + }, + { + "all": [ + "0000 0004 0367 1221" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7373582" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00carf720", + "links": [ + { + "type": "website", + "value": "http://www.rah.sa.gov.au/homepage.php" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Royal_Adelaide_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -34.92866, + "lng": 138.59863, + "name": "Adelaide" + }, + "geonames_id": 2078025 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "RAH" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Royal Adelaide Hospital" + } + ], + "relationships": [ + { + "label": "Hanson Institute", + "type": "related", + "id": "https://ror.org/047kx5j58" + }, + { + "label": "University of Adelaide", + "type": "related", + "id": "https://ror.org/00892tw58" + }, + { + "label": "Central Adelaide Local Health Network", + "type": "parent", + "id": "https://ror.org/02r40rn49" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00cy6xh23.json b/rc-v1.43-v2/updates/00cy6xh23.json new file mode 100644 index 000000000..94cb970a0 --- /dev/null +++ b/rc-v1.43-v2/updates/00cy6xh23.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2519752, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.98567, + "lng": -0.04935, + "name": "Castellon" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q61931981" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.502340.0" + ], + "preferred": "grid.502340.0" + } + ], + "id": "https://ror.org/00cy6xh23", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.conservatorisuperiorcastello.com/" + } + ], + "names": [ + { + "value": "Conservatori Superior de Música de Castelló", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Conservatorio Superior de Música de Castellón", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CSMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00d0nc645.json b/rc-v1.43-v2/updates/00d0nc645.json new file mode 100644 index 000000000..4e92b6a39 --- /dev/null +++ b/rc-v1.43-v2/updates/00d0nc645.json @@ -0,0 +1,192 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-04-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1975, + "external_ids": [ + { + "all": [ + "100004318", + "100006112" + ], + "preferred": "100004318", + "type": "fundref" + }, + { + "all": [ + "grid.419815.0" + ], + "preferred": "grid.419815.0", + "type": "grid" + }, + { + "all": [ + "0000 0001 2181 3404" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2283", + "Q47462228" + ], + "preferred": "Q2283", + "type": "wikidata" + } + ], + "id": "https://ror.org/00d0nc645", + "links": [ + { + "type": "website", + "value": "https://www.microsoft.com/en-us" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Microsoft" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 47.67399, + "lng": -122.12151, + "name": "Redmond" + }, + "geonames_id": 5808079 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Microsoft (United States)" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Microsoft Corporation" + } + ], + "relationships": [ + { + "label": "LinkedIn (United States)", + "type": "child", + "id": "https://ror.org/02fyxhe35" + }, + { + "label": "Microsoft (Belgium)", + "type": "child", + "id": "https://ror.org/05168yk81" + }, + { + "label": "Microsoft (Brazil)", + "type": "child", + "id": "https://ror.org/00hc2mf91" + }, + { + "label": "Microsoft (Canada)", + "type": "child", + "id": "https://ror.org/04xhxg104" + }, + { + "label": "Microsoft (Denmark)", + "type": "child", + "id": "https://ror.org/015drfm81" + }, + { + "label": "Microsoft (Finland)", + "type": "child", + "id": "https://ror.org/01nehjf29" + }, + { + "label": "Microsoft (France)", + "type": "child", + "id": "https://ror.org/0521n7n83" + }, + { + "label": "Microsoft (Germany)", + "type": "child", + "id": "https://ror.org/001dd4s60" + }, + { + "label": "Microsoft (India)", + "type": "child", + "id": "https://ror.org/04ww0w091" + }, + { + "label": "Microsoft (Ireland)", + "type": "child", + "id": "https://ror.org/017fqk185" + }, + { + "label": "Microsoft (Israel)", + "type": "child", + "id": "https://ror.org/03819cc96" + }, + { + "label": "Microsoft (Netherlands)", + "type": "child", + "id": "https://ror.org/01x21tj82" + }, + { + "label": "Microsoft (Norway)", + "type": "child", + "id": "https://ror.org/03jtz4s80" + }, + { + "label": "Microsoft (Portugal)", + "type": "child", + "id": "https://ror.org/00eqfbw40" + }, + { + "label": "Microsoft (Switzerland)", + "type": "child", + "id": "https://ror.org/03zryq964" + }, + { + "label": "Microsoft (United Kingdom)", + "type": "child", + "id": "https://ror.org/01rw27z95" + }, + { + "label": "Microsoft Research (India)", + "type": "child", + "id": "https://ror.org/02w7f3w92" + }, + { + "label": "Microsoft Research (United Kingdom)", + "type": "child", + "id": "https://ror.org/05k87vq12" + }, + { + "label": "Microsoft Research Asia (China)", + "type": "child", + "id": "https://ror.org/0300m5276" + }, + { + "label": "Ninja Theory (United Kingdom)", + "type": "child", + "id": "https://ror.org/04xrsn650" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00davry38.json b/rc-v1.43-v2/updates/00davry38.json new file mode 100644 index 000000000..744aa5733 --- /dev/null +++ b/rc-v1.43-v2/updates/00davry38.json @@ -0,0 +1,111 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "100012725" + ], + "preferred": "100012725", + "type": "fundref" + }, + { + "all": [ + "grid.484694.3" + ], + "preferred": "grid.484694.3", + "type": "grid" + }, + { + "all": [ + "0000 0004 5988 7021" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/00davry38", + "links": [ + { + "type": "website", + "value": "http://www.tecnm.mx/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "MX", + "country_name": "Mexico", + "lat": 19.42847, + "lng": -99.12766, + "name": "Mexico City" + }, + "geonames_id": 3530597 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "National Technological Institute of Mexico" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "TecNM" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Tecnológico Nacional de México" + } + ], + "relationships": [ + { + "label": "Instituto Tecnológico de Boca del Río", + "type": "child", + "id": "https://ror.org/0302jbz39" + }, + { + "label": "Instituto Tecnológico Superior de Los Reyes", + "type": "child", + "id": "https://ror.org/05p299b07" + }, + { + "label": "Instituto Tecnológico de La Paz", + "type": "child", + "id": "https://ror.org/0460tzy11" + }, + { + "label": "Secretariat of Public Education", + "type": "parent", + "id": "https://ror.org/02e1c4h55" + }, + { + "label": "Instituto Tecnológico de San Luis Potosí", + "type": "child", + "id": "https://ror.org/04w0a0617" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00f3x4340.json b/rc-v1.43-v2/updates/00f3x4340.json new file mode 100644 index 000000000..53d22785f --- /dev/null +++ b/rc-v1.43-v2/updates/00f3x4340.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1914, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0943 6642" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100011034" + ], + "preferred": "501100011034" + }, + { + "type": "grid", + "all": [ + "grid.410389.7" + ], + "preferred": "grid.410389.7" + } + ], + "id": "https://ror.org/00f3x4340", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ieo.es" + } + ], + "names": [ + { + "value": "Instituto Español de Oceanografía", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spanish Institute of Oceanography", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IEO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00f54p054.json b/rc-v1.43-v2/updates/00f54p054.json new file mode 100644 index 000000000..3801774a9 --- /dev/null +++ b/rc-v1.43-v2/updates/00f54p054.json @@ -0,0 +1,192 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1891, + "external_ids": [ + { + "all": [ + "100005492", + "100006521", + "100008643", + "100006100", + "100010866", + "100011098", + "100006598", + "100006057", + "100005575", + "100005541", + "100006382", + "100016959", + "100010864" + ], + "preferred": "100005492", + "type": "fundref" + }, + { + "all": [ + "grid.168010.e" + ], + "preferred": "grid.168010.e", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 8956" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q41506", + "Q1754977" + ], + "preferred": "Q41506", + "type": "wikidata" + } + ], + "id": "https://ror.org/00f54p054", + "links": [ + { + "type": "website", + "value": "https://www.stanford.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Stanford_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.42411, + "lng": -122.16608, + "name": "Stanford" + }, + "geonames_id": 5398563 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Leland Stanford Junior University" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Stanford University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Stanford" + } + ], + "relationships": [ + { + "label": "Brown Institute for Media Innovation", + "type": "child", + "id": "https://ror.org/02awzbn54" + }, + { + "label": "Center for Effective Global Action", + "type": "child", + "id": "https://ror.org/03djjyk45" + }, + { + "label": "Eterna Massive Open Laboratory", + "type": "child", + "id": "https://ror.org/05j5wde68" + }, + { + "label": "Kavli Institute for Particle Astrophysics and Cosmology", + "type": "child", + "id": "https://ror.org/00pwqz914" + }, + { + "label": "Max Planck Center for Visual Computing and Communication", + "type": "child", + "id": "https://ror.org/03hj69t32" + }, + { + "label": "CZ Biohub", + "type": "child", + "id": "https://ror.org/00knt4f32" + }, + { + "label": "Stanford Medicine", + "type": "child", + "id": "https://ror.org/03mtd9a03" + }, + { + "label": "Children's Hospital Central California", + "type": "child", + "id": "https://ror.org/01s3y9g58" + }, + { + "label": "SLAC National Accelerator Laboratory", + "type": "child", + "id": "https://ror.org/05gzmn429" + }, + { + "label": "Stanford Synchrotron Radiation Lightsource", + "type": "child", + "id": "https://ror.org/02vzbm991" + }, + { + "label": "Facility for Advanced Accelerator Experimental Tests-II", + "type": "child", + "id": "https://ror.org/023py8175" + }, + { + "label": "Good Samaritan Hospital", + "type": "related", + "id": "https://ror.org/03zms7281" + }, + { + "label": "Santa Clara Valley Medical Center", + "type": "related", + "id": "https://ror.org/02v7qv571" + }, + { + "label": "VA Palo Alto Health Care System", + "type": "related", + "id": "https://ror.org/00nr17z89" + }, + { + "label": "Stanford SystemX Alliance", + "type": "child", + "id": "https://ror.org/0551gkb08" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00fbnyb24.json b/rc-v1.43-v2/updates/00fbnyb24.json new file mode 100644 index 000000000..d634c669a --- /dev/null +++ b/rc-v1.43-v2/updates/00fbnyb24.json @@ -0,0 +1,123 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-08-30", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1402, + "external_ids": [ + { + "all": [ + "0000 0001 1958 8658" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100008769", + "501100009379" + ], + "preferred": "501100008769", + "type": "fundref" + }, + { + "all": [ + "Q161976" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.8379.5" + ], + "preferred": "grid.8379.5", + "type": "grid" + } + ], + "id": "https://ror.org/00fbnyb24", + "links": [ + { + "type": "website", + "value": "http://www.uni-wuerzburg.de/en/ueber/university/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_W%C3%BCrzburg" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.79391, + "lng": 9.95121, + "name": "Würzburg" + }, + "geonames_id": 2805615 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Würzburg" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Julius Maximilian University of Würzburg" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Julius-Maximilians-Universität Würzburg" + } + ], + "relationships": [ + { + "label": "Klinikum Coburg", + "type": "related", + "id": "https://ror.org/02d1rkr63" + }, + { + "label": "Universitätsklinikum Würzburg", + "type": "related", + "id": "https://ror.org/03pvr2g57" + }, + { + "label": "Bavarian Polymer Institute", + "type": "child", + "id": "https://ror.org/054zwas39" + }, + { + "label": "Complexity and Topology in Quantum Matter", + "type": "child", + "id": "https://ror.org/00kkpv737" + }, + { + "label": "Comprehensive Cancer Center Mainfranken", + "type": "child", + "id": "https://ror.org/013tmk464" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00fpvte21.json b/rc-v1.43-v2/updates/00fpvte21.json new file mode 100644 index 000000000..1b508581d --- /dev/null +++ b/rc-v1.43-v2/updates/00fpvte21.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2640194, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.37153, + "lng": -4.14305, + "name": "Plymouth" + } + } + ], + "established": 1856, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0455 3120" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q7205783" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.451096.f" + ], + "preferred": "grid.451096.f" + } + ], + "id": "https://ror.org/00fpvte21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.aup.ac.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Plymouth_College_of_Art" + } + ], + "names": [ + { + "value": "Arts University Plymouth", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Plymouth College of Art", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00g8hms52.json b/rc-v1.43-v2/updates/00g8hms52.json new file mode 100644 index 000000000..f48208111 --- /dev/null +++ b/rc-v1.43-v2/updates/00g8hms52.json @@ -0,0 +1,89 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1991, + "external_ids": [ + { + "all": [ + "100005240" + ], + "preferred": "100005240", + "type": "fundref" + }, + { + "all": [ + "grid.473856.b" + ], + "preferred": "grid.473856.b", + "type": "grid" + }, + { + "all": [ + "0000 0004 0405 6976" + ], + "preferred": "0000 0004 0405 6976", + "type": "isni" + } + ], + "id": "https://ror.org/00g8hms52", + "links": [ + { + "type": "website", + "value": "https://www.acf.hhs.gov" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + }, + "geonames_id": 4140963 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ACF" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Administration for Children and Families" + } + ], + "relationships": [ + { + "label": "United States Department of Health and Human Services", + "type": "parent", + "id": "https://ror.org/033jnv181" + }, + { + "label": "Office of Planning, Research and Evaluation", + "type": "child", + "id": "https://ror.org/05jnma812" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00gjj5n39.json b/rc-v1.43-v2/updates/00gjj5n39.json new file mode 100644 index 000000000..7dc3782ce --- /dev/null +++ b/rc-v1.43-v2/updates/00gjj5n39.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2519752, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.98567, + "lng": -0.04935, + "name": "Castellon" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1766 8613" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q6156487" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.440832.9" + ], + "preferred": "grid.440832.9" + } + ], + "id": "https://ror.org/00gjj5n39", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.universidadviu.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Valencian_International_University" + } + ], + "names": [ + { + "value": "Valencian International University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidad Internacional de Valencia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidad Internacional Valenciana", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "VIU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00grd1h17.json b/rc-v1.43-v2/updates/00grd1h17.json new file mode 100644 index 000000000..528ec5d8b --- /dev/null +++ b/rc-v1.43-v2/updates/00grd1h17.json @@ -0,0 +1,160 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-09-14", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1949, + "external_ids": [ + { + "all": [ + "100004374", + "100007102", + "100016304" + ], + "preferred": "100004374", + "type": "fundref" + }, + { + "all": [ + "grid.419673.e" + ], + "preferred": "grid.419673.e", + "type": "grid" + }, + { + "all": [ + "0000 0000 9545 2456" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q642189" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00grd1h17", + "links": [ + { + "type": "website", + "value": "http://www.medtronic.com/us-en/index.html" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Medtronic" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.97997, + "lng": -93.26384, + "name": "Minneapolis" + }, + "geonames_id": 5037649 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Medtronic (United States)" + } + ], + "relationships": [ + { + "label": "Medtronic (Canada)", + "type": "child", + "id": "https://ror.org/05dsmqn98" + }, + { + "label": "Medtronic (France)", + "type": "child", + "id": "https://ror.org/03eraeg88" + }, + { + "label": "Medtronic (Germany)", + "type": "child", + "id": "https://ror.org/05ttsqg93" + }, + { + "label": "Medtronic (Ireland)", + "type": "child", + "id": "https://ror.org/04dyhjr58" + }, + { + "label": "Medtronic (Israel)", + "type": "child", + "id": "https://ror.org/04w6n5s59" + }, + { + "label": "Medtronic (Italy)", + "type": "child", + "id": "https://ror.org/03yq5aa85" + }, + { + "label": "Medtronic (Luxembourg)", + "type": "child", + "id": "https://ror.org/04fhmmg24" + }, + { + "label": "Medtronic (Netherlands)", + "type": "child", + "id": "https://ror.org/02hmjce72" + }, + { + "label": "Medtronic (Singapore)", + "type": "child", + "id": "https://ror.org/01y0zfy93" + }, + { + "label": "Medtronic (South Korea)", + "type": "child", + "id": "https://ror.org/0344txx64" + }, + { + "label": "Medtronic (Spain)", + "type": "child", + "id": "https://ror.org/01tdsae39" + }, + { + "label": "Medtronic (Switzerland)", + "type": "child", + "id": "https://ror.org/04pf17v09" + }, + { + "label": "Medtronic (United Kingdom)", + "type": "child", + "id": "https://ror.org/020hbh524" + }, + { + "label": "Medtronic (Japan)", + "type": "child", + "id": "https://ror.org/031tfsa37" + }, + { + "label": "Medtronic Foundation", + "type": "child", + "id": "https://ror.org/01f7saf07" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00h3hwc05.json b/rc-v1.43-v2/updates/00h3hwc05.json new file mode 100644 index 000000000..7fa32c1e4 --- /dev/null +++ b/rc-v1.43-v2/updates/00h3hwc05.json @@ -0,0 +1,78 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1832, + "external_ids": [ + { + "all": [ + "0000 0004 0399 4653" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4968908" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.415177.1" + ], + "preferred": "grid.415177.1", + "type": "grid" + } + ], + "id": "https://ror.org/00h3hwc05", + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Bristol_General_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bristol General Hospital" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BGH" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00hpz7z43.json b/rc-v1.43-v2/updates/00hpz7z43.json new file mode 100644 index 000000000..a131f7fee --- /dev/null +++ b/rc-v1.43-v2/updates/00hpz7z43.json @@ -0,0 +1,140 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1888, + "external_ids": [ + { + "all": [ + "100009611" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.24805.3b" + ], + "preferred": "grid.24805.3b", + "type": "grid" + }, + { + "all": [ + "0000 0001 0687 2182", + "0000 0001 0941 243X" + ], + "preferred": "0000 0001 0941 243X", + "type": "isni" + }, + { + "all": [ + "Q1353248" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00hpz7z43", + "links": [ + { + "type": "website", + "value": "http://www.nmsu.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/New_Mexico_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.31232, + "lng": -106.77834, + "name": "Las Cruces" + }, + "geonames_id": 5475352 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NMSU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "New Mexico State University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal de Nuevo México" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État du nouveau-mexique" + } + ], + "relationships": [ + { + "label": "New Mexico Space Grant Consortium", + "type": "child", + "id": "https://ror.org/00nr2vg89" + }, + { + "label": "New Mexico State University Carlsbad", + "type": "child", + "id": "https://ror.org/01kbvt179" + }, + { + "label": "New Mexico State University Grants", + "type": "child", + "id": "https://ror.org/035k7dd86" + }, + { + "label": "San Juan College", + "type": "child", + "id": "https://ror.org/041jmaw90" + }, + { + "label": "Jornada Basin Long Term Ecological Research", + "type": "child", + "id": "https://ror.org/05976ta47" + }, + { + "label": "New Mexico State University Alamogordo", + "type": "child", + "id": "https://ror.org/007sts724" + }, + { + "label": "Agricultural Experiment Station", + "type": "child", + "id": "https://ror.org/009q0jm69" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00hx6zz33.json b/rc-v1.43-v2/updates/00hx6zz33.json new file mode 100644 index 000000000..0718210b5 --- /dev/null +++ b/rc-v1.43-v2/updates/00hx6zz33.json @@ -0,0 +1,165 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1892, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1765 0915" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q273604" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.6390.c" + ], + "preferred": "grid.6390.c" + } + ], + "id": "https://ror.org/00hx6zz33", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://ens-paris-saclay.fr/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/%C3%89cole_normale_sup%C3%A9rieure_de_Cachan" + } + ], + "names": [ + { + "value": "École Normale Supérieure Paris-Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ENS Cachan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Normale Sup' Cachan", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre d'Économie de la Sorbonne", + "type": "child", + "id": "https://ror.org/006shqv80" + }, + { + "label": "Institut des Sciences Sociales du Politique", + "type": "child", + "id": "https://ror.org/03jdg7625" + }, + { + "label": "Institutions et Dynamiques Historiques de l'Économie et de la Société", + "type": "child", + "id": "https://ror.org/03p76m698" + }, + { + "label": "Laboratoire de Biologie et Pharmacologie Appliquée", + "type": "child", + "id": "https://ror.org/03njrcx45" + }, + { + "label": "Laboratoire de Photophysique et Photochimie Supramoléculaires et Macromoléculaires", + "type": "child", + "id": "https://ror.org/03r7eh527" + }, + { + "label": "Laboratory of Quantum and Molecular Photonics", + "type": "child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Universitaire de Recherche en Production Automatisée", + "type": "child", + "id": "https://ror.org/05wjc8a85" + }, + { + "label": "Centre de Recherche en Design", + "type": "child", + "id": "https://ror.org/007y9b339" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00jjx8s55.json b/rc-v1.43-v2/updates/00jjx8s55.json new file mode 100644 index 000000000..8dcf21d54 --- /dev/null +++ b/rc-v1.43-v2/updates/00jjx8s55.json @@ -0,0 +1,407 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1945, + "external_ids": [ + { + "all": [ + "501100006489" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.5583.b" + ], + "preferred": "grid.5583.b", + "type": "grid" + }, + { + "all": [ + "0000 0001 2299 8025" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q868550" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00jjx8s55", + "links": [ + { + "type": "website", + "value": "http://www.cea.fr/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/French_Alternative_Energies_and_Atomic_Energy_Commission" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Atomic Energy and Alternative Energies Commission" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CEA" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives" + } + ], + "relationships": [ + { + "label": "Astroparticle and Cosmology Laboratory", + "type": "child", + "id": "https://ror.org/03tnjrr49" + }, + { + "label": "CEA Cadarache", + "type": "child", + "id": "https://ror.org/01rs1gy10" + }, + { + "label": "CEA DAM Île-de-France", + "type": "child", + "id": "https://ror.org/00kn4eb29" + }, + { + "label": "CEA Fontenay-aux-Roses", + "type": "child", + "id": "https://ror.org/010j2gw05" + }, + { + "label": "CEA Grenoble", + "type": "child", + "id": "https://ror.org/02mg6n827" + }, + { + "label": "Centre Lasers Intenses et Applications", + "type": "child", + "id": "https://ror.org/02910d597" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Recherche sur les Ions, les Matériaux et la Photonique", + "type": "child", + "id": "https://ror.org/02y0gk295" + }, + { + "label": "Chrono-Environment Laboratory", + "type": "child", + "id": "https://ror.org/028cef883" + }, + { + "label": "Cognitive Neuroimaging Lab", + "type": "child", + "id": "https://ror.org/056wdpc91" + }, + { + "label": "Direction des énergies", + "type": "child", + "id": "https://ror.org/03cwzta72" + }, + { + "label": "Direction de la Recherche Fondamentale", + "type": "child", + "id": "https://ror.org/01yvj5k91" + }, + { + "label": "Direction de la Recherche Technologique", + "type": "child", + "id": "https://ror.org/02ggzyd20" + }, + { + "label": "Frédéric Joliot Institute for Life Sciences", + "type": "child", + "id": "https://ror.org/016pnwd02" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Institut National de l'Énergie Solaire", + "type": "child", + "id": "https://ror.org/00qk0vr83" + }, + { + "label": "Institut de Biologie Structurale", + "type": "child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Institut de Radiobiologie Cellulaire et Moléculaire", + "type": "child", + "id": "https://ror.org/04ef91678" + }, + { + "label": "Institut de Recherche sur les ArchéoMATériaux", + "type": "child", + "id": "https://ror.org/01cw28e72" + }, + { + "label": "Institute for the Separation Chemistry in Marcoule", + "type": "child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Institute of Integrative Biology of the Cell", + "type": "child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Institute of Organic and Analytical Chemistry", + "type": "child", + "id": "https://ror.org/03ywn7d79" + }, + { + "label": "Irradiated Solids Laboratory", + "type": "child", + "id": "https://ror.org/015x8rz21" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "type": "child", + "id": "https://ror.org/00wwxk695" + }, + { + "label": "Laboratoire Léon Brillouin", + "type": "child", + "id": "https://ror.org/029rmm934" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire de Chimie et Biologie des Métaux", + "type": "child", + "id": "https://ror.org/02dd25k08" + }, + { + "label": "Laboratoire des Composites Thermo Structuraux", + "type": "child", + "id": "https://ror.org/02n2h9t24" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Maison de la Simulation", + "type": "child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Nanosciences et Innovation pour les Matériaux, la Biomédecine et l'Énergie", + "type": "child", + "id": "https://ror.org/04vg26t07" + }, + { + "label": "National Center of Human Genomics Research", + "type": "child", + "id": "https://ror.org/004yvsb77" + }, + { + "label": "Service Interdisciplinaire sur les Systèmes Moléculaires et les Matériaux", + "type": "child", + "id": "https://ror.org/00enct420" + }, + { + "label": "Service de Physique de l'État Condensé", + "type": "child", + "id": "https://ror.org/0247p4w70" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "child", + "id": "https://ror.org/03e044190" + }, + { + "label": "Structure et Propriétés d'Architectures Moléculaires", + "type": "child", + "id": "https://ror.org/00x5jmr79" + }, + { + "label": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "type": "child", + "id": "https://ror.org/00byxdz40" + }, + { + "label": "Institut de Biosciences et biotechnologies d'Aix-Marseille", + "type": "child", + "id": "https://ror.org/005yfhm28" + }, + { + "label": "PHotonique ELectronique et Ingénierie QuantiqueS", + "type": "child", + "id": "https://ror.org/01kbr1737" + }, + { + "label": "Laboratoire Modélisation et Exploration des Matériaux", + "type": "child", + "id": "https://ror.org/00ndvqf03" + }, + { + "label": "Transporteurs, Imagerie et Radiothérapie en Oncologie - Mécanismes Biologiques des Altérations du Tissu Osseux", + "type": "child", + "id": "https://ror.org/051c1vb08" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "child", + "id": "https://ror.org/03949e763" + }, + { + "label": "France Génomique", + "type": "child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "child", + "id": "https://ror.org/03sypqe31" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00jma8s40.json b/rc-v1.43-v2/updates/00jma8s40.json new file mode 100644 index 000000000..9b892a109 --- /dev/null +++ b/rc-v1.43-v2/updates/00jma8s40.json @@ -0,0 +1,109 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1968, + "external_ids": [ + { + "all": [ + "501100015913" + ], + "preferred": "501100015913", + "type": "fundref" + }, + { + "all": [ + "grid.469557.c" + ], + "preferred": "grid.469557.c", + "type": "grid" + }, + { + "all": [ + "0000 0004 7434 0868" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5099558" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00jma8s40", + "links": [ + { + "type": "website", + "value": "http://www.cardc.cn:88/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/China_Aerodynamics_Research_and_Development_Center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.46784, + "lng": 104.68168, + "name": "Mianyang" + }, + "geonames_id": 1800627 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CARDC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "China Aerodynamics Research and Development Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Zhōngguó Kōngqì Dònglì Yánjiū yǔ Fāzhǎn Zhōngxīn" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "中国空气动力研究与发展中心" + } + ], + "relationships": [ + { + "label": "State Key Laboratory of Aerodynamics", + "type": "child", + "id": "https://ror.org/055rh9p75" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00jmfr291.json b/rc-v1.43-v2/updates/00jmfr291.json new file mode 100644 index 000000000..259b4ad58 --- /dev/null +++ b/rc-v1.43-v2/updates/00jmfr291.json @@ -0,0 +1,179 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1817, + "external_ids": [ + { + "all": [ + "0000 0000 8683 7370", + "0000 0004 1936 7347" + ], + "preferred": "0000 0004 1936 7347", + "type": "isni" + }, + { + "all": [ + "100007270", + "100008192", + "100006790", + "100006801", + "100008269", + "100005953", + "100008455", + "100008456", + "100006652", + "100008115", + "100005993", + "100009539", + "100005543", + "100005949", + "100008557", + "100006416", + "100005476", + "100011232" + ], + "preferred": "100007270", + "type": "fundref" + }, + { + "all": [ + "Q230492" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.214458.e" + ], + "preferred": "grid.214458.e", + "type": "grid" + } + ], + "id": "https://ror.org/00jmfr291", + "links": [ + { + "type": "website", + "value": "https://www.umich.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Michigan" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.27756, + "lng": -83.74088, + "name": "Ann Arbor" + }, + "geonames_id": 4984247 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Michigan–Ann Arbor" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "UMich" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "University of Michigan" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université du Michigan" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UM" + } + ], + "relationships": [ + { + "label": "Hurley Medical Center", + "type": "related", + "id": "https://ror.org/034npj057" + }, + { + "label": "Michigan Medicine", + "type": "related", + "id": "https://ror.org/01zcpa714" + }, + { + "label": "Michigan Sea Grant", + "type": "child", + "id": "https://ror.org/015tnsz82" + }, + { + "label": "Michigan Space Grant Consortium", + "type": "child", + "id": "https://ror.org/057mgcy61" + }, + { + "label": "University of Michigan–Dearborn", + "type": "child", + "id": "https://ror.org/035wtm547" + }, + { + "label": "University of Michigan–Flint", + "type": "child", + "id": "https://ror.org/01c3xc117" + }, + { + "label": "Inter-University Consortium for Political and Social Research", + "type": "child", + "id": "https://ror.org/02q7mkh03" + }, + { + "label": "Arctic Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/04pk7zz41" + }, + { + "label": "University of Michigan Press", + "type": "child", + "id": "https://ror.org/00rx1p510" + }, + { + "label": "University of Michigan Biological Station", + "type": "child", + "id": "https://ror.org/02hhndj92" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00js3aw79.json b/rc-v1.43-v2/updates/00js3aw79.json new file mode 100644 index 000000000..de5278376 --- /dev/null +++ b/rc-v1.43-v2/updates/00js3aw79.json @@ -0,0 +1,137 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1946, + "external_ids": [ + { + "all": [ + "501100004032" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.64924.3d" + ], + "preferred": "grid.64924.3d", + "type": "grid" + }, + { + "all": [ + "0000 0004 1760 5735" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1432030" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00js3aw79", + "links": [ + { + "type": "website", + "value": "https://www.jlu.edu.cn/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Jilin_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 43.88, + "lng": 125.32278, + "name": "Changchun" + }, + "geonames_id": 2038180 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Jilin University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Jílín Dàxué" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "吉林大学" + } + ], + "relationships": [ + { + "label": "State Key Laboratory on Integrated Optoelectronics", + "type": "child", + "id": "https://ror.org/00g102351" + }, + { + "label": "State Key Laboratory of Theoretical Chemical Computing", + "type": "child", + "id": "https://ror.org/01bskzg04" + }, + { + "label": "State Key Laboratory of Superhard Materials", + "type": "child", + "id": "https://ror.org/03sjvjt84" + }, + { + "label": "State Key Laboratory of Inorganic Synthesis and Preparative Chemistry", + "type": "child", + "id": "https://ror.org/03ed91q10" + }, + { + "label": "State Key Laboratory of Supramolecular Structure and Materials", + "type": "child", + "id": "https://ror.org/02xf8rf51" + }, + { + "label": "Bethune Second Hospital", + "type": "related", + "id": "https://ror.org/01hht6e57" + }, + { + "label": "First Hospital of Jilin University", + "type": "related", + "id": "https://ror.org/034haf133" + }, + { + "label": "State Key Laboratory of Automotive Simulation and Control", + "type": "child", + "id": "https://ror.org/00b67z867" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00jvqbw52.json b/rc-v1.43-v2/updates/00jvqbw52.json new file mode 100644 index 000000000..4af7c9146 --- /dev/null +++ b/rc-v1.43-v2/updates/00jvqbw52.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51781718" + ], + "preferred": "Q51781718" + } + ], + "id": "https://ror.org/00jvqbw52", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.liverstrasbourg.org" + } + ], + "names": [ + { + "value": "Institute for Translational Medicine and Liver Disease", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut de Recherche sur les Maladies Virales et Hépatiques", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut de recherche en médecine translationnelle et maladies hépatiques", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "IVH", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "ITM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00k3ph542.json b/rc-v1.43-v2/updates/00k3ph542.json new file mode 100644 index 000000000..d434e3bc7 --- /dev/null +++ b/rc-v1.43-v2/updates/00k3ph542.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.503134.0" + ], + "preferred": "grid.503134.0" + } + ], + "id": "https://ror.org/00k3ph542", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.faculte-sciences-sport.universite-paris-saclay.fr/recherche/presentation-unite-de-recherche-ciams" + } + ], + "names": [ + { + "value": "Complexité, Innovation et Activités Motrices et Sportives", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire CIAMS", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Laboratoire Complexité, Innovation et Activités Motrices et Sportives", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CIAMS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Université d'Orléans", + "type": "parent", + "id": "https://ror.org/014zrew76" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00kk89y84.json b/rc-v1.43-v2/updates/00kk89y84.json new file mode 100644 index 000000000..9613a32f7 --- /dev/null +++ b/rc-v1.43-v2/updates/00kk89y84.json @@ -0,0 +1,87 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0445 9548" + ], + "preferred": "0000 0004 0445 9548" + }, + { + "type": "grid", + "all": [ + "grid.463962.c" + ], + "preferred": "grid.463962.c" + } + ], + "id": "https://ror.org/00kk89y84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ese.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Écologie, Systématique et Évolution", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ESE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00kxqbw45.json b/rc-v1.43-v2/updates/00kxqbw45.json new file mode 100644 index 000000000..f6fd4ad80 --- /dev/null +++ b/rc-v1.43-v2/updates/00kxqbw45.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0617 2698" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "grid.413531.1" + ], + "preferred": "grid.413531.1", + "type": "grid" + } + ], + "id": "https://ror.org/00kxqbw45", + "links": [ + { + "type": "website", + "value": "http://www.cht.es/cht/cm/cht/tkContent?pgseed=1493207263184&idContent=6065&locale=es_ES&textOnly=false" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.8581, + "lng": -4.02263, + "name": "Toledo" + }, + "geonames_id": 2510409 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hospital Virgen del Valle" + } + ], + "relationships": [ + { + "label": "Complejo Hospitalario Universitario de Toledo", + "type": "parent", + "id": "https://ror.org/04q4ppz72" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00mccb878.json b/rc-v1.43-v2/updates/00mccb878.json new file mode 100644 index 000000000..379d3a37c --- /dev/null +++ b/rc-v1.43-v2/updates/00mccb878.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.466733.3" + ], + "preferred": "grid.466733.3" + } + ], + "id": "https://ror.org/00mccb878", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://iberespacio.es/" + } + ], + "names": [ + { + "value": "IberEspacio (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Arquimea (Spain)", + "type": "successor", + "id": "https://ror.org/04mnaqe33" + } + ], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00mmn6b08.json b/rc-v1.43-v2/updates/00mmn6b08.json new file mode 100644 index 000000000..54a1a8562 --- /dev/null +++ b/rc-v1.43-v2/updates/00mmn6b08.json @@ -0,0 +1,205 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100006132" + ], + "preferred": "100006132" + }, + { + "type": "wikidata", + "all": [ + "Q7079302" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.453216.7" + ], + "preferred": "grid.453216.7" + } + ], + "id": "https://ror.org/00mmn6b08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.energy.gov/science/office-science" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Office_of_Science" + } + ], + "names": [ + { + "value": "Office of Science", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "United States Department of Energy Office of Science", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "U.S. Department of Energy Office of Science", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United States Department of Energy", + "type": "parent", + "id": "https://ror.org/01bj3aw27" + }, + { + "label": "Office of Advanced Scientific Computing Research", + "type": "child", + "id": "https://ror.org/0012c7r22" + }, + { + "label": "Office of Basic Energy Sciences", + "type": "child", + "id": "https://ror.org/05mg91w61" + }, + { + "label": "Office of Biological and Environmental Research", + "type": "child", + "id": "https://ror.org/0114b2m14" + }, + { + "label": "Office of Fusion Energy Sciences", + "type": "child", + "id": "https://ror.org/02n3j8t12" + }, + { + "label": "Office of High Energy Physics", + "type": "child", + "id": "https://ror.org/035m6g344" + }, + { + "label": "Office of Nuclear Physics", + "type": "child", + "id": "https://ror.org/02atag894" + }, + { + "label": "Office of Scientific and Technical Information", + "type": "child", + "id": "https://ror.org/031478740" + }, + { + "label": "Office of Workforce Development for Teachers and Scientists", + "type": "child", + "id": "https://ror.org/05msy3529" + }, + { + "label": "Environmental System Science Data Infrastructure for a Virtual Ecosystem", + "type": "child", + "id": "https://ror.org/01t14bp54" + }, + { + "label": "Office of Isotope R&D and Production", + "type": "child", + "id": "https://ror.org/03dbdcw44" + }, + { + "label": "Office of Accelerator R&D and Production", + "type": "child", + "id": "https://ror.org/02gr2sy50" + }, + { + "label": "Lawrence Berkeley National Laboratory", + "type": "child", + "id": "https://ror.org/02jbv0t02" + }, + { + "label": "Ames National Laboratory", + "type": "child", + "id": "https://ror.org/041m9xr71" + }, + { + "label": "Argonne National Laboratory", + "type": "child", + "id": "https://ror.org/05gvnxz63" + }, + { + "label": "Brookhaven National Laboratory", + "type": "child", + "id": "https://ror.org/02ex6cf31" + }, + { + "label": "Fermi National Accelerator Laboratory", + "type": "child", + "id": "https://ror.org/020hgte69" + }, + { + "label": "Oak Ridge National Laboratory", + "type": "child", + "id": "https://ror.org/01qz5mb56" + }, + { + "label": "Pacific Northwest National Laboratory", + "type": "child", + "id": "https://ror.org/05h992307" + }, + { + "label": "Princeton Plasma Physics Laboratory", + "type": "child", + "id": "https://ror.org/03vn1ts68" + }, + { + "label": "SLAC National Accelerator Laboratory", + "type": "child", + "id": "https://ror.org/05gzmn429" + }, + { + "label": "Thomas Jefferson National Accelerator Facility", + "type": "child", + "id": "https://ror.org/02vwzrd76" + }, + { + "label": "Facility for Rare Isotope Beams", + "type": "child", + "id": "https://ror.org/03r4g9w46" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00ne6sr39.json b/rc-v1.43-v2/updates/00ne6sr39.json new file mode 100644 index 000000000..22d68be81 --- /dev/null +++ b/rc-v1.43-v2/updates/00ne6sr39.json @@ -0,0 +1,109 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1886, + "external_ids": [ + { + "all": [ + "501100019927" + ], + "preferred": "501100019927", + "type": "fundref" + }, + { + "all": [ + "grid.14724.34" + ], + "preferred": "grid.14724.34", + "type": "grid" + }, + { + "all": [ + "0000 0001 0941 7046" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1468481" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00ne6sr39", + "links": [ + { + "type": "website", + "value": "https://www.deusto.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Deusto" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + }, + "geonames_id": 3128026 + } + ], + "names": [ + { + "lang": "eu", + "types": [ + "label" + ], + "value": "Deustuko Unibertsitatea" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Universidad de Deusto" + }, + { + "lang": "gl", + "types": [ + "label" + ], + "value": "Universidade de Deusto" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "University of Deusto" + } + ], + "relationships": [ + { + "label": "Escuela Universitaria de Magisterio Begoñako Andra Mari", + "type": "related", + "id": "https://ror.org/009xdmc59" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00ntbvq76.json b/rc-v1.43-v2/updates/00ntbvq76.json new file mode 100644 index 000000000..b4c2f11fd --- /dev/null +++ b/rc-v1.43-v2/updates/00ntbvq76.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1987, + "external_ids": [ + { + "all": [ + "Q29576408" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.411754.2" + ], + "preferred": "grid.411754.2", + "type": "grid" + } + ], + "id": "https://ror.org/00ntbvq76", + "links": [ + { + "type": "website", + "value": "http://www.chdinant.be/default.asp" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.4669, + "lng": 4.86746, + "name": "Namur" + }, + "geonames_id": 2790471 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "CHU Dinant Godinne UCL Namur" + } + ], + "relationships": [ + { + "label": "UCLouvain", + "type": "related", + "id": "https://ror.org/02495e989" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00p11pk44.json b/rc-v1.43-v2/updates/00p11pk44.json new file mode 100644 index 000000000..e43945410 --- /dev/null +++ b/rc-v1.43-v2/updates/00p11pk44.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1832, + "external_ids": [ + { + "all": [ + "100008352" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.267959.6" + ], + "preferred": "grid.267959.6", + "type": "grid" + }, + { + "all": [ + "0000 0000 9886 0607" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7958639" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00p11pk44", + "links": [ + { + "type": "website", + "value": "https://www.wabash.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Wabash_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.04115, + "lng": -86.87445, + "name": "Crawfordsville" + }, + "geonames_id": 4919381 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "The Wabash Teachers Seminary and Manual Labor College" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Wabash College" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00p4ywg82.json b/rc-v1.43-v2/updates/00p4ywg82.json new file mode 100644 index 000000000..75038811e --- /dev/null +++ b/rc-v1.43-v2/updates/00p4ywg82.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1851, + "external_ids": [ + { + "all": [ + "grid.421123.7" + ], + "preferred": "grid.421123.7", + "type": "grid" + }, + { + "all": [ + "0000 0004 0413 3417" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q6761994" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00p4ywg82", + "links": [ + { + "type": "website", + "value": "http://www.marian.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Marian_University_(Indiana)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.76838, + "lng": -86.15804, + "name": "Indianapolis" + }, + "geonames_id": 4259418 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Marian University - Indiana" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00pa9y269.json b/rc-v1.43-v2/updates/00pa9y269.json new file mode 100644 index 000000000..37ebf1dc0 --- /dev/null +++ b/rc-v1.43-v2/updates/00pa9y269.json @@ -0,0 +1,75 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [ + { + "all": [ + "0000 0004 4691 0296" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7566412" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.439439.0" + ], + "preferred": "grid.439439.0", + "type": "grid" + } + ], + "id": "https://ror.org/00pa9y269", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/south-bristol-community-hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/South_Bristol_Community_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "South Bristol Community Hospital" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00pd74e08.json b/rc-v1.43-v2/updates/00pd74e08.json new file mode 100644 index 000000000..d81bb7546 --- /dev/null +++ b/rc-v1.43-v2/updates/00pd74e08.json @@ -0,0 +1,124 @@ +{ + "locations": [ + { + "geonames_id": 2867543, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.96236, + "lng": 7.62571, + "name": "Münster" + } + } + ], + "established": 1780, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2172 9288" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100004869", + "501100004870" + ], + "preferred": "501100004869" + }, + { + "type": "wikidata", + "all": [ + "Q168426" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5949.1" + ], + "preferred": "grid.5949.1" + } + ], + "id": "https://ror.org/00pd74e08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uni-muenster.de" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_M%C3%BCnster" + } + ], + "names": [ + { + "value": "University of Münster", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Westfälische Wilhelms-Universität Münster", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universitaet Muenster", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Muenster", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universität Münster", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "WWU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University Hospital Münster", + "type": "related", + "id": "https://ror.org/01856cw59" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00pg6eq24.json b/rc-v1.43-v2/updates/00pg6eq24.json new file mode 100644 index 000000000..a0e72039c --- /dev/null +++ b/rc-v1.43-v2/updates/00pg6eq24.json @@ -0,0 +1,375 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1538, + "external_ids": [ + { + "all": [ + "501100003768", + "501100003998" + ], + "preferred": "501100003768", + "type": "fundref" + }, + { + "all": [ + "grid.11843.3f" + ], + "preferred": "grid.11843.3f", + "type": "grid" + }, + { + "all": [ + "0000 0001 2157 9291" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q157575" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00pg6eq24", + "links": [ + { + "type": "website", + "value": "https://www.unistra.fr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Strasbourg" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + }, + "geonames_id": 2973783 + } + ], + "names": [ + { + "lang": "ca", + "types": [ + "label" + ], + "value": "Universitat d'Estrasburg" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Strasbourg" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Universität Straßburg" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Strasbourg" + } + ], + "relationships": [ + { + "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": "Modèles Insectes de l'Immunité Innée", + "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 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 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": "Institut Terre & Environnement de Strasbourg", + "type": "child", + "id": "https://ror.org/0530qwm02" + }, + { + "label": "École & Observatoire des Sciences de la Terre", + "type": "child", + "id": "https://ror.org/030qxve40" + }, + { + "label": "Laboratoire Interuniversitaire des Sciences de l'Education et de la Communication", + "type": "child", + "id": "https://ror.org/04n2vwk08" + }, + { + "label": "Chimie de la Matière Complexe", + "type": "child", + "id": "https://ror.org/01cgac405" + }, + { + "label": "Institute for Translational Medicine and Liver Disease", + "type": "child", + "id": "https://ror.org/00jvqbw52" + }, + { + "label": "Chronobiotron", + "type": "child", + "id": "https://ror.org/026fpwg41" + }, + { + "label": "Droit, religion, entreprise et société", + "type": "child", + "id": "https://ror.org/026p10446" + }, + { + "label": "Biopathologie de la myéline, neuroprotection et stratégies thérapeutiques", + "type": "child", + "id": "https://ror.org/000n1xh78" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Biologie et pharmacologie des plaquettes sanguines : hémostase, thrombose, transfusion", + "type": "child", + "id": "https://ror.org/03qge6j93" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Archives Henri-Poincaré - Philosophie et Recherches sur les Sciences et les Technologies", + "type": "child", + "id": "https://ror.org/02fdf4056" + }, + { + "label": "Neuropsychologie Cognitive et Physiopathologie de la Schizophrénie", + "type": "child", + "id": "https://ror.org/02zwf7d57" + }, + { + "label": "Hôpitaux Universitaires de Strasbourg", + "type": "related", + "id": "https://ror.org/04bckew43" + }, + { + "label": "Médecine Cardiovasculaire Translationnelle", + "type": "child", + "id": "https://ror.org/010e21634" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00pnp4y96.json b/rc-v1.43-v2/updates/00pnp4y96.json new file mode 100644 index 000000000..5190a0e32 --- /dev/null +++ b/rc-v1.43-v2/updates/00pnp4y96.json @@ -0,0 +1,93 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1947, + "external_ids": [ + { + "all": [ + "grid.484191.1" + ], + "preferred": "grid.484191.1", + "type": "grid" + }, + { + "all": [ + "0000 0004 0433 7882" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q3250182" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00pnp4y96", + "links": [ + { + "type": "website", + "value": "http://www.pakistan.gov.pk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Government_of_Pakistan" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PK", + "country_name": "Pakistan", + "lat": 33.72148, + "lng": 73.04329, + "name": "Islamabad" + }, + "geonames_id": 1176615 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Government of Pakistan" + }, + { + "lang": "ur", + "types": [ + "label" + ], + "value": "حکومتِ پاکستان" + } + ], + "relationships": [ + { + "label": "Ministry of National Health Services Regulation and Coordination", + "type": "child", + "id": "https://ror.org/02kyv4s47" + }, + { + "label": "Ministry of Science and Technology", + "type": "child", + "id": "https://ror.org/03jn2p430" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00pyxrd04.json b/rc-v1.43-v2/updates/00pyxrd04.json new file mode 100644 index 000000000..c48920ddd --- /dev/null +++ b/rc-v1.43-v2/updates/00pyxrd04.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2673730, + "geonames_details": { + "country_code": "SE", + "country_name": "Sweden", + "lat": 59.32938, + "lng": 18.06871, + "name": "Stockholm" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2230 9816" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100007633" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457409.b" + ], + "preferred": "grid.457409.b" + } + ], + "id": "https://ror.org/00pyxrd04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mistra.org" + } + ], + "names": [ + { + "value": "Foundation for Strategic Environmental Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stiftelsen för Miljöstrategisk Forskning", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MISTRA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00qqv6244.json b/rc-v1.43-v2/updates/00qqv6244.json new file mode 100644 index 000000000..38b91d66f --- /dev/null +++ b/rc-v1.43-v2/updates/00qqv6244.json @@ -0,0 +1,111 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1893, + "external_ids": [ + { + "all": [ + "100008980", + "100008981" + ], + "preferred": "100008980", + "type": "fundref" + }, + { + "all": [ + "grid.30760.32" + ], + "preferred": "grid.30760.32", + "type": "grid" + }, + { + "all": [ + "0000 0001 2111 8460" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q6806307" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00qqv6244", + "links": [ + { + "type": "website", + "value": "http://www.mcw.edu/MCW" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Medical_College_of_Wisconsin" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.0389, + "lng": -87.90647, + "name": "Milwaukee" + }, + "geonames_id": 5263045 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MCW" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Medical College of Wisconsin" + } + ], + "relationships": [ + { + "label": "Children's Hospital of Wisconsin", + "type": "related", + "id": "https://ror.org/049cbmb74" + }, + { + "label": "Froedtert Hospital", + "type": "related", + "id": "https://ror.org/01nhrc260" + }, + { + "label": "Milwaukee VA Medical Center", + "type": "related", + "id": "https://ror.org/0176arq92" + }, + { + "label": "Medical College of Wisconsin Cancer Center", + "type": "child", + "id": "https://ror.org/0115fxs14" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00qsr9g17.json b/rc-v1.43-v2/updates/00qsr9g17.json new file mode 100644 index 000000000..2fcc92a3b --- /dev/null +++ b/rc-v1.43-v2/updates/00qsr9g17.json @@ -0,0 +1,74 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1948, + "external_ids": [ + { + "all": [ + "grid.454574.3" + ], + "preferred": "grid.454574.3", + "type": "grid" + }, + { + "all": [ + "Q5591059" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00qsr9g17", + "links": [ + { + "type": "website", + "value": "http://www.grace.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Grace_College_%26_Seminary" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.22727, + "lng": -85.82193, + "name": "Winona Lake" + }, + "geonames_id": 4928337 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Grace College & Seminary" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00qv0tw17.json b/rc-v1.43-v2/updates/00qv0tw17.json new file mode 100644 index 000000000..a8cdd46d5 --- /dev/null +++ b/rc-v1.43-v2/updates/00qv0tw17.json @@ -0,0 +1,112 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-09-14", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1911, + "external_ids": [ + { + "all": [ + "100011961" + ], + "preferred": "100011961", + "type": "fundref" + }, + { + "all": [ + "grid.264257.0" + ], + "preferred": "grid.264257.0", + "type": "grid" + }, + { + "all": [ + "0000 0004 0387 8708" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7603610" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00qv0tw17", + "links": [ + { + "type": "website", + "value": "http://www.esf.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/State_University_of_New_York_College_of_Environmental_Science_and_Forestry" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.04812, + "lng": -76.14742, + "name": "Syracuse" + }, + "geonames_id": 5140405 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ESF" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "SUNY College of Environmental Science and Forestry" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SUNY ESF" + } + ], + "relationships": [ + { + "label": "Edna Bailey Sussman Foundation", + "type": "child", + "id": "https://ror.org/024tqtx80" + }, + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00qy68j92.json b/rc-v1.43-v2/updates/00qy68j92.json new file mode 100644 index 000000000..03a7dd796 --- /dev/null +++ b/rc-v1.43-v2/updates/00qy68j92.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 4994358, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.96336, + "lng": -85.66809, + "name": "Grand Rapids" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0450 5903" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.430538.9" + ], + "preferred": "grid.430538.9" + } + ], + "id": "https://ror.org/00qy68j92", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.spectrumhealth.org/locations/spectrum-health-hospitals-blodgett-hospital" + } + ], + "names": [ + { + "value": "Corewell Health Blodgett Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spectrum Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spectrum Health Blodgett Hospital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Michigan State University", + "type": "related", + "id": "https://ror.org/05hs6h993" + }, + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00rwpbm87.json b/rc-v1.43-v2/updates/00rwpbm87.json new file mode 100644 index 000000000..16f69afcf --- /dev/null +++ b/rc-v1.43-v2/updates/00rwpbm87.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.488580.9" + ], + "preferred": "grid.488580.9", + "type": "grid" + } + ], + "id": "https://ror.org/00rwpbm87", + "links": [ + { + "type": "website", + "value": "https://www.ukw.de/augenklinik/startseite/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.79391, + "lng": 9.95121, + "name": "Würzburg" + }, + "geonames_id": 2805615 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Augenklinik Universitätsklinikum Würzburg" + } + ], + "relationships": [ + { + "label": "Universitätsklinikum Würzburg", + "type": "parent", + "id": "https://ror.org/03pvr2g57" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00rydyx93.json b/rc-v1.43-v2/updates/00rydyx93.json new file mode 100644 index 000000000..4df045a9d --- /dev/null +++ b/rc-v1.43-v2/updates/00rydyx93.json @@ -0,0 +1,701 @@ +{ + "locations": [ + { + "geonames_id": 3012621, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.81568, + "lng": 2.38487, + "name": "Ivry-sur-Seine" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 060X" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q24935881" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.456999.e" + ], + "preferred": "grid.456999.e" + } + ], + "id": "https://ror.org/00rydyx93", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/insb/" + } + ], + "names": [ + { + "value": "Institut des Sciences Biologiques", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Biological Sciences", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "INSB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Architecture et Réactivité de l'arN", + "type": "child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Biochemistry Laboratory", + "type": "child", + "id": "https://ror.org/01c6vgf77" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Biologie Intégrative des Organismes Marins", + "type": "child", + "id": "https://ror.org/03wg93s13" + }, + { + "label": "Biologie Tissulaire et Ingénierie Thérapeutique", + "type": "child", + "id": "https://ror.org/04fqvqs63" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bioénergétique et Ingénierie des Protéines", + "type": "child", + "id": "https://ror.org/0060xzr04" + }, + { + "label": "Brain Plasticity laboratory", + "type": "child", + "id": "https://ror.org/03padqz24" + }, + { + "label": "Brain and Cognition Research Center", + "type": "child", + "id": "https://ror.org/04fhrs205" + }, + { + "label": "Cancer Research Center of Lyon", + "type": "child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Center for Infection and Immunity of Lille", + "type": "child", + "id": "https://ror.org/00dyt5s15" + }, + { + "label": "Center for Interdisciplinary Research in Biology", + "type": "child", + "id": "https://ror.org/01mvzn566" + }, + { + "label": "Center for Research on Inflammation", + "type": "child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre de Biochimie Structurale", + "type": "child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Biophysique Moléculaire", + "type": "child", + "id": "https://ror.org/02dpqcy73" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre de Résonance Magnétique des Systèmes Biologiques", + "type": "child", + "id": "https://ror.org/01mts2g59" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Centre for Biochemical and Macromolecular Research", + "type": "child", + "id": "https://ror.org/01xpc6869" + }, + { + "label": "Centre for Cognitive Neuroscience", + "type": "child", + "id": "https://ror.org/02he5dz58" + }, + { + "label": "Contrôle de la Réponse Immune B et Lymphoproliférations", + "type": "child", + "id": "https://ror.org/02zh2vx86" + }, + { + "label": "Department of Genomes & Genetics", + "type": "child", + "id": "https://ror.org/05etkex69" + }, + { + "label": "Department of Virology", + "type": "child", + "id": "https://ror.org/01xx2ne27" + }, + { + "label": "Developmental Biology Institute of Marseille", + "type": "child", + "id": "https://ror.org/02me5cy06" + }, + { + "label": "Dynamic Neuronal Imaging", + "type": "child", + "id": "https://ror.org/027atwb90" + }, + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Dynamique des Interactions Membranaires Normales et Pathologiques", + "type": "child", + "id": "https://ror.org/00rt27171" + }, + { + "label": "Epigenetics and Cell Fate", + "type": "child", + "id": "https://ror.org/03dbsav41" + }, + { + "label": "Evolution des Régulations Endocriniennes", + "type": "child", + "id": "https://ror.org/03bpcga21" + }, + { + "label": "Expression Génétique Microbienne", + "type": "child", + "id": "https://ror.org/05t5n2z26" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Immunologie et Neurogénétique Expérimentales et Moléculaires", + "type": "child", + "id": "https://ror.org/01mhd9b84" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Cochin", + "type": "child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Jacques Monod", + "type": "child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut NeuroMyoGène", + "type": "child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Biochimie et Génétique Cellulaires", + "type": "child", + "id": "https://ror.org/048xwe611" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Biologie Physico-Chimique", + "type": "child", + "id": "https://ror.org/01na0pb61" + }, + { + "label": "Institut de Biologie Structurale", + "type": "child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut de Biologie et de Chimie des Protéines", + "type": "child", + "id": "https://ror.org/0019x5d05" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut de Génétique Moléculaire de Montpellier", + "type": "child", + "id": "https://ror.org/02785qs39" + }, + { + "label": "Institut de Microbiologie de la Méditerranée", + "type": "child", + "id": "https://ror.org/012t91r40" + }, + { + "label": "Institut de Neurophysiopathologie", + "type": "child", + "id": "https://ror.org/00w2q5j98" + }, + { + "label": "Institut de Neurosciences Cognitives et Intégratives d’Aquitaine", + "type": "child", + "id": "https://ror.org/01a6zh966" + }, + { + "label": "Institut de Neurosciences de la Timone", + "type": "child", + "id": "https://ror.org/043hw6336" + }, + { + "label": "Institut de Pharmacologie Moléculaire et Cellulaire", + "type": "child", + "id": "https://ror.org/05k4ema52" + }, + { + "label": "Institut des Sciences du Mouvement Etienne-Jules Marey", + "type": "child", + "id": "https://ror.org/03tncyc93" + }, + { + "label": "Institut des Sciences du Végétal", + "type": "child", + "id": "https://ror.org/03aqj2f62" + }, + { + "label": "Institut du Cerveau", + "type": "child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Thorax", + "type": "child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Institute of Biology Valrose", + "type": "child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institute of Cellular and Integrative Neurosciences", + "type": "child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institute of Genetics and Development of Rennes", + "type": "child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Institute of Human Genetics", + "type": "child", + "id": "https://ror.org/05ee10k25" + }, + { + "label": "Institut de Myologie", + "type": "child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Institute of Pharmacology and Structural Biology", + "type": "child", + "id": "https://ror.org/016zvc994" + }, + { + "label": "Institute of Research on Cancer and Aging in Nice", + "type": "child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "Integrated Genomics and Metabolic Diseases Modeling", + "type": "child", + "id": "https://ror.org/0300mzg60" + }, + { + "label": "Interdisciplinary Institute for NeuroScience", + "type": "child", + "id": "https://ror.org/032j53342" + }, + { + "label": "International Center for Infectiology Research", + "type": "child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire d'Enzymologie et Biochimie Structurales", + "type": "child", + "id": "https://ror.org/00j1y9t40" + }, + { + "label": "Laboratoire de Biogenèse Membranaire", + "type": "child", + "id": "https://ror.org/02nthwg11" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire de Biologie du Développement de Villefranche-sur-Mer", + "type": "child", + "id": "https://ror.org/04hke8425" + }, + { + "label": "Laboratoire de Biologie et Pharmacologie Appliquée", + "type": "child", + "id": "https://ror.org/03njrcx45" + }, + { + "label": "Laboratoire de Chimie Bactérienne", + "type": "child", + "id": "https://ror.org/057zme681" + }, + { + "label": "Laboratoire de Microbiologie et Génétique Moléculaires", + "type": "child", + "id": "https://ror.org/04rrj3a80" + }, + { + "label": "Laboratoire de Neurosciences Cognitives", + "type": "child", + "id": "https://ror.org/02dg3n954" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire de PhysioMédecine Moléculaire", + "type": "child", + "id": "https://ror.org/00c3ktd57" + }, + { + "label": "Laboratoire de Psychologie Cognitive", + "type": "child", + "id": "https://ror.org/01rf5x574" + }, + { + "label": "Laboratoire de Psychologie Sociale et Cognitive", + "type": "child", + "id": "https://ror.org/01t4k8953" + }, + { + "label": "Laboratoire de Psychologie et NeuroCognition", + "type": "child", + "id": "https://ror.org/014p6mg26" + }, + { + "label": "Laboratoire de Recherche en Sciences Végétales", + "type": "child", + "id": "https://ror.org/047z5as19" + }, + { + "label": "Laboratoire de Recherche sur la Croissance Cellulaire, la Réparation et la Régénération Tissulaires", + "type": "child", + "id": "https://ror.org/041dsyz88" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire de Sciences Cognitives et Psycholinguistique", + "type": "child", + "id": "https://ror.org/05fvhm231" + }, + { + "label": "Laboratoire des Interactions Plantes Micro-Organismes", + "type": "child", + "id": "https://ror.org/02gwt2810" + }, + { + "label": "Laboratoire des Systèmes Macromoléculaires et Signalisation", + "type": "child", + "id": "https://ror.org/053qdb191" + }, + { + "label": "Laboratoire des Systèmes Perceptifs", + "type": "child", + "id": "https://ror.org/030za3c40" + }, + { + "label": "Laboratory for Research on Learning and Development", + "type": "child", + "id": "https://ror.org/04mp4zc06" + }, + { + "label": "Laboratory of Computational and Quantitative Biology", + "type": "child", + "id": "https://ror.org/00pcqj134" + }, + { + "label": "Laboratoire de Biologie Intégrative des Modèles Marins", + "type": "child", + "id": "https://ror.org/001c8pb03" + }, + { + "label": "Laboratoire de Biologie Moléculaire et Cellulaire des Eucaryotes", + "type": "child", + "id": "https://ror.org/05mx55f96" + }, + { + "label": "Laboratory of Physical and Chemical Biology of Membrane Proteins", + "type": "child", + "id": "https://ror.org/03nr8xh07" + }, + { + "label": "Lyon Neuroscience Research Center", + "type": "child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Microbiology, Adaptation and Pathogenesis Lab", + "type": "child", + "id": "https://ror.org/03p3f6k20" + }, + { + "label": "Modélisation et Ingénierie des Systèmes Complexes Biologiques pour le Diagnostic", + "type": "child", + "id": "https://ror.org/056mmjd70" + }, + { + "label": "Neurodegeneratives Diseases Institute", + "type": "child", + "id": "https://ror.org/001695n52" + }, + { + "label": "Dynamique du noyau", + "type": "child", + "id": "https://ror.org/04team556" + }, + { + "label": "Pathologie et Virologie Moléculaire", + "type": "child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Physico-chimie Curie", + "type": "child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "Biologie du chloroplaste et perception de la lumière chez les micro-algues", + "type": "child", + "id": "https://ror.org/001r32c80" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Physiology & Experimental Medicine of the Heart and Muscles", + "type": "child", + "id": "https://ror.org/003sscq03" + }, + { + "label": "Plant Genome and Development Laboratory", + "type": "child", + "id": "https://ror.org/038207k30" + }, + { + "label": "Research Centre on Animal Cognition", + "type": "child", + "id": "https://ror.org/0111s2360" + }, + { + "label": "Research Centre on Cognition and Learning", + "type": "child", + "id": "https://ror.org/01sdp1y98" + }, + { + "label": "Structural and Molecular Basis of Infectious Systems", + "type": "child", + "id": "https://ror.org/00jv0wy06" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "child", + "id": "https://ror.org/02g6y2720" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00s19x989.json b/rc-v1.43-v2/updates/00s19x989.json new file mode 100644 index 000000000..41e0c4b1f --- /dev/null +++ b/rc-v1.43-v2/updates/00s19x989.json @@ -0,0 +1,502 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100017214" + ], + "preferred": "501100017214" + }, + { + "type": "grid", + "all": [ + "grid.457016.1" + ], + "preferred": "grid.457016.1" + } + ], + "id": "https://ror.org/00s19x989", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/insis/" + } + ], + "names": [ + { + "value": "Institut des Sciences de l'Ingénierie et des Systèmes", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INSIS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Andrology Gerontechnology Inflammation Modelisation", + "type": "child", + "id": "https://ror.org/030p0rb34" + }, + { + "label": "Astrophysique Relativiste, Théories, Expériences, Métrologie, Instrumentation, Signaux", + "type": "child", + "id": "https://ror.org/031ah7413" + }, + { + "label": "Automation and Process Engineering Laboratory", + "type": "child", + "id": "https://ror.org/03kfjwy31" + }, + { + "label": "Biomécanique et Bioingénierie", + "type": "child", + "id": "https://ror.org/03yaydt41" + }, + { + "label": "Center for Magnetic Resonance in Biology and Medicine", + "type": "child", + "id": "https://ror.org/04ceg1205" + }, + { + "label": "Centre Régional d’Innovation et de Transferts Technologiques des Industries du Bois", + "type": "child", + "id": "https://ror.org/016crzw98" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Centre des Matériaux", + "type": "child", + "id": "https://ror.org/01q5ge486" + }, + { + "label": "Centre for Energy and Thermal Sciences of Lyon", + "type": "child", + "id": "https://ror.org/01k383v05" + }, + { + "label": "Centre for Material Forming", + "type": "child", + "id": "https://ror.org/00qm1ye08" + }, + { + "label": "Complexe de Recherche Interprofessionnel en Aérothermochimie", + "type": "child", + "id": "https://ror.org/01k1ngp50" + }, + { + "label": "Contact and Structure Mechanics Laboratory", + "type": "child", + "id": "https://ror.org/05s608j53" + }, + { + "label": "Fonctions Optiques pour les Technologies de l’information", + "type": "child", + "id": "https://ror.org/03yn94905" + }, + { + "label": "Franche-Comté Électronique Mécanique Thermique et Optique - Sciences et Technologies", + "type": "child", + "id": "https://ror.org/004fmxv66" + }, + { + "label": "Fédération de Recherche FCLAB", + "type": "child", + "id": "https://ror.org/01kvxx237" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Georges Friedel Laboratory", + "type": "child", + "id": "https://ror.org/01prxdf57" + }, + { + "label": "Georgia Tech-CNRS Laboratory", + "type": "child", + "id": "https://ror.org/00avmbz91" + }, + { + "label": "Groupe de Recherches sur l'Energétique des Milieux Ionisés", + "type": "child", + "id": "https://ror.org/042ds2135" + }, + { + "label": "Ingénierie Moléculaire et Physiopathologie Articulaire", + "type": "child", + "id": "https://ror.org/04yc2e502" + }, + { + "label": "Institut Fresnel", + "type": "child", + "id": "https://ror.org/03br1wy20" + }, + { + "label": "Institut Jean Le Rond d'Alembert", + "type": "child", + "id": "https://ror.org/043we9s22" + }, + { + "label": "Institut Pascal", + "type": "child", + "id": "https://ror.org/03vgfxd91" + }, + { + "label": "Institut Pprime", + "type": "child", + "id": "https://ror.org/05vjdsn22" + }, + { + "label": "Institut Universitaire des Systèmes Thermiques Industriels", + "type": "child", + "id": "https://ror.org/04bgbbh33" + }, + { + "label": "Institut d'Électronique et des Systèmes", + "type": "child", + "id": "https://ror.org/0431hh004" + }, + { + "label": "Institut de Combustion Aérothermique Réactivité et Environnement", + "type": "child", + "id": "https://ror.org/03txr3336" + }, + { + "label": "Institut de Microélectronique, Electromagnétisme et Photonique", + "type": "child", + "id": "https://ror.org/03taa9n66" + }, + { + "label": "Institut de Recherche en Génie Civil et Mécanique", + "type": "child", + "id": "https://ror.org/03x30hb31" + }, + { + "label": "Institut de Recherche sur les Phénomènes Hors Équilibre", + "type": "child", + "id": "https://ror.org/03zq0xc17" + }, + { + "label": "Institut des Nanotechnologies de Lyon", + "type": "child", + "id": "https://ror.org/04jsk0b74" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "Institute of Electronics, Microelectronics and Nanotechnology", + "type": "child", + "id": "https://ror.org/02q4res37" + }, + { + "label": "Institute of Fluid Mechanics of Toulouse", + "type": "child", + "id": "https://ror.org/025nmxp11" + }, + { + "label": "Institute of Mechanics and Engineering", + "type": "child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire Ampère", + "type": "child", + "id": "https://ror.org/04xbczw40" + }, + { + "label": "Laboratoire Hubert Curien", + "type": "child", + "id": "https://ror.org/0028p8r67" + }, + { + "label": "Laboratoire Matière et Systèmes Complexes", + "type": "child", + "id": "https://ror.org/032w6q449" + }, + { + "label": "Laboratoire Modélisation et Simulation Multi-Echelle", + "type": "child", + "id": "https://ror.org/04rrzfd14" + }, + { + "label": "Laboratoire Optimisation de la Conception et Ingénierie de l'Environnement", + "type": "child", + "id": "https://ror.org/015gaxx73" + }, + { + "label": "Laboratoire Procédés, Matériaux et Energie Solaire", + "type": "child", + "id": "https://ror.org/05thdk431" + }, + { + "label": "Laboratoire Rhéologie et Procédés", + "type": "child", + "id": "https://ror.org/044ggyg50" + }, + { + "label": "Laboratoire Roberval", + "type": "child", + "id": "https://ror.org/023ffhx15" + }, + { + "label": "Laboratoire Réactions et Génie des Procédés", + "type": "child", + "id": "https://ror.org/00p6sn362" + }, + { + "label": "Laboratoire d'Energétique et de Mécanique Théorique et Appliquée", + "type": "child", + "id": "https://ror.org/01pfter31" + }, + { + "label": "Laboratoire d'Hydrodynamique", + "type": "child", + "id": "https://ror.org/018b0x874" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Biologiques et des Procédés", + "type": "child", + "id": "https://ror.org/01yypjb30" + }, + { + "label": "Laboratoire d'Électronique, Antennes et Télécommunications", + "type": "child", + "id": "https://ror.org/00ah32k04" + }, + { + "label": "Laboratoire d'Énergétique Moléculaire et Macroscopique, Combustion", + "type": "child", + "id": "https://ror.org/02wy3s959" + }, + { + "label": "Laboratoire de Génie Chimique", + "type": "child", + "id": "https://ror.org/003jnac13" + }, + { + "label": "Laboratoire de Génie Électrique de Grenoble", + "type": "child", + "id": "https://ror.org/05hyx5a17" + }, + { + "label": "Laboratoire de Mécanique des Fluides et d'Acoustique", + "type": "child", + "id": "https://ror.org/04dxeze48" + }, + { + "label": "Laboratoire de Mécanique et Génie Civil", + "type": "child", + "id": "https://ror.org/02fke9256" + }, + { + "label": "Laboratoire de Mécanique, Modélisation & Procédés Propres", + "type": "child", + "id": "https://ror.org/01vrxpt40" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Laboratoire de Recherche Hydrodynamique, Energétique et Environnement Atmosphérique", + "type": "child", + "id": "https://ror.org/057axh226" + }, + { + "label": "Laboratoire de Tribologie et Dynamique des Systèmes", + "type": "child", + "id": "https://ror.org/015vtcw98" + }, + { + "label": "Laboratoire de l'Intégration du Matériau au Système", + "type": "child", + "id": "https://ror.org/04nabhy78" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur pour l'Environnement", + "type": "child", + "id": "https://ror.org/01b2epx09" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratoire des Sciences des Procédés et des Matériaux", + "type": "child", + "id": "https://ror.org/01yr0r787" + }, + { + "label": "Laboratoire des Technologies de la Microélectronique", + "type": "child", + "id": "https://ror.org/036zswm25" + }, + { + "label": "Laboratoire des Écoulements Géophysiques et Industriels", + "type": "child", + "id": "https://ror.org/043pfpy19" + }, + { + "label": "Laboratory for Analysis and Architecture of Systems", + "type": "child", + "id": "https://ror.org/03vcm6439" + }, + { + "label": "Laboratory for Integrated Micro-Mechatronic Systems", + "type": "child", + "id": "https://ror.org/0059vr703" + }, + { + "label": "Laboratory of Mechanics and Acoustics", + "type": "child", + "id": "https://ror.org/03787ar02" + }, + { + "label": "Laboratory of Microstructure Studies and Mechanics of Materials", + "type": "child", + "id": "https://ror.org/01nyrrx14" + }, + { + "label": "Laboratory of Physics of Interfaces and Thin Films", + "type": "child", + "id": "https://ror.org/023f9y602" + }, + { + "label": "Laboratory of Pulp and Paper Science and Graphic Arts", + "type": "child", + "id": "https://ror.org/02z8yps18" + }, + { + "label": "Laboratory of Quantum and Molecular Photonics", + "type": "child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Laboratoire de Thermique et Energie de Nantes", + "type": "child", + "id": "https://ror.org/021fdyt09" + }, + { + "label": "Laboratory on Plasma and Conversion of Energy", + "type": "child", + "id": "https://ror.org/02w5mvk98" + }, + { + "label": "Matériaux Ingénierie et Science", + "type": "child", + "id": "https://ror.org/01rnfhz46" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "PhysicoChimie des Processus de Combustion et de l'Atmosphère", + "type": "child", + "id": "https://ror.org/03k9wer31" + }, + { + "label": "Physics of Ionic and Molecular Interactions", + "type": "child", + "id": "https://ror.org/04kgf6p94" + }, + { + "label": "Physique et Mécanique des Milieux Hétérogènes", + "type": "child", + "id": "https://ror.org/03kr50w79" + }, + { + "label": "Process Engineering for Environment and Food", + "type": "child", + "id": "https://ror.org/05ngxmx20" + }, + { + "label": "Processes and Engineering in Mechanics and Materials", + "type": "child", + "id": "https://ror.org/017jp7t31" + }, + { + "label": "Solids Mechanic Laboratory", + "type": "child", + "id": "https://ror.org/00xd1ek73" + }, + { + "label": "Sols, Solides, Structures, Risques", + "type": "child", + "id": "https://ror.org/03bcdsr62" + }, + { + "label": "Techniques for Biomedical Engineering and Complexity Management–Informatics, Mathematics and Applications Grenoble", + "type": "child", + "id": "https://ror.org/03985kf35" + }, + { + "label": "Wave Propagation Mathematical Study and Simulation", + "type": "child", + "id": "https://ror.org/03gvm2667" + }, + { + "label": "XLIM", + "type": "child", + "id": "https://ror.org/00f7srh09" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00s3s5518.json b/rc-v1.43-v2/updates/00s3s5518.json new file mode 100644 index 000000000..214893227 --- /dev/null +++ b/rc-v1.43-v2/updates/00s3s5518.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 108410, + "geonames_details": { + "country_code": "SA", + "country_name": "Saudi Arabia", + "lat": 24.68773, + "lng": 46.72185, + "name": "Riyadh" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9360 4152" + ], + "preferred": "0000 0004 9360 4152" + }, + { + "type": "wikidata", + "all": [ + "Q12236085" + ], + "preferred": "Q12236085" + }, + { + "type": "fundref", + "all": [ + "100019217" + ], + "preferred": "100019217" + } + ], + "id": "https://ror.org/00s3s5518", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.um.edu.sa" + } + ], + "names": [ + { + "value": "Almaarefa University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "جامعة المعرفة", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "UM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00s409261.json b/rc-v1.43-v2/updates/00s409261.json new file mode 100644 index 000000000..e0b21eaa9 --- /dev/null +++ b/rc-v1.43-v2/updates/00s409261.json @@ -0,0 +1,112 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-08-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1998, + "external_ids": [ + { + "all": [ + "501100005389" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.18147.3b" + ], + "preferred": "grid.18147.3b", + "type": "grid" + }, + { + "all": [ + "0000 0001 2172 4807" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1309998" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00s409261", + "links": [ + { + "type": "website", + "value": "http://www.uninsubria.eu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Insubria" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.82058, + "lng": 8.82511, + "name": "Varese" + }, + "geonames_id": 3164699 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Insubria" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Università degli Studi dell'Insubria" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de l'insubrie" + } + ], + "relationships": [ + { + "label": "Ospedale Filippo Del Ponte Varese", + "type": "related", + "id": "https://ror.org/02112mb03" + }, + { + "label": "Ospedale di Circolo e Fondazione Macchi", + "type": "related", + "id": "https://ror.org/02s6h0431" + }, + { + "label": "NODES S.c.a.r.l", + "type": "related", + "id": "https://ror.org/04hp1ky92" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00sh68184.json b/rc-v1.43-v2/updates/00sh68184.json new file mode 100644 index 000000000..0cc3dd1c3 --- /dev/null +++ b/rc-v1.43-v2/updates/00sh68184.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2917698, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 47.55, + "lng": 7.68333, + "name": "Grenzach-Wyhlen" + } + } + ], + "established": 1896, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424277.0" + ], + "preferred": "grid.424277.0" + }, + { + "type": "wikidata", + "all": [ + "Q30254367" + ], + "preferred": "Q30254367" + }, + { + "type": "isni", + "all": [ + "0000 0004 0397 3959" + ], + "preferred": "0000 0004 0397 3959" + }, + { + "type": "fundref", + "all": [ + "100020957" + ], + "preferred": "100020957" + } + ], + "id": "https://ror.org/00sh68184", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.roche.de" + } + ], + "names": [ + { + "value": "Roche Pharma AG (Germany)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Roche Germany", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Roche Pharma AG", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Roche (Switzerland)", + "type": "parent", + "id": "https://ror.org/00by1q217" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00skw9v43.json b/rc-v1.43-v2/updates/00skw9v43.json new file mode 100644 index 000000000..687cd93bc --- /dev/null +++ b/rc-v1.43-v2/updates/00skw9v43.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0410 8422" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q51784646" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503366.5" + ], + "preferred": "grid.503366.5" + } + ], + "id": "https://ror.org/00skw9v43", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://l2s.centralesupelec.fr" + } + ], + "names": [ + { + "value": "Laboratoire des signaux et systèmes", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire des signaux & systèmes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "L2S", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "CentraleSupélec", + "type": "parent", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00sps5y96.json b/rc-v1.43-v2/updates/00sps5y96.json new file mode 100644 index 000000000..209ec9b38 --- /dev/null +++ b/rc-v1.43-v2/updates/00sps5y96.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2106 0959" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434661.2" + ], + "preferred": "grid.434661.2" + } + ], + "id": "https://ror.org/00sps5y96", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cotec.es" + } + ], + "names": [ + { + "value": "Fundación para la innovación tecnológica", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "COTEC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00tpn9z48.json b/rc-v1.43-v2/updates/00tpn9z48.json new file mode 100644 index 000000000..d781d2259 --- /dev/null +++ b/rc-v1.43-v2/updates/00tpn9z48.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 3113209, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.431, + "lng": -8.64435, + "name": "Pontevedra" + } + } + ], + "established": 1921, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2292 6080" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q38078567" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.502190.f" + ], + "preferred": "grid.502190.f" + } + ], + "id": "https://ror.org/00tpn9z48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mbg.csic.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Galicia_Biological_Mission" + } + ], + "names": [ + { + "value": "Misión Biológica de Galicia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Biological Mission of Galicia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Galicia Biological Mission", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "MBG-CSIC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Consejo Superior de Investigaciones Científicas", + "type": "parent", + "id": "https://ror.org/02gfc7t72" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00v4yb702.json b/rc-v1.43-v2/updates/00v4yb702.json new file mode 100644 index 000000000..4b99a9259 --- /dev/null +++ b/rc-v1.43-v2/updates/00v4yb702.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1829, + "external_ids": [ + { + "all": [ + "grid.262613.2" + ], + "preferred": "grid.262613.2", + "type": "grid" + }, + { + "all": [ + "0000 0001 2323 3518" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2140778" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00v4yb702", + "links": [ + { + "type": "website", + "value": "http://www.rit.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Rochester_Institute_of_Technology" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.15478, + "lng": -77.61556, + "name": "Rochester" + }, + "geonames_id": 5134086 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "RIT" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Rochester Athenaeum and Mechanics Institute" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Rochester Institute of Technology" + } + ], + "relationships": [ + { + "label": "Rochester Institute of Technology Croatia", + "type": "related", + "id": "https://ror.org/03jgxzm03" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00vc14296.json b/rc-v1.43-v2/updates/00vc14296.json new file mode 100644 index 000000000..428a9d124 --- /dev/null +++ b/rc-v1.43-v2/updates/00vc14296.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1827, + "external_ids": [ + { + "all": [ + "grid.431583.8" + ], + "preferred": "grid.431583.8", + "type": "grid" + }, + { + "all": [ + "0000 0000 8867 670X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5649375" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00vc14296", + "links": [ + { + "type": "website", + "value": "https://www.hanover.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Hanover_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.71423, + "lng": -85.47357, + "name": "Hanover" + }, + "geonames_id": 4258510 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hanover College" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00vtgdb53.json b/rc-v1.43-v2/updates/00vtgdb53.json new file mode 100644 index 000000000..d8ae3a673 --- /dev/null +++ b/rc-v1.43-v2/updates/00vtgdb53.json @@ -0,0 +1,209 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1451, + "external_ids": [ + { + "all": [ + "501100000853" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.8756.c" + ], + "preferred": "grid.8756.c", + "type": "grid" + }, + { + "all": [ + "0000 0001 2193 314X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q192775" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00vtgdb53", + "links": [ + { + "type": "website", + "value": "http://www.gla.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Glasgow" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.86515, + "lng": -4.25763, + "name": "Glasgow" + }, + "geonames_id": 2648579 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Glasgow University" + }, + { + "lang": "gd", + "types": [ + "label" + ], + "value": "Oilthigh Ghlaschu" + }, + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Prifysgol Glasgow" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Glasgow" + } + ], + "relationships": [ + { + "label": "MRC University of Glasgow Centre for Virus Research", + "type": "child", + "id": "https://ror.org/03vaer060" + }, + { + "label": "MRC/CSO Social and Public Health Sciences Unit", + "type": "child", + "id": "https://ror.org/02v3sdn51" + }, + { + "label": "Malawi Epidemiology and Intervention Research Unit", + "type": "child", + "id": "https://ror.org/045z18t19" + }, + { + "label": "National Centre for Resilience", + "type": "child", + "id": "https://ror.org/03fr3nn32" + }, + { + "label": "Scottish Universities Environmental Research Centre", + "type": "child", + "id": "https://ror.org/05jfq2w07" + }, + { + "label": "The Hunterian", + "type": "child", + "id": "https://ror.org/04s5hmf73" + }, + { + "label": "Wellcome Centre for Molecular Parasitology", + "type": "child", + "id": "https://ror.org/00m7w8s72" + }, + { + "label": "Gartnavel General Hospital", + "type": "related", + "id": "https://ror.org/00tkrd758" + }, + { + "label": "Glasgow Royal Infirmary", + "type": "related", + "id": "https://ror.org/00bjck208" + }, + { + "label": "Glasgow Victoria Infirmary", + "type": "related", + "id": "https://ror.org/03cjp2c87" + }, + { + "label": "Golden Jubilee National Hospital", + "type": "related", + "id": "https://ror.org/0103jbm17" + }, + { + "label": "Hairmyres Hospital", + "type": "related", + "id": "https://ror.org/0488ndr53" + }, + { + "label": "Inverclyde Royal Hospital", + "type": "related", + "id": "https://ror.org/01s0phq15" + }, + { + "label": "Princess Royal Maternity Hospital", + "type": "related", + "id": "https://ror.org/053eyjs84" + }, + { + "label": "Royal Alexandra Hospital", + "type": "related", + "id": "https://ror.org/01nj8sa76" + }, + { + "label": "Royal Hospital for Children", + "type": "related", + "id": "https://ror.org/01cb0kd74" + }, + { + "label": "Southern General Hospital", + "type": "related", + "id": "https://ror.org/04wvkky61" + }, + { + "label": "Stobhill Hospital", + "type": "related", + "id": "https://ror.org/04pc31859" + }, + { + "label": "Western Infirmary", + "type": "related", + "id": "https://ror.org/02e22bh87" + }, + { + "label": "Scottish Confederation of University and Research Libraries", + "type": "related", + "id": "https://ror.org/03hkzcg46" + }, + { + "label": "QuantIC", + "type": "child", + "id": "https://ror.org/04qdwq068" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00vvz3k68.json b/rc-v1.43-v2/updates/00vvz3k68.json new file mode 100644 index 000000000..82e59e64b --- /dev/null +++ b/rc-v1.43-v2/updates/00vvz3k68.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 1264527, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 13.08784, + "lng": 80.27847, + "name": "Chennai" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6050 1114" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30263769" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.466628.8" + ], + "preferred": "grid.466628.8" + } + ], + "id": "https://ror.org/00vvz3k68", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.eso.sankaranethralaya.org" + } + ], + "names": [ + { + "value": "Elite School of Optometry", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ESO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Sankara Nethralaya", + "type": "parent", + "id": "https://ror.org/02k0t9a94" + }, + { + "label": "SASTRA University", + "type": "related", + "id": "https://ror.org/032jk8892" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00w67e447.json b/rc-v1.43-v2/updates/00w67e447.json new file mode 100644 index 000000000..7f4721c82 --- /dev/null +++ b/rc-v1.43-v2/updates/00w67e447.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0366 8268" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503330.6" + ], + "preferred": "grid.503330.6" + } + ], + "id": "https://ror.org/00w67e447", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lptms.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratory of Theoretical Physics and Statistical Models", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire de Physique Théorique et Modèles Statistiques", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "LPTMS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00wk2mp56.json b/rc-v1.43-v2/updates/00wk2mp56.json new file mode 100644 index 000000000..5e6d1c6b9 --- /dev/null +++ b/rc-v1.43-v2/updates/00wk2mp56.json @@ -0,0 +1,115 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1952, + "external_ids": [ + { + "all": [ + "501100002358", + "501100003096" + ], + "preferred": "501100002358", + "type": "fundref" + }, + { + "all": [ + "grid.64939.31" + ], + "preferred": "grid.64939.31", + "type": "grid" + }, + { + "all": [ + "0000 0000 9999 1211" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2299797" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00wk2mp56", + "links": [ + { + "type": "website", + "value": "http://ev.buaa.edu.cn/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Beihang_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + }, + "geonames_id": 1816670 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BUAA" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Beihang University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Beijing University of Aeronautics and Astronautics" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "北京航空航天大学" + } + ], + "relationships": [ + { + "label": "State Key Laboratory of Software Development Environment", + "type": "child", + "id": "https://ror.org/017r4dj03" + }, + { + "label": "State Key Laboratory of Virtual Reality Technology and Systems", + "type": "child", + "id": "https://ror.org/0009eea46" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00ws85526.json b/rc-v1.43-v2/updates/00ws85526.json new file mode 100644 index 000000000..887c6cd0d --- /dev/null +++ b/rc-v1.43-v2/updates/00ws85526.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3128026, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.436451.1" + ], + "preferred": "grid.436451.1" + } + ], + "id": "https://ror.org/00ws85526", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.metrobilbao.eus" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Metro_Bilbao" + } + ], + "names": [ + { + "value": "Metro Bilbao", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Metro de Bilbao", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Bilboko metroa", + "types": [ + "label" + ], + "lang": "eu" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00wvqgd19.json b/rc-v1.43-v2/updates/00wvqgd19.json new file mode 100644 index 000000000..0647fb531 --- /dev/null +++ b/rc-v1.43-v2/updates/00wvqgd19.json @@ -0,0 +1,114 @@ +{ + "locations": [ + { + "geonames_id": 3116503, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.06441, + "lng": -2.48977, + "name": "Arrasate / Mondragón" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0662 2298" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2599486" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.436417.3" + ], + "preferred": "grid.436417.3" + } + ], + "id": "https://ror.org/00wvqgd19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.mondragon.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Mondrag%C3%B3n" + } + ], + "names": [ + { + "value": "Mondragon University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidad de Mondragón", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Mondragon Unibertsitatea", + "types": [ + "label" + ], + "lang": "eu" + }, + { + "value": "Universidade de Mondragón", + "types": [ + "label" + ], + "lang": "gl" + }, + { + "value": "MU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Basque Culinary Center", + "type": "related", + "id": "https://ror.org/03ftn5w97" + }, + { + "label": "Mondragon Corporation (Spain)", + "type": "parent", + "id": "https://ror.org/00fxswh37" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00x362k69.json b/rc-v1.43-v2/updates/00x362k69.json new file mode 100644 index 000000000..da08ed44a --- /dev/null +++ b/rc-v1.43-v2/updates/00x362k69.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1954, + "external_ids": [ + { + "all": [ + "grid.278859.9" + ], + "preferred": "grid.278859.9", + "type": "grid" + }, + { + "all": [ + "0000 0004 0486 659X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7270336" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00x362k69", + "links": [ + { + "type": "website", + "value": "http://www.sahealth.sa.gov.au/wps/wcm/connect/public+content/sa+health+internet/health+services/hospitals+and+health+services+metropolitan+adelaide/the+queen+elizabeth+hospital/the+queen+elizabeth+hospital" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Queen_Elizabeth_Hospital,_Adelaide" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -34.92866, + "lng": 138.59863, + "name": "Adelaide" + }, + "geonames_id": 2078025 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Queen Elizabeth Hospital" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "TQEH" + } + ], + "relationships": [ + { + "label": "Central Adelaide Local Health Network", + "type": "parent", + "id": "https://ror.org/02r40rn49" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00xn1pr13.json b/rc-v1.43-v2/updates/00xn1pr13.json new file mode 100644 index 000000000..ebc8ac13a --- /dev/null +++ b/rc-v1.43-v2/updates/00xn1pr13.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 2849483, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.01513, + "lng": 12.10161, + "name": "Regensburg" + } + } + ], + "established": 2022, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q110516280" + ], + "preferred": "Q110516280" + } + ], + "id": "https://ror.org/00xn1pr13", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://lit.eu" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Leibniz-Institut_f%C3%BCr_Immuntherapie" + } + ], + "names": [ + { + "value": "Leibniz Institute for Immunotherapy", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Regensburger Centrum für Interventionelle Immunologie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Leibniz-Institut für Immuntherapie", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "LIT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00y0aj963.json b/rc-v1.43-v2/updates/00y0aj963.json new file mode 100644 index 000000000..5a28f61a0 --- /dev/null +++ b/rc-v1.43-v2/updates/00y0aj963.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30256790" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434604.1" + ], + "preferred": "grid.434604.1" + } + ], + "id": "https://ror.org/00y0aj963", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.thecorebike.com/" + } + ], + "names": [ + { + "value": "Going Green (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00y6q9n79.json b/rc-v1.43-v2/updates/00y6q9n79.json new file mode 100644 index 000000000..f2018281a --- /dev/null +++ b/rc-v1.43-v2/updates/00y6q9n79.json @@ -0,0 +1,124 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1977, + "external_ids": [ + { + "all": [ + "501100003751", + "100016145", + "100016658" + ], + "preferred": "501100003751", + "type": "fundref" + }, + { + "all": [ + "grid.436087.e" + ], + "preferred": "grid.436087.e", + "type": "grid" + }, + { + "all": [ + "Q3113883" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00y6q9n79", + "links": [ + { + "type": "website", + "value": "https://www.sanidad.gob.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Health_(Spain)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + }, + "geonames_id": 3117735 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MISAN" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Ministerio de Sanidad Servicios Sociales e Igualdad" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Ministry of Health" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Ministry of Health, Social Services and Equality" + } + ], + "relationships": [ + { + "label": "Agencia Española de Consumo, Seguridad Alimentaría y Nutrición", + "type": "child", + "id": "https://ror.org/02nbvj238" + }, + { + "label": "Agencia Española de Medicamentos y Productos Sanitarios", + "type": "child", + "id": "https://ror.org/043fs9135" + }, + { + "label": "Organización Nacional de Trasplantes", + "type": "child", + "id": "https://ror.org/00v1wt879" + }, + { + "label": "Spanish National Centre for Cardiovascular Research", + "type": "child", + "id": "https://ror.org/02qs1a797" + }, + { + "label": "Sistema Nacional de Salud", + "type": "child", + "id": "https://ror.org/026z37f85" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00y7tet25.json b/rc-v1.43-v2/updates/00y7tet25.json new file mode 100644 index 000000000..1425f67b4 --- /dev/null +++ b/rc-v1.43-v2/updates/00y7tet25.json @@ -0,0 +1,67 @@ +{ + "admin": { + "created": { + "date": "2022-06-16", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-06-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2017, + "external_ids": [], + "id": "https://ror.org/00y7tet25", + "links": [ + { + "type": "website", + "value": "https://eurogen-ern.eu" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + }, + "geonames_id": 2750053 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "ERN eUROGEN" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "European Reference Network on urogenital diseases and conditions" + } + ], + "relationships": [ + { + "label": "ERN Board of Member States", + "type": "parent", + "id": "https://ror.org/00r7apq26" + }, + { + "label": "Radboud University Medical Center", + "type": "related", + "id": "https://ror.org/05wg1m734" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00yjd3n13.json b/rc-v1.43-v2/updates/00yjd3n13.json new file mode 100644 index 000000000..6b6c0e17c --- /dev/null +++ b/rc-v1.43-v2/updates/00yjd3n13.json @@ -0,0 +1,162 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1952, + "external_ids": [ + { + "all": [ + "501100001711", + "501100002339" + ], + "preferred": "501100001711", + "type": "fundref" + }, + { + "all": [ + "grid.425888.b" + ], + "preferred": "grid.425888.b", + "type": "grid" + }, + { + "all": [ + "0000 0001 1957 0992" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q471732", + "Q45132019" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00yjd3n13", + "links": [ + { + "type": "website", + "value": "http://www.snf.ch/en" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Swiss_National_Science_Foundation" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.94809, + "lng": 7.44744, + "name": "Bern" + }, + "geonames_id": 2661552 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "FNS" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Fondo Nazionale Svizzero per la Ricerca Scientifica" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Fonds national suisse de la recherche scientifique" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SNF" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SNSF" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Schweizerische Nationalfonds zur Förderung der wissenschaftlichen Forschung" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Swiss National Science Foundation" + } + ], + "relationships": [ + { + "label": "National Centre of Competence in Research Evolving Language", + "type": "child", + "id": "https://ror.org/00ghka958" + }, + { + "label": "National Centre of Competence in Research Digital Fabrication", + "type": "child", + "id": "https://ror.org/03xf64p49" + }, + { + "label": "National Centre of Competence in Research Robotics", + "type": "child", + "id": "https://ror.org/02rdd8804" + }, + { + "label": "National Center of Competence in Research Materials’ Revolution: Computational Design and Discovery of Novel Materials", + "type": "child", + "id": "https://ror.org/00vvxbe27" + }, + { + "label": "nccr – on the move", + "type": "child", + "id": "https://ror.org/055d2j725" + }, + { + "label": "Swiss National Data and Service Center for the Humanities", + "type": "related", + "id": "https://ror.org/047f01g80" + }, + { + "label": "NCCR SwissMAP", + "type": "child", + "id": "https://ror.org/00xzacp61" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00z54nq84.json b/rc-v1.43-v2/updates/00z54nq84.json new file mode 100644 index 000000000..61880f47a --- /dev/null +++ b/rc-v1.43-v2/updates/00z54nq84.json @@ -0,0 +1,312 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8863 6724" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457018.f" + ], + "preferred": "grid.457018.f" + } + ], + "id": "https://ror.org/00z54nq84", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/inp/" + } + ], + "names": [ + { + "value": "Institut de Physique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Adhesion and Inflammation Lab", + "type": "child", + "id": "https://ror.org/055ymkj32" + }, + { + "label": "Center of Theoretical Physics", + "type": "child", + "id": "https://ror.org/02bsd9p69" + }, + { + "label": "Centre Lasers Intenses et Applications", + "type": "child", + "id": "https://ror.org/02910d597" + }, + { + "label": "Centre de Physique Théorique", + "type": "child", + "id": "https://ror.org/052bbtn31" + }, + { + "label": "Centre de Recherche sur l'Hétéro-Epitaxie et ses Applications", + "type": "child", + "id": "https://ror.org/03y8mpv07" + }, + { + "label": "Centre de Recherche sur les Ions, les Matériaux et la Photonique", + "type": "child", + "id": "https://ror.org/02y0gk295" + }, + { + "label": "Centre d’Élaboration de Matériaux et d’Études Structurales", + "type": "child", + "id": "https://ror.org/03kwnqq69" + }, + { + "label": "Laboratoire National des Champs Magnétiques Intenses", + "type": "child", + "id": "https://ror.org/045ktmd28" + }, + { + "label": "Groupe d’Étude de la Matière Condensée", + "type": "child", + "id": "https://ror.org/01wrng808" + }, + { + "label": "Groupe de Physique des Matériaux", + "type": "child", + "id": "https://ror.org/03c2k2909" + }, + { + "label": "Institut Lumière Matière", + "type": "child", + "id": "https://ror.org/0323bey33" + }, + { + "label": "Institut Néel", + "type": "child", + "id": "https://ror.org/04dbzz632" + }, + { + "label": "Institut de Physique Théorique", + "type": "child", + "id": "https://ror.org/058rvd314" + }, + { + "label": "Institut de Physique de Rennes", + "type": "child", + "id": "https://ror.org/022b0h879" + }, + { + "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", + "type": "child", + "id": "https://ror.org/02za18p66" + }, + { + "label": "Institut des Matériaux, de Microélectronique et des Nanosciences de Provence", + "type": "child", + "id": "https://ror.org/0238zyh04" + }, + { + "label": "Institute of Mineralogy, Materials Physics and Cosmochemistry", + "type": "child", + "id": "https://ror.org/05abgg682" + }, + { + "label": "Interfaces, Confinement, Matériaux et Nanostructures", + "type": "child", + "id": "https://ror.org/008h1f725" + }, + { + "label": "Laboratoire Kastler Brossel", + "type": "child", + "id": "https://ror.org/01h14ww21" + }, + { + "label": "Laboratoire Charles Coulomb", + "type": "child", + "id": "https://ror.org/02ftce284" + }, + { + "label": "Laboratoire Collisions Agrégats Réactivité", + "type": "child", + "id": "https://ror.org/0416g8z79" + }, + { + "label": "Laboratoire Interdisciplinaire Carnot de Bourgogne", + "type": "child", + "id": "https://ror.org/02b6c1039" + }, + { + "label": "Laboratoire Jean Perrin", + "type": "child", + "id": "https://ror.org/01ghvgs84" + }, + { + "label": "Laboratoire Léon Brillouin", + "type": "child", + "id": "https://ror.org/029rmm934" + }, + { + "label": "Laboratoire Ondes et Matière d'Aquitaine", + "type": "child", + "id": "https://ror.org/05qsp5m64" + }, + { + "label": "Laboratoire Photonique, Numérique et Nanosciences", + "type": "child", + "id": "https://ror.org/03vdg7e33" + }, + { + "label": "Laboratoire d'Optique Appliquée", + "type": "child", + "id": "https://ror.org/03czns913" + }, + { + "label": "Laboratoire d'Étude des Microstructures", + "type": "child", + "id": "https://ror.org/03nqvpf75" + }, + { + "label": "Laboratoire de Cristallographie et Sciences des Matériaux", + "type": "child", + "id": "https://ror.org/04310tc15" + }, + { + "label": "Laboratoire de Physique Théorique", + "type": "child", + "id": "https://ror.org/01w0hda30" + }, + { + "label": "Laboratoire de Physique de l'ENS de Lyon", + "type": "child", + "id": "https://ror.org/00w5ay796" + }, + { + "label": "Laboratoire de Physique des Lasers, Atomes et Molécules", + "type": "child", + "id": "https://ror.org/04e89s906" + }, + { + "label": "Laboratoire de Physique et Chimie des Nano-Objets", + "type": "child", + "id": "https://ror.org/042xmz674" + }, + { + "label": "Laboratoire de Physique et Modélisation des Milieux Condensés", + "type": "child", + "id": "https://ror.org/02mc6qk71" + }, + { + "label": "Laboratory Materials and Quantum Phenomena", + "type": "child", + "id": "https://ror.org/02p3et738" + }, + { + "label": "Laboratory for Optics & Biosciences", + "type": "child", + "id": "https://ror.org/000p29f53" + }, + { + "label": "Laboratoire de Cristallographie, Résonance Magnétique et Modélisations", + "type": "child", + "id": "https://ror.org/017je3b10" + }, + { + "label": "Laboratoire de Physique et d’Étude des Matériaux", + "type": "child", + "id": "https://ror.org/00a72jq18" + }, + { + "label": "Laboratoire de Physique Théorique de la Matière Condensée", + "type": "child", + "id": "https://ror.org/04zaaa143" + }, + { + "label": "Laboratoire de Physique Théorique et Hautes Energies", + "type": "child", + "id": "https://ror.org/02mph9k76" + }, + { + "label": "Laser Physics Laboratory", + "type": "child", + "id": "https://ror.org/03n3yg876" + }, + { + "label": "Molecular and Atmospheric Spectrometry Group", + "type": "child", + "id": "https://ror.org/03vyzg221" + }, + { + "label": "Institut des NanoSciences de Paris", + "type": "child", + "id": "https://ror.org/03t2f0a12" + }, + { + "label": "Service de Physique de l'État Condensé", + "type": "child", + "id": "https://ror.org/0247p4w70" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "child", + "id": "https://ror.org/03e044190" + }, + { + "label": "Structure et Propriétés d'Architectures Moléculaires", + "type": "child", + "id": "https://ror.org/00x5jmr79" + }, + { + "label": "Surface du Verre et Interfaces", + "type": "child", + "id": "https://ror.org/04kadgz77" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00za53h95.json b/rc-v1.43-v2/updates/00za53h95.json new file mode 100644 index 000000000..7103b75ff --- /dev/null +++ b/rc-v1.43-v2/updates/00za53h95.json @@ -0,0 +1,212 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1876, + "external_ids": [ + { + "all": [ + "100007880", + "100005932", + "100005952", + "100009810", + "100010489", + "100007228", + "100008309", + "100008911", + "100005542", + "100009053", + "100008632" + ], + "preferred": "100007880", + "type": "fundref" + }, + { + "all": [ + "grid.21107.35" + ], + "preferred": "grid.21107.35", + "type": "grid" + }, + { + "all": [ + "0000 0001 2171 9311" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q193727" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00za53h95", + "links": [ + { + "type": "website", + "value": "https://www.jhu.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Johns_Hopkins_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + }, + "geonames_id": 4347778 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "JHU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Johns Hopkins University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Johns Hopkins" + } + ], + "relationships": [ + { + "label": "Johns Hopkins Berman Institute of Bioethics", + "type": "child", + "id": "https://ror.org/00gzx6s15" + }, + { + "label": "Johns Hopkins Center for Communication Programs", + "type": "child", + "id": "https://ror.org/05hs7zv85" + }, + { + "label": "Johns Hopkins University Applied Physics Laboratory", + "type": "child", + "id": "https://ror.org/029pp9z10" + }, + { + "label": "Johns Hopkins University SAIS Bologna Center", + "type": "child", + "id": "https://ror.org/02nckqd02" + }, + { + "label": "Johns Hopkins University – Nanjing University Center for Chinese and American Studies", + "type": "child", + "id": "https://ror.org/05ajv1r64" + }, + { + "label": "Maryland Space Grant Consortium", + "type": "child", + "id": "https://ror.org/02k2r5455" + }, + { + "label": "PARADIM", + "type": "child", + "id": "https://ror.org/04pw1zg89" + }, + { + "label": "Materials Science in Extreme Environments University Research Alliance", + "type": "child", + "id": "https://ror.org/04n07f274" + }, + { + "label": "Johns Hopkins University Center for AIDS Research", + "type": "child", + "id": "https://ror.org/05n52x113" + }, + { + "label": "Hopkins Extreme Materials Institute", + "type": "child", + "id": "https://ror.org/02ed2th17" + }, + { + "label": "Hospital Punta Pacifica", + "type": "related", + "id": "https://ror.org/01a48y329" + }, + { + "label": "Howard County General Hospital", + "type": "related", + "id": "https://ror.org/05mgsm482" + }, + { + "label": "Johns Hopkins All Children's Hospital", + "type": "related", + "id": "https://ror.org/013x5cp73" + }, + { + "label": "Johns Hopkins Bayview Medical Center", + "type": "related", + "id": "https://ror.org/04pwc8466" + }, + { + "label": "Johns Hopkins Children's Center", + "type": "related", + "id": "https://ror.org/03fqqej38" + }, + { + "label": "Johns Hopkins Medicine", + "type": "related", + "id": "https://ror.org/037zgn354" + }, + { + "label": "Peninsula Regional Medical Center", + "type": "related", + "id": "https://ror.org/02tc4ww71" + }, + { + "label": "Saudi Aramco Medical Services Organization", + "type": "related", + "id": "https://ror.org/04k820v98" + }, + { + "label": "Tawam Hospital", + "type": "related", + "id": "https://ror.org/007a5h107" + }, + { + "label": "Konza Prairie Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/02wavzm11" + }, + { + "label": "Packard Center", + "type": "child", + "id": "https://ror.org/042fhmq33" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/00zay3w86.json b/rc-v1.43-v2/updates/00zay3w86.json new file mode 100644 index 000000000..499941407 --- /dev/null +++ b/rc-v1.43-v2/updates/00zay3w86.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 2016, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q47520094" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503099.6" + ], + "preferred": "grid.503099.6" + } + ], + "id": "https://ror.org/00zay3w86", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.c2n.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Centre for Nanoscience and Nanotechnology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre de Nanosciences et de Nanotechnologies", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "C2N", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01070mq45.json b/rc-v1.43-v2/updates/01070mq45.json new file mode 100644 index 000000000..153a7b05e --- /dev/null +++ b/rc-v1.43-v2/updates/01070mq45.json @@ -0,0 +1,156 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1868, + "external_ids": [ + { + "all": [ + "100006710", + "100007284", + "100008296" + ], + "preferred": "100006710", + "type": "fundref" + }, + { + "all": [ + "grid.254444.7" + ], + "preferred": "grid.254444.7", + "type": "grid" + }, + { + "all": [ + "0000 0001 1456 7807" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q349055" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01070mq45", + "links": [ + { + "type": "website", + "value": "https://wayne.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Wayne_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.33143, + "lng": -83.04575, + "name": "Detroit" + }, + "geonames_id": 4990729 + } + ], + "names": [ + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal Wayne" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Wayne State" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "WSU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Wayne State University" + } + ], + "relationships": [ + { + "label": "Ascension Providence Hospital", + "type": "related", + "id": "https://ror.org/0207smp78" + }, + { + "label": "Crittenton Hospital Medical Center", + "type": "related", + "id": "https://ror.org/05x5g2972" + }, + { + "label": "Detroit Medical Center", + "type": "related", + "id": "https://ror.org/05gehxw18" + }, + { + "label": "Harper University Hospital", + "type": "related", + "id": "https://ror.org/00sxe0e68" + }, + { + "label": "Henry Ford Health System", + "type": "related", + "id": "https://ror.org/02kwnkm68" + }, + { + "label": "John D. Dingell VA Medical Center", + "type": "related", + "id": "https://ror.org/0057s8s52" + }, + { + "label": "The Barbara Ann Karmanos Cancer Institute", + "type": "related", + "id": "https://ror.org/00ee40h97" + }, + { + "label": "Kresge Eye Institute", + "type": "related", + "id": "https://ror.org/003dkgb76" + }, + { + "label": "St. John Hospital & Medical Center", + "type": "related", + "id": "https://ror.org/04sac7215" + }, + { + "label": "Michigan Center for Urban African American Aging Research", + "type": "child", + "id": "https://ror.org/00q1brk57" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/010ywy128.json b/rc-v1.43-v2/updates/010ywy128.json new file mode 100644 index 000000000..89c3591ae --- /dev/null +++ b/rc-v1.43-v2/updates/010ywy128.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3696183, + "geonames_details": { + "country_code": "PE", + "country_name": "Peru", + "lat": -3.74912, + "lng": -73.25383, + "name": "Iquitos" + } + } + ], + "established": 1981, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2177 4732" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.493484.6" + ], + "preferred": "grid.493484.6" + } + ], + "id": "https://ror.org/010ywy128", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gob.pe/iiap" + } + ], + "names": [ + { + "value": "Instituto de Investigaciones de la Amazonía Peruana", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IIAP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/011abem59.json b/rc-v1.43-v2/updates/011abem59.json new file mode 100644 index 000000000..8c71f5f75 --- /dev/null +++ b/rc-v1.43-v2/updates/011abem59.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0614 7687" + ], + "preferred": "0000 0004 0614 7687" + }, + { + "type": "wikidata", + "all": [ + "Q30262344" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463972.d" + ], + "preferred": "grid.463972.d" + } + ], + "id": "https://ror.org/011abem59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.egce.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Évolution, Génomes, Comportement, Écologie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "LEGS", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Laboratoire Évolution, Génomes, Comportement, Écologie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "EGCE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/011jtr847.json b/rc-v1.43-v2/updates/011jtr847.json new file mode 100644 index 000000000..afe23feca --- /dev/null +++ b/rc-v1.43-v2/updates/011jtr847.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424716.2" + ], + "preferred": "grid.424716.2" + } + ], + "id": "https://ror.org/011jtr847", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.irta.cat/ca/centre/irta-cresa/" + } + ], + "names": [ + { + "value": "Centre de Recerca en Sanitat Animal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IRTA Centre de Recerca en Sanitat Animal", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut de Recerca i Tecnologia Agroalimentàries Centre de Recerca en Sanitat Animal", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IRTA-CReSA", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CReSA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Universitat Autònoma de Barcelona", + "type": "related", + "id": "https://ror.org/052g8jq94" + }, + { + "label": "Institute for Research and Technology in Food and Agriculture", + "type": "parent", + "id": "https://ror.org/012zh9h13" + }, + { + "label": "Institute for Research and Technology in Food and Agriculture", + "type": "successor", + "id": "https://ror.org/012zh9h13" + } + ], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/011n4tk56.json b/rc-v1.43-v2/updates/011n4tk56.json new file mode 100644 index 000000000..2a173991b --- /dev/null +++ b/rc-v1.43-v2/updates/011n4tk56.json @@ -0,0 +1,93 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1962, + "external_ids": [ + { + "all": [ + "grid.482495.6" + ], + "preferred": "grid.482495.6", + "type": "grid" + }, + { + "all": [ + "0000 0001 2181 3826" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/011n4tk56", + "links": [ + { + "type": "website", + "value": "http://www.omafra.gov.on.ca/english/research/ario/institute.htm" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Agricultural_Research_Institute_of_Ontario" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.54594, + "lng": -80.25599, + "name": "Guelph" + }, + "geonames_id": 5967629 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ARIO" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Agricultural Research Institute of Ontario" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Institut de Recherche Agricole de l'Ontario" + } + ], + "relationships": [ + { + "label": "Ministry of Agriculture, Food and Rural Affairs", + "type": "parent", + "id": "https://ror.org/033w59g46" + }, + { + "label": "Ontario Agri-Food Innovation Alliance", + "type": "related", + "id": "https://ror.org/02ftfma65" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/011xg1225.json b/rc-v1.43-v2/updates/011xg1225.json new file mode 100644 index 000000000..252c336dd --- /dev/null +++ b/rc-v1.43-v2/updates/011xg1225.json @@ -0,0 +1,118 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2001, + "external_ids": [ + { + "all": [ + "0000 0001 2243 1571" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q30261418" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.462287.d" + ], + "preferred": "grid.462287.d", + "type": "grid" + } + ], + "id": "https://ror.org/011xg1225", + "links": [ + { + "type": "website", + "value": "http://umr-moisa.cirad.fr/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Marchés, Organisations, Institutions et Stratégies d'Acteurs" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MOISA" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MoISA" + } + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "International Centre for Advanced Mediterranean Agronomic Studies", + "type": "parent", + "id": "https://ror.org/04abkkz03" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/015q23935" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01225hq90.json b/rc-v1.43-v2/updates/01225hq90.json new file mode 100644 index 000000000..80850941e --- /dev/null +++ b/rc-v1.43-v2/updates/01225hq90.json @@ -0,0 +1,116 @@ +{ + "locations": [ + { + "geonames_id": 2972315, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.60426, + "lng": 1.44367, + "name": "Toulouse" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0382 8364" + ], + "preferred": "0000 0004 0382 8364" + }, + { + "type": "wikidata", + "all": [ + "Q51780455" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.500939.6" + ], + "preferred": "grid.500939.6" + } + ], + "id": "https://ror.org/01225hq90", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cesbio.cnrs.fr" + } + ], + "names": [ + { + "value": "Centre d'Études Spatiales de la Biosphère", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Center for the Study of the Biosphere from Space", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CESBIO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Centre National d'Études Spatiales", + "type": "parent", + "id": "https://ror.org/04h1h0y33" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0124x7055.json b/rc-v1.43-v2/updates/0124x7055.json new file mode 100644 index 000000000..d64f31f11 --- /dev/null +++ b/rc-v1.43-v2/updates/0124x7055.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2193 5524" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100001872" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1054348" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.410460.7" + ], + "preferred": "grid.410460.7" + } + ], + "id": "https://ror.org/0124x7055", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cdti.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Centre_for_the_Development_of_Industrial_Technology" + } + ], + "names": [ + { + "value": "Centre for Industrial Technological Development", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centro para el Desarrollo Tecnologico Industrial", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "CDTI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/012fqzm33.json b/rc-v1.43-v2/updates/012fqzm33.json new file mode 100644 index 000000000..b6689a0eb --- /dev/null +++ b/rc-v1.43-v2/updates/012fqzm33.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30261512" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462625.1" + ], + "preferred": "grid.462625.1" + } + ], + "id": "https://ror.org/012fqzm33", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://moulon.inrae.fr" + } + ], + "names": [ + { + "value": "Génétique Quantitative et Évolution Le Moulon", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Quantitative Genetics and Evolution - Le Moulon", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/012k1v959.json b/rc-v1.43-v2/updates/012k1v959.json new file mode 100644 index 000000000..395a93750 --- /dev/null +++ b/rc-v1.43-v2/updates/012k1v959.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2867714, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.13743, + "lng": 11.57549, + "name": "Munich" + } + } + ], + "established": 1971, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1408 3925" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q314089" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434949.7" + ], + "preferred": "grid.434949.7" + } + ], + "id": "https://ror.org/012k1v959", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.hm.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Munich_University_of_Applied_Sciences" + } + ], + "names": [ + { + "value": "Munich University of Applied Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Hochschule München", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hochschule für angewandte Wissenschaften München", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hochschule München University of Applied Sciences", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "HM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/012s7h980.json b/rc-v1.43-v2/updates/012s7h980.json new file mode 100644 index 000000000..bc41a1167 --- /dev/null +++ b/rc-v1.43-v2/updates/012s7h980.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0551 8239" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1419453" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.13739.3f" + ], + "preferred": "grid.13739.3f" + } + ], + "id": "https://ror.org/012s7h980", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.acerinox.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Acerinox" + } + ], + "names": [ + { + "value": "Acerinox (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/012zh9h13.json b/rc-v1.43-v2/updates/012zh9h13.json new file mode 100644 index 000000000..a94834429 --- /dev/null +++ b/rc-v1.43-v2/updates/012zh9h13.json @@ -0,0 +1,115 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2009, + "external_ids": [ + { + "all": [ + "0000 0001 1943 6646" + ], + "preferred": "0000 0001 1943 6646", + "type": "isni" + }, + { + "all": [ + "Q9006472" + ], + "preferred": "Q9006472", + "type": "wikidata" + }, + { + "all": [ + "grid.8581.4" + ], + "preferred": "grid.8581.4", + "type": "grid" + } + ], + "id": "https://ror.org/012zh9h13", + "links": [ + { + "type": "website", + "value": "https://www.irta.cat" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.63333, + "lng": 2.16667, + "name": "Caldes de Montbui" + }, + "geonames_id": 3127035 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute for Research and Technology in Food and Agriculture" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Institute of Agrifood Research and Technology" + }, + { + "lang": "ca", + "types": [ + "label" + ], + "value": "Institut de Recerca i Tecnologia Agroalimentàries" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IRTA" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IRTA-CERCA" + } + ], + "relationships": [ + { + "label": "Government of Catalonia", + "type": "parent", + "id": "https://ror.org/01bg62x04" + }, + { + "label": "CERCA Institution", + "type": "parent", + "id": "https://ror.org/01bkbaq61" + }, + { + "label": "Center for Research in Agricultural Genomics", + "type": "child", + "id": "https://ror.org/04tz2h245" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/012zs8222.json b/rc-v1.43-v2/updates/012zs8222.json new file mode 100644 index 000000000..cbbaaa18a --- /dev/null +++ b/rc-v1.43-v2/updates/012zs8222.json @@ -0,0 +1,121 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1844, + "external_ids": [ + { + "all": [ + "100009790" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.265850.c" + ], + "preferred": "grid.265850.c", + "type": "grid" + }, + { + "all": [ + "0000 0001 2151 7947" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1780816" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/012zs8222", + "links": [ + { + "type": "website", + "value": "http://www.albany.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_at_Albany,_SUNY" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.65258, + "lng": -73.75623, + "name": "Albany" + }, + "geonames_id": 5106834 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "New York State Normal School" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University at Albany" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University at Albany, SUNY" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University at Albany, State University of New York" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État de new york à albany" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/013355g38.json b/rc-v1.43-v2/updates/013355g38.json new file mode 100644 index 000000000..158e65097 --- /dev/null +++ b/rc-v1.43-v2/updates/013355g38.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-06-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1988, + "external_ids": [ + { + "all": [ + "grid.469945.3" + ], + "preferred": "grid.469945.3", + "type": "grid" + }, + { + "all": [ + "0000 0000 8642 5392" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5211467" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/013355g38", + "links": [ + { + "type": "website", + "value": "http://www.idsia.ch/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Dalle_Molle_Institute_for_Artificial_Intelligence_Research" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.01008, + "lng": 8.96004, + "name": "Lugano" + }, + "geonames_id": 2659836 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Dalle Molle Institute for Artificial Intelligence Research" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IDSIA" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Istituto Dalle Molle di Studi sull'Intelligenza Artificiale" + } + ], + "relationships": [ + { + "label": "University of Applied Sciences and Arts of Southern Switzerland", + "type": "parent", + "id": "https://ror.org/05ep8g269" + }, + { + "label": "Università della Svizzera italiana", + "type": "parent", + "id": "https://ror.org/03c4atk17" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/013meh722.json b/rc-v1.43-v2/updates/013meh722.json new file mode 100644 index 000000000..fb5cc291f --- /dev/null +++ b/rc-v1.43-v2/updates/013meh722.json @@ -0,0 +1,270 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1209, + "external_ids": [ + { + "all": [ + "501100000735", + "501100000622", + "501100005705", + "501100000663", + "501100000653", + "501100000648", + "501100000644", + "501100000621", + "501100000609", + "501100000591", + "501100001625", + "501100000742", + "501100007552", + "501100000590", + "100010441", + "501100008420", + "501100004222", + "501100006299", + "501100000580", + "501100000585", + "501100000587", + "501100000602", + "501100000603", + "501100000705", + "501100000710", + "501100003987", + "501100004537", + "501100005796", + "501100004495", + "501100006646", + "501100000727" + ], + "preferred": "501100000735", + "type": "fundref" + }, + { + "all": [ + "grid.5335.0" + ], + "preferred": "grid.5335.0", + "type": "grid" + }, + { + "all": [ + "0000 0001 2188 5934" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q35794", + "Q181892", + "Q24679079", + "Q10899168" + ], + "preferred": "Q35794", + "type": "wikidata" + } + ], + "id": "https://ror.org/013meh722", + "links": [ + { + "type": "website", + "value": "http://www.cam.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Cambridge" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.2, + "lng": 0.11667, + "name": "Cambridge" + }, + "geonames_id": 2653941 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Cambridge University" + }, + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Prifysgol Caergrawnt" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Cambridge" + } + ], + "relationships": [ + { + "label": "Cambridge University Press", + "type": "child", + "id": "https://ror.org/03jsdjx34" + }, + { + "label": "Cambridge–MIT Institute", + "type": "child", + "id": "https://ror.org/00rj4dg52" + }, + { + "label": "Cancer Research UK Cambridge Center", + "type": "child", + "id": "https://ror.org/0068m0j38" + }, + { + "label": "Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics", + "type": "child", + "id": "https://ror.org/047d2d387" + }, + { + "label": "Hutchison/MRC Research Centre", + "type": "child", + "id": "https://ror.org/01ajt3179" + }, + { + "label": "MRC Biostatistics Unit", + "type": "child", + "id": "https://ror.org/046vje122" + }, + { + "label": "MRC Cognition and Brain Sciences Unit", + "type": "child", + "id": "https://ror.org/055bpw879" + }, + { + "label": "MRC Epidemiology Unit", + "type": "child", + "id": "https://ror.org/052578691" + }, + { + "label": "MRC Human Nutrition Research", + "type": "child", + "id": "https://ror.org/050pqs331" + }, + { + "label": "MRC Mitochondrial Biology Unit", + "type": "child", + "id": "https://ror.org/01vdt8f48" + }, + { + "label": "MRC Toxicology Unit", + "type": "child", + "id": "https://ror.org/05362x394" + }, + { + "label": "Sedgwick Museum of Earth Sciences", + "type": "child", + "id": "https://ror.org/02x42kc45" + }, + { + "label": "The Cambridge Centre for Advanced Research and Education in Singapore", + "type": "child", + "id": "https://ror.org/02f3vh107" + }, + { + "label": "Wellcome/Cancer Research UK Gurdon Institute", + "type": "child", + "id": "https://ror.org/00fp3ce15" + }, + { + "label": "Wellcome/MRC Cambridge Stem Cell Institute", + "type": "child", + "id": "https://ror.org/05nz0zp31" + }, + { + "label": "Wellcome/MRC Institute of Metabolic Science", + "type": "child", + "id": "https://ror.org/0264dxb48" + }, + { + "label": "MRC Metabolic Diseases Unit", + "type": "child", + "id": "https://ror.org/037a8w620" + }, + { + "label": "NIHR Cambridge Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/05m8dr349" + }, + { + "label": "Addenbrooke's Hospital", + "type": "related", + "id": "https://ror.org/055vbxf86" + }, + { + "label": "Fulbourn Hospital", + "type": "related", + "id": "https://ror.org/01ym47j46" + }, + { + "label": "Gates Cambridge Trust", + "type": "related", + "id": "https://ror.org/033sn5p83" + }, + { + "label": "Ipswich Hospital", + "type": "related", + "id": "https://ror.org/05m3qrs33" + }, + { + "label": "NIHR Cambridge Dementia Biomedical Research Unit", + "type": "related", + "id": "https://ror.org/02d2g0205" + }, + { + "label": "Papworth Hospital", + "type": "related", + "id": "https://ror.org/05mqgrb58" + }, + { + "label": "Queen Elizabeth Hospital", + "type": "related", + "id": "https://ror.org/03npxtg86" + }, + { + "label": "Rosie Hospital", + "type": "related", + "id": "https://ror.org/01ncx3917" + }, + { + "label": "UK Web Archive", + "type": "related", + "id": "https://ror.org/00gnxy738" + }, + { + "label": "Cancer Imaging Centre", + "type": "child", + "id": "https://ror.org/023a2er20" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/013tmk464.json b/rc-v1.43-v2/updates/013tmk464.json new file mode 100644 index 000000000..2a8ce978a --- /dev/null +++ b/rc-v1.43-v2/updates/013tmk464.json @@ -0,0 +1,75 @@ +{ + "admin": { + "created": { + "date": "2021-09-23", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.512555.3" + ], + "preferred": "grid.512555.3", + "type": "grid" + } + ], + "id": "https://ror.org/013tmk464", + "links": [ + { + "type": "website", + "value": "https://www.med.uni-wuerzburg.de/ccc/startseite/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.79391, + "lng": 9.95121, + "name": "Würzburg" + }, + "geonames_id": 2805615 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Comprehensive Cancer Center Mainfranken" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CCCMF" + } + ], + "relationships": [ + { + "label": "Universitätsklinikum Würzburg", + "type": "parent", + "id": "https://ror.org/03pvr2g57" + }, + { + "label": "University of Würzburg", + "type": "parent", + "id": "https://ror.org/00fbnyb24" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0145w8333.json b/rc-v1.43-v2/updates/0145w8333.json new file mode 100644 index 000000000..b6ccb1610 --- /dev/null +++ b/rc-v1.43-v2/updates/0145w8333.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 745044, + "geonames_details": { + "country_code": "TR", + "country_name": "Türkiye", + "lat": 41.01384, + "lng": 28.94966, + "name": "Istanbul" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0399 5023" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2756518" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.449305.f" + ], + "preferred": "grid.449305.f" + } + ], + "id": "https://ror.org/0145w8333", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.altinbas.edu.tr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Istanbul_Kemerburgaz_University" + } + ], + "names": [ + { + "value": "Altınbaş University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Istanbul Kemerburgaz University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Altınbaş Üniversitesi", + "types": [ + "label" + ], + "lang": "tr" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/014fbxn93.json b/rc-v1.43-v2/updates/014fbxn93.json new file mode 100644 index 000000000..a80bdc690 --- /dev/null +++ b/rc-v1.43-v2/updates/014fbxn93.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2738707, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 40.60188, + "lng": -8.67021, + "name": "Ílhavo" + } + } + ], + "established": 2022, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q124525831" + ], + "preferred": "Q124525831" + } + ], + "id": "https://ror.org/014fbxn93", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://pictis.pt" + } + ], + "names": [ + { + "value": "Plataforma Internacional para Ciência, Tecnologia e Inovação em Saúde", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "International Platform for Science, Technology, and Innovation in Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PICTIS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Fundação Oswaldo Cruz", + "type": "related", + "id": "https://ror.org/04jhswv08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/014p8mr66.json b/rc-v1.43-v2/updates/014p8mr66.json new file mode 100644 index 000000000..63202cd78 --- /dev/null +++ b/rc-v1.43-v2/updates/014p8mr66.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3029522, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69981, + "lng": 2.17064, + "name": "Bures-sur-Yvette" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0614 9404" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.482888.6" + ], + "preferred": "grid.482888.6" + } + ], + "id": "https://ror.org/014p8mr66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ias.u-psud.fr" + } + ], + "names": [ + { + "value": "Institut d'Astrophysique Spatiale", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IAS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/014zrew76.json b/rc-v1.43-v2/updates/014zrew76.json new file mode 100644 index 000000000..715c6155b --- /dev/null +++ b/rc-v1.43-v2/updates/014zrew76.json @@ -0,0 +1,231 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1960, + "external_ids": [ + { + "all": [ + "0000 0001 0217 6921" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100005696", + "501100005697" + ], + "preferred": "501100005696", + "type": "fundref" + }, + { + "all": [ + "Q13334" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.112485.b" + ], + "preferred": "grid.112485.b", + "type": "grid" + } + ], + "id": "https://ror.org/014zrew76", + "links": [ + { + "type": "website", + "value": "https://www.univ-orleans.fr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Orl%C3%A9ans" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 47.90289, + "lng": 1.90389, + "name": "Orléans" + }, + "geonames_id": 2989317 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Université d'Orléans" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "University of Orléans" + } + ], + "relationships": [ + { + "label": "Conditions Extrêmes et Matériaux Haute Température et Irradiation", + "type": "child", + "id": "https://ror.org/02zs48f23" + }, + { + "label": "Groupe de Recherches sur l'Energétique des Milieux Ionisés", + "type": "child", + "id": "https://ror.org/042ds2135" + }, + { + "label": "Institut de Recherche sur les ArchéoMATériaux", + "type": "child", + "id": "https://ror.org/01cw28e72" + }, + { + "label": "Institute of Organic and Analytical Chemistry", + "type": "child", + "id": "https://ror.org/03ywn7d79" + }, + { + "label": "Interfaces, Confinement, Matériaux et Nanostructures", + "type": "child", + "id": "https://ror.org/008h1f725" + }, + { + "label": "Complexité, Innovation et Activités Motrices et Sportives", + "type": "child", + "id": "https://ror.org/00k3ph542" + }, + { + "label": "Laboratoire Pluridisciplinaire de Recherche en Ingénierie des Systèmes, Mécanique et Energétique", + "type": "child", + "id": "https://ror.org/00sbth994" + }, + { + "label": "Laboratoire d’Économie d’Orléans", + "type": "child", + "id": "https://ror.org/03hp7bq97" + }, + { + "label": "Nançay Radio Observatory", + "type": "child", + "id": "https://ror.org/01vqrde47" + }, + { + "label": "Laboratoire de Physique et Chimie de l’Environnement et de l’Espace", + "type": "child", + "id": "https://ror.org/049k66y27" + }, + { + "label": "Laboratoire d'Informatique Fondamentale d'Orléans", + "type": "child", + "id": "https://ror.org/01nr3td38" + }, + { + "label": "Arbres et Réponses aux Contraintes Hydriques et Environnementales", + "type": "child", + "id": "https://ror.org/0213ypr97" + }, + { + "label": "Institut des Sciences de la Terre d'Orléans", + "type": "child", + "id": "https://ror.org/02t2hg116" + }, + { + "label": "Laboratoire Ligérien de Linguistique", + "type": "child", + "id": "https://ror.org/04s6f1186" + }, + { + "label": "Val de Loire Recherche en Management", + "type": "child", + "id": "https://ror.org/04wgee362" + }, + { + "label": "Maison des Sciences de l'Homme Val de Loire", + "type": "child", + "id": "https://ror.org/03v4gsj38" + }, + { + "label": "Laboratoire de Mécanique Gabriel Lamé", + "type": "child", + "id": "https://ror.org/04f9thq51" + }, + { + "label": "Institut Denis Poisson", + "type": "child", + "id": "https://ror.org/05djhd259" + }, + { + "label": "Centre d'Etudes sur le Développement des Territoires et Environnement", + "type": "child", + "id": "https://ror.org/0001d8q22" + }, + { + "label": "Pouvoirs, Lettres, Normes", + "type": "child", + "id": "https://ror.org/05gwtjq96" + }, + { + "label": "Immunologie et Neurogénétique Expérimentales et Moléculaires", + "type": "child", + "id": "https://ror.org/01mhd9b84" + }, + { + "label": "Centre de Biophysique Moléculaire", + "type": "child", + "id": "https://ror.org/02dpqcy73" + }, + { + "label": "Institut de Combustion Aérothermique Réactivité et Environnement", + "type": "child", + "id": "https://ror.org/03txr3336" + }, + { + "label": "Réceptions et médiations de littératures et de cultures étrangères et comparées", + "type": "child", + "id": "https://ror.org/007hfk904" + }, + { + "label": "Centre de recherche juridique Pothier", + "type": "child", + "id": "https://ror.org/03w8jwa36" + }, + { + "label": "Équipe de Recherche Contextes et Acteurs de l'Éducation", + "type": "child", + "id": "https://ror.org/0225kjd58" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Physiologie, Ecologie et Environnement", + "type": "child", + "id": "https://ror.org/00xe97z49" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01597g643.json b/rc-v1.43-v2/updates/01597g643.json new file mode 100644 index 000000000..f1d5aef8e --- /dev/null +++ b/rc-v1.43-v2/updates/01597g643.json @@ -0,0 +1,107 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1861, + "external_ids": [ + { + "all": [ + "100010967" + ], + "preferred": "100010967", + "type": "fundref" + }, + { + "all": [ + "grid.264273.6" + ], + "preferred": "grid.264273.6", + "type": "grid" + }, + { + "all": [ + "0000 0000 8999 307X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7603627" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01597g643", + "links": [ + { + "type": "website", + "value": "http://www.oswego.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/State_University_of_New_York_at_Oswego" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.45535, + "lng": -76.5105, + "name": "Oswego" + }, + "geonames_id": 5130081 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "SUNY Oswego" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "State University of New York at Oswego" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal de Nueva York en Oswego" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/015pzp858.json b/rc-v1.43-v2/updates/015pzp858.json new file mode 100644 index 000000000..2b4a9891c --- /dev/null +++ b/rc-v1.43-v2/updates/015pzp858.json @@ -0,0 +1,96 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1867, + "external_ids": [ + { + "all": [ + "100013873" + ], + "preferred": "100013873", + "type": "fundref" + }, + { + "all": [ + "grid.484190.0" + ], + "preferred": "grid.484190.0", + "type": "grid" + }, + { + "all": [ + "0000 0004 0404 4473" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/015pzp858", + "links": [ + { + "type": "website", + "value": "https://www.ontario.ca/page/government" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.70643, + "lng": -79.39864, + "name": "Toronto" + }, + "geonames_id": 6167865 + } + ], + "names": [ + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Gouvernement de l'Ontario" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Government of Ontario" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Her Majesty's Government of Ontario" + } + ], + "relationships": [ + { + "label": "Ontario Science Centre", + "type": "child", + "id": "https://ror.org/00wnpy880" + }, + { + "label": "Ministry of Education", + "type": "child", + "id": "https://ror.org/016gy9w96" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0168r3w48.json b/rc-v1.43-v2/updates/0168r3w48.json new file mode 100644 index 000000000..038585b9e --- /dev/null +++ b/rc-v1.43-v2/updates/0168r3w48.json @@ -0,0 +1,192 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1960, + "external_ids": [ + { + "all": [ + "100007911", + "100009507", + "100009508", + "100005918", + "100005548", + "100008673", + "100005594" + ], + "preferred": "100007911", + "type": "fundref" + }, + { + "all": [ + "grid.266100.3" + ], + "preferred": "grid.266100.3", + "type": "grid" + }, + { + "all": [ + "0000 0001 2107 4242" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q622664" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/0168r3w48", + "links": [ + { + "type": "website", + "value": "http://ucsd.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_California,_San_Diego" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.71571, + "lng": -117.16472, + "name": "San Diego" + }, + "geonames_id": 5391811 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "UC San Diego" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UCSD" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de California en San Diego" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of California, San Diego" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Californie à San Diego" + } + ], + "relationships": [ + { + "label": "California Sea Grant", + "type": "child", + "id": "https://ror.org/02yn1nr06" + }, + { + "label": "California Space Grant Consortium", + "type": "child", + "id": "https://ror.org/05ffhwq07" + }, + { + "label": "San Diego Supercomputer Center", + "type": "child", + "id": "https://ror.org/04mg3nk07" + }, + { + "label": "Scripps Institution of Oceanography", + "type": "child", + "id": "https://ror.org/04v7hvq31" + }, + { + "label": "UCSD-CNRS Joint Research Chemistry Laboratory", + "type": "child", + "id": "https://ror.org/00t7axd27" + }, + { + "label": "University of California System", + "type": "parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Rady Children's Hospital-San Diego", + "type": "related", + "id": "https://ror.org/00414dg76" + }, + { + "label": "Salk Institute for Biological Studies", + "type": "related", + "id": "https://ror.org/03xez1567" + }, + { + "label": "Scripps Mercy Hospital", + "type": "related", + "id": "https://ror.org/04k4h9k07" + }, + { + "label": "University of California San Diego Medical Center", + "type": "related", + "id": "https://ror.org/03aw5sn18" + }, + { + "label": "VA San Diego Healthcare System", + "type": "related", + "id": "https://ror.org/00znqwq11" + }, + { + "label": "Open Data Commons for Spinal Cord Injury", + "type": "related", + "id": "https://ror.org/027790w81" + }, + { + "label": "Moorea Coral Reef Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/017vyhs10" + }, + { + "label": "Materials Science in Extreme Environments University Research Alliance", + "type": "related", + "id": "https://ror.org/04n07f274" + }, + { + "label": "Center for Wireless Communications", + "type": "child", + "id": "https://ror.org/04b57z061" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/016gb1631.json b/rc-v1.43-v2/updates/016gb1631.json new file mode 100644 index 000000000..c5ec1ee18 --- /dev/null +++ b/rc-v1.43-v2/updates/016gb1631.json @@ -0,0 +1,144 @@ +{ + "locations": [ + { + "geonames_id": 715429, + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 46.253, + "lng": 20.14824, + "name": "Szeged" + } + } + ], + "established": 1971, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2195 9606", + "0000 0004 0620 9788" + ], + "preferred": "0000 0001 2195 9606" + }, + { + "type": "wikidata", + "all": [ + "Q4914963" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418331.c" + ], + "preferred": "grid.418331.c" + } + ], + "id": "https://ror.org/016gb1631", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.brc.hu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Biological_Research_Centre_(Hungarian_Academy_of_Sciences)" + } + ], + "names": [ + { + "value": "HUN-REN Szegedi Biológiai Kutatóközpont", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MTA Szegedi Biológiai Központ", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biological Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Szegedi Biológiai Kutatóközpont", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "HUN-REN Biological Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Magyar Tudományos Akadémia Szegedi Biológiai Kutatóközpontjának", + "types": [ + "label" + ], + "lang": "hu" + }, + { + "value": "BRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Hungarian Academy of Sciences", + "type": "parent", + "id": "https://ror.org/02ks8qq67" + }, + { + "label": "Institute of Biochemistry", + "type": "child", + "id": "https://ror.org/022dvs210" + }, + { + "label": "Institute of Biophysics", + "type": "child", + "id": "https://ror.org/038synb39" + }, + { + "label": "Institute of Genetics", + "type": "child", + "id": "https://ror.org/04tjemt46" + }, + { + "label": "Institute of Plant Biology", + "type": "child", + "id": "https://ror.org/039h1gd08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/016k9d838.json b/rc-v1.43-v2/updates/016k9d838.json new file mode 100644 index 000000000..34e733183 --- /dev/null +++ b/rc-v1.43-v2/updates/016k9d838.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3113157, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.16156, + "lng": -8.6198, + "name": "Porriño" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424847.9" + ], + "preferred": "grid.424847.9" + } + ], + "id": "https://ror.org/016k9d838", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ctag.com" + } + ], + "names": [ + { + "value": "Centro Tecnológico de Automoción de Galicia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Automotive Technology Centre of Galicia", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CTAG", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/016r2hq43.json b/rc-v1.43-v2/updates/016r2hq43.json new file mode 100644 index 000000000..cbd534931 --- /dev/null +++ b/rc-v1.43-v2/updates/016r2hq43.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2000, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0370 3203" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30261584" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462861.f" + ], + "preferred": "grid.462861.f" + } + ], + "id": "https://ror.org/016r2hq43", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.universite-paris-saclay.fr/institut-de-chimie-physique" + } + ], + "names": [ + { + "value": "Laboratoire de Chimie Physique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "LCP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/016xsfp80.json b/rc-v1.43-v2/updates/016xsfp80.json new file mode 100644 index 000000000..e4335cdbe --- /dev/null +++ b/rc-v1.43-v2/updates/016xsfp80.json @@ -0,0 +1,131 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1923, + "external_ids": [ + { + "all": [ + "0000 0001 2293 1605" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100001832", + "501100008459" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q632004", + "Q2525766" + ], + "preferred": "Q632004", + "type": "wikidata" + }, + { + "all": [ + "grid.5590.9" + ], + "preferred": "grid.5590.9", + "type": "grid" + } + ], + "id": "https://ror.org/016xsfp80", + "links": [ + { + "type": "website", + "value": "http://www.ru.nl/english/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Radboud_University_Nijmegen" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + }, + "geonames_id": 2750053 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Radboud University Nijmegen" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Katholieke Universiteit Nijmegen" + }, + { + "lang": "nl", + "types": [ + "label" + ], + "value": "Radboud Universiteit Nijmegen" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université Radboud de Nimègue" + } + ], + "relationships": [ + { + "label": "Catharina Ziekenhuis", + "type": "related", + "id": "https://ror.org/01qavk531" + }, + { + "label": "Máxima Medisch Centrum", + "type": "related", + "id": "https://ror.org/02x6rcb77" + }, + { + "label": "Radboud University Medical Center", + "type": "related", + "id": "https://ror.org/05wg1m734" + }, + { + "label": "FELIX Laboratory", + "type": "child", + "id": "https://ror.org/03tkwyq76" + }, + { + "label": "Radboud Institute for Molecular Life Sciences", + "type": "child", + "id": "https://ror.org/01yb10j39" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0175hh227.json b/rc-v1.43-v2/updates/0175hh227.json new file mode 100644 index 000000000..95a5f82ed --- /dev/null +++ b/rc-v1.43-v2/updates/0175hh227.json @@ -0,0 +1,162 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1794, + "external_ids": [ + { + "all": [ + "0000 0001 2185 090X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100013943" + ], + "preferred": "501100013943", + "type": "fundref" + }, + { + "all": [ + "Q524289" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.36823.3c" + ], + "preferred": "grid.36823.3c", + "type": "grid" + } + ], + "id": "https://ror.org/0175hh227", + "links": [ + { + "type": "website", + "value": "http://www.cnam.fr/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Conservatoire_national_des_arts_et_m%C3%A9tiers" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Conservatoire National des Arts et Métiers" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "National Conservatory of Arts and Crafts" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CNAM" + } + ], + "relationships": [ + { + "label": "HESAM Université", + "type": "parent", + "id": "https://ror.org/042949r55" + }, + { + "label": "Laboratoire Ingénierie des Fluides Systèmes Énergétiques", + "type": "child", + "id": "https://ror.org/00awn3k11" + }, + { + "label": "Laboratoire Interdisciplinaire pour la Sociologie Economique", + "type": "child", + "id": "https://ror.org/01b8mj511" + }, + { + "label": "Laboratoire de Dynamique des Fluides", + "type": "child", + "id": "https://ror.org/059jx7q58" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Nutritional Epidemiology Research Unit", + "type": "child", + "id": "https://ror.org/04hzkx672" + }, + { + "label": "Processes and Engineering in Mechanics and Materials", + "type": "child", + "id": "https://ror.org/017jp7t31" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "related", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "ENCPB - Lycée Pierre-Gilles-de-Gennes", + "type": "related", + "id": "https://ror.org/01180st77" + }, + { + "label": "Laboratoire d'électronique, systèmes de communication et microsystèmes", + "type": "child", + "id": "https://ror.org/01m83bk32" + }, + { + "label": "Métabiot", + "type": "child", + "id": "https://ror.org/00wyh7698" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "child", + "id": "https://ror.org/00hgbrg14" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/017d8gk22.json b/rc-v1.43-v2/updates/017d8gk22.json new file mode 100644 index 000000000..d962193e3 --- /dev/null +++ b/rc-v1.43-v2/updates/017d8gk22.json @@ -0,0 +1,114 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1867, + "external_ids": [ + { + "all": [ + "100010065" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.260238.d" + ], + "preferred": "grid.260238.d", + "type": "grid" + }, + { + "all": [ + "0000 0001 2224 4258" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1054905" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/017d8gk22", + "links": [ + { + "type": "website", + "value": "http://www.morgan.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Morgan_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + }, + "geonames_id": 4347778 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MSU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Morgan State University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal de Morgan" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État morgan" + } + ], + "relationships": [ + { + "label": "Materials Science in Extreme Environments University Research Alliance", + "type": "related", + "id": "https://ror.org/04n07f274" + }, + { + "label": "National Transportation Center", + "type": "child", + "id": "https://ror.org/02wjh7838" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/017wrhq72.json b/rc-v1.43-v2/updates/017wrhq72.json new file mode 100644 index 000000000..3ea764d94 --- /dev/null +++ b/rc-v1.43-v2/updates/017wrhq72.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2063523, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -31.95224, + "lng": 115.8614, + "name": "Perth" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q5260531" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.1310.3" + ], + "preferred": "grid.1310.3" + } + ], + "id": "https://ror.org/017wrhq72", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.water.wa.gov.au/" + } + ], + "names": [ + { + "value": "Department of Water", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Department of Water and Environmental Regulation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Department of Water and Environmental Regulation", + "type": "successor", + "id": "https://ror.org/0508kew31" + } + ], + "status": "inactive", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0187kwz08.json b/rc-v1.43-v2/updates/0187kwz08.json new file mode 100644 index 000000000..0b9c29350 --- /dev/null +++ b/rc-v1.43-v2/updates/0187kwz08.json @@ -0,0 +1,354 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2006, + "external_ids": [ + { + "all": [ + "501100000272", + "501100001921", + "501100000659", + "501100000664", + "501100002001", + "501100001881", + "501100001922", + "501100007602", + "501100009128", + "100018336" + ], + "preferred": "501100000272", + "type": "fundref" + }, + { + "all": [ + "grid.451056.3" + ], + "preferred": "grid.451056.3", + "type": "grid" + }, + { + "all": [ + "0000 0001 2116 3923" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q6973576" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/0187kwz08", + "links": [ + { + "type": "website", + "value": "http://www.nihr.ac.uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/National_Institute_for_Health_Research" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NIHR" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "National Institute for Health Research" + } + ], + "relationships": [ + { + "label": "NIHR Academy", + "type": "child", + "id": "https://ror.org/02nv4he32" + }, + { + "label": "NIHR Barts Cardiovascular Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/03m51nf34" + }, + { + "label": "NIHR Birmingham Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/05ccjmp23" + }, + { + "label": "NIHR Birmingham Liver Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/00k5pte35" + }, + { + "label": "NIHR Bristol Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/02mtt1z51" + }, + { + "label": "NIHR Bristol Cardiovascular Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/03gna4510" + }, + { + "label": "NIHR Bristol Nutrition Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/019rf7x86" + }, + { + "label": "NIHR CRUK Experimental Cancer Medicine Centre", + "type": "child", + "id": "https://ror.org/05bfg0961" + }, + { + "label": "NIHR Cambridge Dementia Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/02d2g0205" + }, + { + "label": "NIHR Central Commissioning Facility", + "type": "child", + "id": "https://ror.org/03c1etk80" + }, + { + "label": "NIHR Clinical Research Network", + "type": "child", + "id": "https://ror.org/05fj7ar22" + }, + { + "label": "NIHR Evaluation Trials and Studies Coordinating Centre", + "type": "child", + "id": "https://ror.org/03d7d0579" + }, + { + "label": "NIHR Exeter Clinical Research Facility", + "type": "child", + "id": "https://ror.org/02z37qb25" + }, + { + "label": "NIHR Imperial Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/01kmhx639" + }, + { + "label": "NIHR Leeds In Vitro Diagnostics Co-operative", + "type": "child", + "id": "https://ror.org/01ykn4490" + }, + { + "label": "NIHR Leeds Musculoskeletal Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/035f5f914" + }, + { + "label": "NIHR Leicester Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/05xqxa525" + }, + { + "label": "NIHR Leicester Cardiovascular Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/03ke6rf22" + }, + { + "label": "NIHR Leicester-Loughborough Diet, Lifestyle and Physical Activity Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/01fphh031" + }, + { + "label": "NIHR Liverpool Pancreatic Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/0298hp073" + }, + { + "label": "NIHR Manchester Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/05njkjr15" + }, + { + "label": "NIHR Maudsley Dementia Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/03yr99j48" + }, + { + "label": "NIHR MindTech MedTech Co-operative", + "type": "child", + "id": "https://ror.org/02erzes48" + }, + { + "label": "NIHR Moorfields Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/004hydx84" + }, + { + "label": "NIHR Newcastle Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/044m9mw93" + }, + { + "label": "NIHR Nottingham Digestive Diseases Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/02ppy9c89" + }, + { + "label": "NIHR Nottingham Hearing Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/03f5eqm42" + }, + { + "label": "NIHR Oxford Musculoskeletal Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/00aps1a34" + }, + { + "label": "NIHR Queen Square Dementia Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/04ksb3515" + }, + { + "label": "NIHR Royal Brompton Cardiovascular Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/01y4kmz24" + }, + { + "label": "NIHR Royal Brompton Respiratory Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/02j3q7j55" + }, + { + "label": "NIHR Southampton Respiratory Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/01yg3ff09" + }, + { + "label": "NIHR Surgical Reconstruction and Microbiology Research Centre", + "type": "child", + "id": "https://ror.org/042sjcz88" + }, + { + "label": "NIHR Trauma Management MedTech Co-operative", + "type": "child", + "id": "https://ror.org/04k9wp214" + }, + { + "label": "NIHR WoundTec Healthcare Technology Co-operative", + "type": "child", + "id": "https://ror.org/044xxhs61" + }, + { + "label": "UCL Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/03r9qc142" + }, + { + "label": "NIHR BioResource", + "type": "child", + "id": "https://ror.org/04dmgak75" + }, + { + "label": "NIHR Great Ormond Street Hospital Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/033rx1153" + }, + { + "label": "NIHR Cambridge Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/05m8dr349" + }, + { + "label": "NIHR School for Primary Care Research", + "type": "child", + "id": "https://ror.org/03wz10q85" + }, + { + "label": "NIHR School for Public Health Research", + "type": "child", + "id": "https://ror.org/05c9p6d02" + }, + { + "label": "NIHR Biomedical Research Centre at The Royal Marsden and the ICR", + "type": "child", + "id": "https://ror.org/014ktry78" + }, + { + "label": "NIHR Maudsley Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/05fd9ct06" + }, + { + "label": "NIHR School for Social Care Research", + "type": "child", + "id": "https://ror.org/03q7vwk42" + }, + { + "label": "NIHR Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber", + "type": "child", + "id": "https://ror.org/0300g2m85" + }, + { + "label": "NIHR Applied Research Collaboration Greater Manchester", + "type": "child", + "id": "https://ror.org/021954z67" + }, + { + "label": "NIHR Greater Manchester Patient Safety Translational Research Centre", + "type": "child", + "id": "https://ror.org/0436znn81" + }, + { + "label": "NIHR Applied Research Collaboration West", + "type": "child", + "id": "https://ror.org/03pzxq793" + }, + { + "label": "NIHR Collaboration for Leadership in Applied Health Research and Care South London", + "type": "child", + "id": "https://ror.org/02gqg2511" + }, + { + "label": "NIHR Applied Research Collaboration South West Peninsula", + "type": "child", + "id": "https://ror.org/01qgn1839" + }, + { + "label": "NIHR Collaboration for Leadership in Applied Health Research and Care North West Coast", + "type": "child", + "id": "https://ror.org/03tmzq288" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/018a8yy17.json b/rc-v1.43-v2/updates/018a8yy17.json new file mode 100644 index 000000000..d91742950 --- /dev/null +++ b/rc-v1.43-v2/updates/018a8yy17.json @@ -0,0 +1,116 @@ +{ + "locations": [ + { + "geonames_id": 1804540, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.52079, + "lng": 116.71471, + "name": "Langfang" + } + } + ], + "established": 1993, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9291 3447" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q23409786" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.510593.b" + ], + "preferred": "grid.510593.b" + } + ], + "id": "https://ror.org/018a8yy17", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.enn.cn/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ENN_Group#:~:text=ENN%20Group%20(Chinese%3A%20%E6%96%B0%E5%A5%A5,energy%20chemicals%20and%20real%20estate." + } + ], + "names": [ + { + "value": "ENN (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ENN Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ENN Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ENN Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "新奥集团", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "ENN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "ENN-Tongji Advanced Institute of Clean Energy", + "type": "child", + "id": "https://ror.org/05pzhab84" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/018wp0236.json b/rc-v1.43-v2/updates/018wp0236.json new file mode 100644 index 000000000..dc06eed32 --- /dev/null +++ b/rc-v1.43-v2/updates/018wp0236.json @@ -0,0 +1,105 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1931, + "external_ids": [ + { + "all": [ + "100010740" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.410859.1" + ], + "preferred": "grid.410859.1", + "type": "grid" + }, + { + "all": [ + "0000 0001 2225 398X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q720489" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/018wp0236", + "links": [ + { + "type": "website", + "value": "http://www.asahi-kasei.co.jp/asahi/en/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Asahi_Kasei" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "JP", + "country_name": "Japan", + "lat": 35.6895, + "lng": 139.69171, + "name": "Tokyo" + }, + "geonames_id": 1850147 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Asahi Kasei (Japan)" + }, + { + "lang": "ja", + "types": [ + "label" + ], + "value": "旭化成" + } + ], + "relationships": [ + { + "label": "Asahi Kasei (Germany)", + "type": "child", + "id": "https://ror.org/040cmp171" + }, + { + "label": "Asahi Kasei (United States)", + "type": "child", + "id": "https://ror.org/00hqnb941" + }, + { + "label": "ZOLL Medical Corporation (United States)", + "type": "child", + "id": "https://ror.org/036wkjd70" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01922h422.json b/rc-v1.43-v2/updates/01922h422.json new file mode 100644 index 000000000..b9b764bc2 --- /dev/null +++ b/rc-v1.43-v2/updates/01922h422.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 6325521, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.80326, + "lng": -71.17793, + "name": "Lévis" + } + } + ], + "established": 1967, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8723 7684" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3010001" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.292559.0" + ], + "preferred": "grid.292559.0" + } + ], + "id": "https://ror.org/01922h422", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cegeplevis.ca" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/C%C3%A9gep_de_L%C3%A9vis-Lauzon" + } + ], + "names": [ + { + "value": "Cégep de Lévis", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Cégep Lévis", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Cegep Levis Lauzon", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Collège d'enseignement général et professionnel Levis Lauzon", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0198v2949.json b/rc-v1.43-v2/updates/0198v2949.json new file mode 100644 index 000000000..9ac07f065 --- /dev/null +++ b/rc-v1.43-v2/updates/0198v2949.json @@ -0,0 +1,121 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1950, + "external_ids": [ + { + "all": [ + "501100006702" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.412211.5" + ], + "preferred": "grid.412211.5", + "type": "grid" + }, + { + "all": [ + "0000 0004 4687 5267" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2840233" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/0198v2949", + "links": [ + { + "type": "website", + "value": "http://www.uerj.br/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Rio_de_Janeiro_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -22.90642, + "lng": -43.18223, + "name": "Rio de Janeiro" + }, + "geonames_id": 3451190 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Rio de Janeiro State University" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UERJ" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad del Estado del Río de Janeiro" + }, + { + "lang": "pt", + "types": [ + "label" + ], + "value": "Universidade do Estado do Rio de Janeiro" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de l'État de rio de janeiro" + } + ], + "relationships": [ + { + "label": "Hospital Universitário Pedro Ernesto", + "type": "related", + "id": "https://ror.org/00hrmgq26" + }, + { + "label": "Instituto Politécnico do Rio de Janeiro", + "type": "child", + "id": "https://ror.org/01g0jwx42" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0199hds37.json b/rc-v1.43-v2/updates/0199hds37.json new file mode 100644 index 000000000..4a799e6c4 --- /dev/null +++ b/rc-v1.43-v2/updates/0199hds37.json @@ -0,0 +1,223 @@ +{ + "locations": [ + { + "geonames_id": 2968275, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.95833, + "lng": 2.34167, + "name": "Villetaneuse" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2149 6883" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100009506" + ], + "preferred": "501100009506" + }, + { + "type": "wikidata", + "all": [ + "Q1780212" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.11318.3a" + ], + "preferred": "grid.11318.3a" + } + ], + "id": "https://ror.org/0199hds37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.univ-spn.fr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Paris_13_University" + } + ], + "names": [ + { + "value": "Université Sorbonne Paris Nord", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Paris North", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Paris 13 University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Sorbonne Paris North", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université Paris 13", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "USPN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Adaptateurs de Signalisation en Hématologie", + "type": "child", + "id": "https://ror.org/03837fc46" + }, + { + "label": "Laboratoire d'Informatique de Paris-Nord", + "type": "child", + "id": "https://ror.org/05g1zjw44" + }, + { + "label": "Institut de Biomécanique Humaine Georges Charpak", + "type": "child", + "id": "https://ror.org/053gdvc84" + }, + { + "label": "Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux", + "type": "child", + "id": "https://ror.org/03xg8m734" + }, + { + "label": "Laboratoire Analyse, Géométrie et Applications", + "type": "child", + "id": "https://ror.org/018nzqy79" + }, + { + "label": "Laboratoire d’Ethologie Expérimentale et Comparée", + "type": "child", + "id": "https://ror.org/0414fab98" + }, + { + "label": "Laboratory for Vascular Translational Science", + "type": "child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laser Physics Laboratory", + "type": "child", + "id": "https://ror.org/03n3yg876" + }, + { + "label": "Nutritional Epidemiology Research Unit", + "type": "child", + "id": "https://ror.org/04hzkx672" + }, + { + "label": "Campus Condorcet", + "type": "related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Hypoxie et Poumon", + "type": "child", + "id": "https://ror.org/02mtpz628" + }, + { + "label": "Laboratoire Interuniversitaire Expérience, Ressources culturelles, Education", + "type": "child", + "id": "https://ror.org/0127n6542" + }, + { + "label": "Physiopathologie, cibles et thérapies de la polyarthrite rhumatoïde", + "type": "child", + "id": "https://ror.org/05vqkgf08" + }, + { + "label": "Unité transversale de recherche en psychogénèse et psychopathologie", + "type": "child", + "id": "https://ror.org/04dqaqw31" + }, + { + "label": "Maison des Sciences de l'Homme Paris Nord", + "type": "child", + "id": "https://ror.org/05079x435" + }, + { + "label": "Unité de Recherche en Biomatériaux Innovant et Interfaces", + "type": "child", + "id": "https://ror.org/01cht3g41" + }, + { + "label": "CEPN - Centre d'Economie de l'Université Paris Nord", + "type": "child", + "id": "https://ror.org/03k32n603" + }, + { + "label": "Chimie, Structures et Propriétés de Biomatériaux et d'Agents Thérapeutiques", + "type": "child", + "id": "https://ror.org/0343fpq57" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénieurie des Connaissances en e-Santé", + "type": "child", + "id": "https://ror.org/01jr1v359" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/019rf7x86.json b/rc-v1.43-v2/updates/019rf7x86.json new file mode 100644 index 000000000..0b462dffe --- /dev/null +++ b/rc-v1.43-v2/updates/019rf7x86.json @@ -0,0 +1,68 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [ + { + "all": [ + "grid.454368.8" + ], + "preferred": "grid.454368.8", + "type": "grid" + } + ], + "id": "https://ror.org/019rf7x86", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/research-innovation/our-research/bristol-nutrition-bru/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "NIHR Bristol Nutrition Biomedical Research Unit" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + }, + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/019tcpt25.json b/rc-v1.43-v2/updates/019tcpt25.json new file mode 100644 index 000000000..68e870d97 --- /dev/null +++ b/rc-v1.43-v2/updates/019tcpt25.json @@ -0,0 +1,163 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2015, + "external_ids": [ + { + "all": [ + "grid.494567.d" + ], + "preferred": "grid.494567.d", + "type": "grid" + }, + { + "all": [ + "0000 0004 4907 1766" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q19203245" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/019tcpt25", + "links": [ + { + "type": "website", + "value": "https://www.centralesupelec.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/CentraleSup%C3%A9lec" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + }, + "geonames_id": 3016078 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CS" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "CentraleSupélec" + } + ], + "relationships": [ + { + "label": "Laboratoire d'Énergétique Moléculaire et Macroscopique, Combustion", + "type": "child", + "id": "https://ror.org/02wy3s959" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratory of Quantum and Molecular Photonics", + "type": "child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire Matériaux Optiques, Photonique et Systèmes", + "type": "child", + "id": "https://ror.org/055swm364" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Mathématiques et Informatique pour la Complexité et les Systèmes", + "type": "child", + "id": "https://ror.org/03q29s414" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Supélec", + "type": "predecessor", + "id": "https://ror.org/00n7gwn90" + }, + { + "label": "École Centrale Paris", + "type": "predecessor", + "id": "https://ror.org/00v0y5771" + }, + { + "label": "Mahindra University", + "type": "related", + "id": "https://ror.org/05751b994" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "child", + "id": "https://ror.org/02xnnng09" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01a2wsa50.json b/rc-v1.43-v2/updates/01a2wsa50.json new file mode 100644 index 000000000..0b82c5ddb --- /dev/null +++ b/rc-v1.43-v2/updates/01a2wsa50.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 3110044, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.31283, + "lng": -1.97499, + "name": "Donostia / San Sebastian" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432380.e" + ], + "preferred": "grid.432380.e" + }, + { + "type": "wikidata", + "all": [ + "Q12255260" + ], + "preferred": "Q12255260" + }, + { + "type": "isni", + "all": [ + "0000 0004 6416 6288" + ], + "preferred": "0000 0004 6416 6288" + } + ], + "id": "https://ror.org/01a2wsa50", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.biodonostia.org" + } + ], + "names": [ + { + "value": "Biogipuzkoa Health Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Biogipuzkoa HRI", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biodonostia Health Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biodonostia", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01an7q238.json b/rc-v1.43-v2/updates/01an7q238.json new file mode 100644 index 000000000..a5f76640c --- /dev/null +++ b/rc-v1.43-v2/updates/01an7q238.json @@ -0,0 +1,214 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1868, + "external_ids": [ + { + "all": [ + "100006978", + "100010501", + "100009773", + "100009999", + "100009998", + "100007502", + "100009220", + "100008934", + "100009521", + "100009151", + "100011283", + "100010556", + "100007247", + "100011068", + "100010948" + ], + "preferred": "100006978", + "type": "fundref" + }, + { + "all": [ + "grid.47840.3f" + ], + "preferred": "grid.47840.3f", + "type": "grid" + }, + { + "all": [ + "0000 0001 2181 7878" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q168756" + ], + "preferred": "Q168756", + "type": "wikidata" + } + ], + "id": "https://ror.org/01an7q238", + "links": [ + { + "type": "website", + "value": "https://www.berkeley.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_California,_Berkeley" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.87159, + "lng": -122.27275, + "name": "Berkeley" + }, + "geonames_id": 5327684 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Cal Berkeley" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "UC Berkeley" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UCB" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de California en Berkeley" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of California at Berkeley" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of California, Berkeley" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Californie à Berkeley" + } + ], + "relationships": [ + { + "label": "Center for Effective Global Action", + "type": "child", + "id": "https://ror.org/03djjyk45" + }, + { + "label": "Gump South Pacific Research Station", + "type": "child", + "id": "https://ror.org/04sk0et52" + }, + { + "label": "Innovative Genomics Institute", + "type": "child", + "id": "https://ror.org/01r4tcq81" + }, + { + "label": "Plant Gene Expression Center", + "type": "child", + "id": "https://ror.org/03rafms67" + }, + { + "label": "Tsinghua–Berkeley Shenzhen Institute", + "type": "child", + "id": "https://ror.org/02hhwwz98" + }, + { + "label": "CZ Biohub", + "type": "child", + "id": "https://ror.org/00knt4f32" + }, + { + "label": "QB3", + "type": "child", + "id": "https://ror.org/04n1n3n22" + }, + { + "label": "University of California System", + "type": "parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Dominican School of Philosophy and Theology", + "type": "related", + "id": "https://ror.org/015yfqq31" + }, + { + "label": "Graduate Theological Union", + "type": "related", + "id": "https://ror.org/00xs48965" + }, + { + "label": "Kaiser Permanente Oakland Medical Center", + "type": "related", + "id": "https://ror.org/05rfek682" + }, + { + "label": "San Francisco Theological Seminary", + "type": "related", + "id": "https://ror.org/02wyv8x71" + }, + { + "label": "Hubbard Brook Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/00mkh7345" + }, + { + "label": "International Computer Science Institute", + "type": "related", + "id": "https://ror.org/01ewh7m12" + }, + { + "label": "Pacific Earthquake Engineering Research Center", + "type": "child", + "id": "https://ror.org/02cq2e244" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01b5rtm37.json b/rc-v1.43-v2/updates/01b5rtm37.json new file mode 100644 index 000000000..31d49cf53 --- /dev/null +++ b/rc-v1.43-v2/updates/01b5rtm37.json @@ -0,0 +1,94 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.493838.d" + ], + "preferred": "grid.493838.d" + } + ], + "id": "https://ror.org/01b5rtm37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://institut-curie.org/unit/umr3348" + } + ], + "names": [ + { + "value": "Genome Integrity, RNA and Cancer", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Genotoxic Stress and Cancer", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Stress génotoxique et cancer", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Intégrité du génome, ARN et cancer", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [ + { + "label": "Institute Curie", + "type": "parent", + "id": "https://ror.org/04t0gwh46" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01bg62x04.json b/rc-v1.43-v2/updates/01bg62x04.json new file mode 100644 index 000000000..d095e67e2 --- /dev/null +++ b/rc-v1.43-v2/updates/01bg62x04.json @@ -0,0 +1,176 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2331 7762" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100002809", + "501100002943" + ], + "preferred": "501100002809" + }, + { + "type": "wikidata", + "all": [ + "Q8022", + "Q3112544" + ], + "preferred": "Q8022" + }, + { + "type": "grid", + "all": [ + "grid.454735.4" + ], + "preferred": "grid.454735.4" + } + ], + "id": "https://ror.org/01bg62x04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://catalangovernment.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Generalitat_de_Catalunya" + } + ], + "names": [ + { + "value": "Government of Catalonia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Generalidad de Cataluña", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Generalitat de Catalunya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Kataluniako Generalitatea", + "types": [ + "label" + ], + "lang": "eu" + } + ], + "relationships": [ + { + "label": "Agencia per a la Competitivit de l'Empresa", + "type": "child", + "id": "https://ror.org/01xhc9d78" + }, + { + "label": "Agència de Gestió d'Ajuts Universitaris i de Recerca", + "type": "child", + "id": "https://ror.org/01n4pqe45" + }, + { + "label": "Departament d'Educació", + "type": "child", + "id": "https://ror.org/02dkz1149" + }, + { + "label": "Departament de Cultura", + "type": "child", + "id": "https://ror.org/014ns9811" + }, + { + "label": "Departament de Salut", + "type": "child", + "id": "https://ror.org/00nyrjc53" + }, + { + "label": "Institut Català de la Salut", + "type": "child", + "id": "https://ror.org/04wkdwp52" + }, + { + "label": "Institut Català de les Dones", + "type": "child", + "id": "https://ror.org/03g0h0k24" + }, + { + "label": "Institut de Seguretat Pública de Catalunya", + "type": "child", + "id": "https://ror.org/01k6ah132" + }, + { + "label": "Institute for Research and Technology in Food and Agriculture", + "type": "child", + "id": "https://ror.org/012zh9h13" + }, + { + "label": "Departament d'Economia i Hisenda de la Generalitat de Catalunya", + "type": "child", + "id": "https://ror.org/0564q6y15" + }, + { + "label": "National Institute of Physical Education of Catalonia", + "type": "child", + "id": "https://ror.org/04xrm3t06" + }, + { + "label": "Institut de Política Econòmica i Governança", + "type": "child", + "id": "https://ror.org/03wbt1f24" + }, + { + "label": "Departament de Recerca i Universitats", + "type": "child", + "id": "https://ror.org/01gbnem66" + }, + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "related", + "id": "https://ror.org/03abrgd14" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01bj3aw27.json b/rc-v1.43-v2/updates/01bj3aw27.json new file mode 100644 index 000000000..01f7cf30c --- /dev/null +++ b/rc-v1.43-v2/updates/01bj3aw27.json @@ -0,0 +1,343 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1977, + "external_ids": [ + { + "all": [ + "0000 0001 2342 3717" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100000015", + "100006157" + ], + "preferred": "100000015", + "type": "fundref" + }, + { + "all": [ + "Q217810", + "Q6422983" + ], + "preferred": "Q217810", + "type": "wikidata" + }, + { + "all": [ + "grid.85084.31" + ], + "preferred": "grid.85084.31", + "type": "grid" + } + ], + "id": "https://ror.org/01bj3aw27", + "links": [ + { + "type": "website", + "value": "https://www.energy.gov" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/United_States_Department_of_Energy" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + }, + "geonames_id": 4140963 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "United States Department of Energy" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Department of Energy" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Departamento de Energía de los Estados Unidos" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Département de l'Énergie des États-unis" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DOE" + } + ], + "relationships": [ + { + "label": "Government of the United States of America", + "type": "parent", + "id": "https://ror.org/02rcrvv70" + }, + { + "label": "Advanced Research Projects Agency-Energy", + "type": "child", + "id": "https://ror.org/03q1rgc19" + }, + { + "label": "Consortium for the Advanced Simulation of Light Water Reactors", + "type": "child", + "id": "https://ror.org/00qq8bd87" + }, + { + "label": "Great Lakes Bioenergy Research Center", + "type": "child", + "id": "https://ror.org/01ca2by25" + }, + { + "label": "International Partnership for the Hydrogen and Fuel Cell in the Economy", + "type": "child", + "id": "https://ror.org/04d8cf622" + }, + { + "label": "Joint BioEnergy Institute", + "type": "child", + "id": "https://ror.org/03ww55028" + }, + { + "label": "National Nuclear Security Administration", + "type": "child", + "id": "https://ror.org/03sk1we31" + }, + { + "label": "Nevada National Security Site", + "type": "child", + "id": "https://ror.org/037k8mg80" + }, + { + "label": "Office of Economic Impact and Diversity", + "type": "child", + "id": "https://ror.org/05hsv7e61" + }, + { + "label": "Office of Energy Efficiency and Renewable Energy", + "type": "child", + "id": "https://ror.org/02xznz413" + }, + { + "label": "Office of Environmental Management", + "type": "child", + "id": "https://ror.org/00km40770" + }, + { + "label": "Office of Environmental Protection, Sustainability Support and Corporate Safety Analysis", + "type": "child", + "id": "https://ror.org/01c9ay627" + }, + { + "label": "Office of Fossil Energy", + "type": "child", + "id": "https://ror.org/03ery9d53" + }, + { + "label": "Office of Inspector General", + "type": "child", + "id": "https://ror.org/04nnxen11" + }, + { + "label": "Office of Intelligence and Counterintelligence", + "type": "child", + "id": "https://ror.org/02z1qvq09" + }, + { + "label": "Office of International Affairs", + "type": "child", + "id": "https://ror.org/05ek3m339" + }, + { + "label": "Office of Legacy Management", + "type": "child", + "id": "https://ror.org/03jf3w726" + }, + { + "label": "Office of Management", + "type": "child", + "id": "https://ror.org/02ah1da87" + }, + { + "label": "Office of Nuclear Energy", + "type": "child", + "id": "https://ror.org/05tj7dm33" + }, + { + "label": "Office of Science", + "type": "child", + "id": "https://ror.org/00mmn6b08" + }, + { + "label": "Office of Space and Defense Power Systems", + "type": "child", + "id": "https://ror.org/04s778r16" + }, + { + "label": "Office of Under Secretary of Energy for Science", + "type": "child", + "id": "https://ror.org/03eecgp81" + }, + { + "label": "Office of the General Counsel", + "type": "child", + "id": "https://ror.org/0054t4769" + }, + { + "label": "Savannah River Operations Office", + "type": "child", + "id": "https://ror.org/05hhm9a98" + }, + { + "label": "United States Energy Information Administration", + "type": "child", + "id": "https://ror.org/01h04ms65" + }, + { + "label": "Vera C. Rubin Observatory", + "type": "child", + "id": "https://ror.org/048g3cy84" + }, + { + "label": "Kansas City National Security Campus", + "type": "child", + "id": "https://ror.org/03e7mhc87" + }, + { + "label": "Environmental System Science Data Infrastructure for a Virtual Ecosystem", + "type": "child", + "id": "https://ror.org/01t14bp54" + }, + { + "label": "Office of the Chief Information Officer", + "type": "child", + "id": "https://ror.org/00hvbwp12" + }, + { + "label": "Office of Under Secretary for Science and Innovation", + "type": "child", + "id": "https://ror.org/00htph268" + }, + { + "label": "Office of Technology Transitions", + "type": "child", + "id": "https://ror.org/02vg64e60" + }, + { + "label": "Office of Secretary of Energy", + "type": "child", + "id": "https://ror.org/028rfb880" + }, + { + "label": "Office of Public Affairs", + "type": "child", + "id": "https://ror.org/00mw1dx44" + }, + { + "label": "Office of Policy", + "type": "child", + "id": "https://ror.org/05p9bjd64" + }, + { + "label": "Office of Indian Energy Policy and Programs", + "type": "child", + "id": "https://ror.org/02bhbx726" + }, + { + "label": "Office of Fossil Energy and Carbon Management", + "type": "child", + "id": "https://ror.org/037897814" + }, + { + "label": "Office of Environment, Health, Safety and Security", + "type": "child", + "id": "https://ror.org/04csf5r20" + }, + { + "label": "Office of Enterprise Assessments", + "type": "child", + "id": "https://ror.org/035fxjt55" + }, + { + "label": "Office of State and Community Energy Programs", + "type": "child", + "id": "https://ror.org/035sc8895" + }, + { + "label": "Office of Federal Energy Management Programs", + "type": "child", + "id": "https://ror.org/01zprx076" + }, + { + "label": "Grid Deployment Office", + "type": "child", + "id": "https://ror.org/00n4kg172" + }, + { + "label": "Office of Electricity", + "type": "child", + "id": "https://ror.org/02y6dp041" + }, + { + "label": "Office of Cybersecurity, Energy Security, and Emergency Response", + "type": "child", + "id": "https://ror.org/041g4v832" + }, + { + "label": "Office of Congressional and Intergovernmental Affairs", + "type": "child", + "id": "https://ror.org/05cpnza27" + }, + { + "label": "Oak Ridge Institute for Science and Education", + "type": "child", + "id": "https://ror.org/040vxhp34" + }, + { + "label": "Artificial Intelligence & Technology Office", + "type": "child", + "id": "https://ror.org/00536t873" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01bkbaq61.json b/rc-v1.43-v2/updates/01bkbaq61.json new file mode 100644 index 000000000..4b9640801 --- /dev/null +++ b/rc-v1.43-v2/updates/01bkbaq61.json @@ -0,0 +1,329 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100015439" + ], + "preferred": "100015439" + }, + { + "type": "wikidata", + "all": [ + "Q30100395" + ], + "preferred": "Q30100395" + } + ], + "id": "https://ror.org/01bkbaq61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cerca.cat" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/CERCA_Institute" + } + ], + "names": [ + { + "value": "CERCA Institution", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institución CERCA", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institució CERCA - Centres de Recerca de Catalunya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Fundació Institució dels Centres de Recerca de Catalunya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "CERCA", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "I-CERCA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "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": "Hospital del Mar Research Institute", + "type": "child", + "id": "https://ror.org/042nkmz09" + }, + { + "label": "Institut Català de Paleoecologia Humana i Evolució Social", + "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": "Institut de Recerca Sant Pau", + "type": "child", + "id": "https://ror.org/005teat46" + }, + { + "label": "Vall d'Hebron Institute of Oncology", + "type": "child", + "id": "https://ror.org/054xx3904" + }, + { + "label": "Institut de Recerca Sant Joan de Déu", + "type": "child", + "id": "https://ror.org/00gy2ar74" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01bpa4157.json b/rc-v1.43-v2/updates/01bpa4157.json new file mode 100644 index 000000000..74260fc42 --- /dev/null +++ b/rc-v1.43-v2/updates/01bpa4157.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1763 0121" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.424730.6" + ], + "preferred": "grid.424730.6" + } + ], + "id": "https://ror.org/01bpa4157", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ic3.cat/" + } + ], + "names": [ + { + "value": "Institut Català de Ciències del Clima", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Catalan Institute of Climate Sciences", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "IC3", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01bvxzn29.json b/rc-v1.43-v2/updates/01bvxzn29.json new file mode 100644 index 000000000..d4a426908 --- /dev/null +++ b/rc-v1.43-v2/updates/01bvxzn29.json @@ -0,0 +1,109 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1964, + "external_ids": [ + { + "all": [ + "100009941" + ], + "preferred": "100009941", + "type": "fundref" + }, + { + "all": [ + "grid.48862.30" + ], + "preferred": "grid.48862.30", + "type": "grid" + }, + { + "all": [ + "Q1143261", + "Q5471272" + ], + "preferred": "Q1143261", + "type": "wikidata" + } + ], + "id": "https://ror.org/01bvxzn29", + "links": [ + { + "type": "website", + "value": "https://www.gov.uk/government/organisations/ministry-of-defence" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Ministry_of_Defence_(United_Kingdom)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Ministry of Defence" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MoD" + } + ], + "relationships": [ + { + "label": "Defence Academy of the United Kingdom", + "type": "child", + "id": "https://ror.org/03myaza48" + }, + { + "label": "Defence Equipment and Support", + "type": "child", + "id": "https://ror.org/00jztws02" + }, + { + "label": "Defence Science and Technology Laboratory", + "type": "child", + "id": "https://ror.org/04jswqb94" + }, + { + "label": "Government of the United Kingdom", + "type": "parent", + "id": "https://ror.org/05wnh3t63" + }, + { + "label": "Defence and Security Accelerator", + "type": "child", + "id": "https://ror.org/05wnp0977" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01c27hj86.json b/rc-v1.43-v2/updates/01c27hj86.json new file mode 100644 index 000000000..42bb7f838 --- /dev/null +++ b/rc-v1.43-v2/updates/01c27hj86.json @@ -0,0 +1,149 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1911, + "external_ids": [ + { + "all": [ + "501100005765", + "501100007225", + "501100006097", + "501100006201" + ], + "preferred": "501100005765", + "type": "fundref" + }, + { + "all": [ + "grid.9983.b" + ], + "preferred": "grid.9983.b", + "type": "grid" + }, + { + "all": [ + "0000 0001 2181 4263" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1122926", + "Q1636837" + ], + "preferred": "Q1122926", + "type": "wikidata" + } + ], + "id": "https://ror.org/01c27hj86", + "links": [ + { + "type": "website", + "value": "http://www.ulisboa.pt/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Lisbon" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + }, + "geonames_id": 2267057 + } + ], + "names": [ + { + "lang": "pt", + "types": [ + "label" + ], + "value": "Universidade de Lisboa" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Lisbon" + } + ], + "relationships": [ + { + "label": "Centro Interuniversitário de História das Ciências e da Tecnologia", + "type": "child", + "id": "https://ror.org/03yhnhz23" + }, + { + "label": "MARE - Centro de Ciências do Mar e do Ambiente", + "type": "child", + "id": "https://ror.org/03cvzf910" + }, + { + "label": "Instituto Dom Luiz", + "type": "child", + "id": "https://ror.org/046ggxs83" + }, + { + "label": "Instituto de Tecnologias Interativas", + "type": "child", + "id": "https://ror.org/011ewyt41" + }, + { + "label": "Instituto Superior Técnico", + "type": "child", + "id": "https://ror.org/03db2by73" + }, + { + "label": "Hospital Garcia de Orta", + "type": "related", + "id": "https://ror.org/04jq4p608" + }, + { + "label": "Hospital Pulido Valente", + "type": "related", + "id": "https://ror.org/02cg59151" + }, + { + "label": "Hospital de Dona Estefânia", + "type": "related", + "id": "https://ror.org/01jhsfg10" + }, + { + "label": "Hospital de Santa Maria", + "type": "related", + "id": "https://ror.org/05bz1tw26" + }, + { + "label": "Instituto de Ciências Sociais", + "type": "child", + "id": "https://ror.org/020rfvw83" + }, + { + "label": "Instituto de Medicina Molecular João Lobo Antunes", + "type": "child", + "id": "https://ror.org/019g8w217" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01c3rrh15.json b/rc-v1.43-v2/updates/01c3rrh15.json new file mode 100644 index 000000000..9cd08eac0 --- /dev/null +++ b/rc-v1.43-v2/updates/01c3rrh15.json @@ -0,0 +1,113 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "100014806" + ], + "preferred": "100014806", + "type": "fundref" + }, + { + "all": [ + "grid.5942.a" + ], + "preferred": "grid.5942.a", + "type": "grid" + }, + { + "all": [ + "0000 0004 1759 508X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q3717376", + "Q47517188" + ], + "preferred": "Q3717376", + "type": "wikidata" + } + ], + "id": "https://ror.org/01c3rrh15", + "links": [ + { + "type": "website", + "value": "https://www.elettra.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ELETTRA" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.64953, + "lng": 13.77678, + "name": "Trieste" + }, + "geonames_id": 3165185 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Elettra" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Elettra Sincrotrone Trieste" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Elettra-Sincrotrone Trieste S.C.p.A." + } + ], + "relationships": [ + { + "label": "Consorzio per l'AREA di Ricerca Scientifica e Tecnologica di Trieste", + "type": "parent", + "id": "https://ror.org/01dt7qh15" + }, + { + "label": "Euro-BioImaging ERIC", + "type": "related", + "id": "https://ror.org/05d78xc36" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01cdrde68.json b/rc-v1.43-v2/updates/01cdrde68.json new file mode 100644 index 000000000..d089b4d27 --- /dev/null +++ b/rc-v1.43-v2/updates/01cdrde68.json @@ -0,0 +1,179 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1973, + "external_ids": [ + { + "all": [ + "0000 0001 1931 1704" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100012119" + ], + "preferred": "100012119", + "type": "fundref" + }, + { + "all": [ + "Q492442" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.410557.2" + ], + "preferred": "grid.410557.2", + "type": "grid" + } + ], + "id": "https://ror.org/01cdrde68", + "links": [ + { + "type": "website", + "value": "http://unu.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/United_Nations_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "JP", + "country_name": "Japan", + "lat": 35.6895, + "lng": 139.69171, + "name": "Tokyo" + }, + "geonames_id": 1850147 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "United Nations University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Kokusairengōdaigaku" + }, + { + "lang": "ja", + "types": [ + "label" + ], + "value": "国際連合大学" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNU" + } + ], + "relationships": [ + { + "label": "United Nations", + "type": "related", + "id": "https://ror.org/006kxhp52" + }, + { + "label": "Global Environmental Outreach Centre", + "type": "child", + "id": "https://ror.org/00d8hgw93" + }, + { + "label": "Institute for Environment and Human Security", + "type": "child", + "id": "https://ror.org/05egrn753" + }, + { + "label": "Institute for Integrated Management of Material Fluxes and of Resources", + "type": "child", + "id": "https://ror.org/03xp99m49" + }, + { + "label": "Institute for Natural Resources in Africa", + "type": "child", + "id": "https://ror.org/05t20pg33" + }, + { + "label": "United Nations University", + "type": "child", + "id": "https://ror.org/040aqvh16" + }, + { + "label": "United Nations University", + "type": "child", + "id": "https://ror.org/04kkx4y96" + }, + { + "label": "United Nations University Institute for Sustainability and Peace", + "type": "child", + "id": "https://ror.org/00be0m967" + }, + { + "label": "United Nations University Institute for Water, Environment, and Health", + "type": "child", + "id": "https://ror.org/03d8jqg89" + }, + { + "label": "United Nations University Institute for the Advanced Study of Sustainability", + "type": "child", + "id": "https://ror.org/03vmsb260" + }, + { + "label": "United Nations University Institute on Comparative Regional Integration Studies", + "type": "child", + "id": "https://ror.org/02fa0f492" + }, + { + "label": "United Nations University Institute on Computing and Society", + "type": "child", + "id": "https://ror.org/02y0c7m95" + }, + { + "label": "United Nations University – Maastricht Economic and Social Research Institute on Innovation and Technology", + "type": "child", + "id": "https://ror.org/053zwxr79" + }, + { + "label": "United Nations University-International Institute for Global Health", + "type": "child", + "id": "https://ror.org/01y130z09" + }, + { + "label": "United Nations University World Institute for Development Economics Research", + "type": "child", + "id": "https://ror.org/015y1mx47" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01cjash87.json b/rc-v1.43-v2/updates/01cjash87.json new file mode 100644 index 000000000..b9763b152 --- /dev/null +++ b/rc-v1.43-v2/updates/01cjash87.json @@ -0,0 +1,138 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-11-15", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2005, + "external_ids": [ + { + "all": [ + "501100004948", + "501100007263" + ], + "preferred": "501100004948", + "type": "fundref" + }, + { + "all": [ + "grid.418042.b" + ], + "preferred": "grid.418042.b", + "type": "grid" + }, + { + "all": [ + "0000 0004 1758 8699" + ], + "preferred": "0000 0004 1758 8699", + "type": "isni" + }, + { + "all": [ + "Q528842" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01cjash87", + "links": [ + { + "type": "website", + "value": "http://www.astellas.com/en/index.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Astellas_Pharma" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "JP", + "country_name": "Japan", + "lat": 35.6895, + "lng": 139.69171, + "name": "Tokyo" + }, + "geonames_id": 1850147 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Astellas Pharma (Japan)" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Asuterasu Seiyaku Kabushiki-gaisha" + }, + { + "lang": "ja", + "types": [ + "label" + ], + "value": "アステラス製薬株式会社" + } + ], + "relationships": [ + { + "label": "Astellas Pharma (China)", + "type": "child", + "id": "https://ror.org/008h8bh21" + }, + { + "label": "Astellas Pharma (Germany)", + "type": "child", + "id": "https://ror.org/04bdk6464" + }, + { + "label": "Astellas Pharma (India)", + "type": "child", + "id": "https://ror.org/013eh1m30" + }, + { + "label": "Astellas Pharma (Netherlands)", + "type": "child", + "id": "https://ror.org/04kyfd050" + }, + { + "label": "Astellas Pharma (South Korea)", + "type": "child", + "id": "https://ror.org/04pchp455" + }, + { + "label": "Astellas Pharma (United Kingdom)", + "type": "child", + "id": "https://ror.org/018788w33" + }, + { + "label": "Astellas Pharma (United States)", + "type": "child", + "id": "https://ror.org/05pw69n24" + }, + { + "label": "Astellas Pharma (Canada)", + "type": "child", + "id": "https://ror.org/041repn61" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01cjqyj20.json b/rc-v1.43-v2/updates/01cjqyj20.json new file mode 100644 index 000000000..250ead793 --- /dev/null +++ b/rc-v1.43-v2/updates/01cjqyj20.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 1645875, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -3.4703, + "lng": 102.5207, + "name": "Curup" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109912911" + ], + "preferred": "Q109912911" + } + ], + "id": "https://ror.org/01cjqyj20", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iaincurup.ac.id" + } + ], + "names": [ + { + "value": "Institut Agama Islam Negeri Curup", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IAIN Curup", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Curup State Islamic Religious Institute", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01cmdgj85.json b/rc-v1.43-v2/updates/01cmdgj85.json new file mode 100644 index 000000000..ef49ec53d --- /dev/null +++ b/rc-v1.43-v2/updates/01cmdgj85.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51780480" + ], + "preferred": "Q51780480" + } + ], + "id": "https://ror.org/01cmdgj85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www6.versailles-grignon.inrae.fr/sadapt" + } + ], + "names": [ + { + "value": "SADAPT Science Action Développement - Activités Produits Territoires", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Sciences pour l'Action et le Développement : Activités, Produits, Territoires", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SAD-APT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01df3an44.json b/rc-v1.43-v2/updates/01df3an44.json new file mode 100644 index 000000000..30edaf1f1 --- /dev/null +++ b/rc-v1.43-v2/updates/01df3an44.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 2034937, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 41.79222, + "lng": 123.43278, + "name": "Shenyang" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.495835.6" + ], + "preferred": "grid.495835.6" + }, + { + "type": "wikidata", + "all": [ + "Q11138978" + ], + "preferred": "Q11138978" + } + ], + "id": "https://ror.org/01df3an44", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.smtcl.com/" + } + ], + "names": [ + { + "value": "Genertec Shenyang Machine Tool Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Genertec Shenyang Machine Tool Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Shenyang Machine Tool Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Genertec Shenyang Machine Tool Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Shenyang Machine Tool Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "沈阳机床股份有限公司保", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "通用技术沈阳机床股份有限公司官网", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "SMTCL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01dpyn972.json b/rc-v1.43-v2/updates/01dpyn972.json new file mode 100644 index 000000000..6af8aac60 --- /dev/null +++ b/rc-v1.43-v2/updates/01dpyn972.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2003, + "external_ids": [ + { + "all": [ + "grid.419922.5" + ], + "preferred": "grid.419922.5", + "type": "grid" + } + ], + "id": "https://ror.org/01dpyn972", + "links": [ + { + "type": "website", + "value": "http://ior.iosi.ch/site/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.19278, + "lng": 9.01703, + "name": "Bellinzona" + }, + "geonames_id": 2661567 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IOR" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute of Oncology Research" + } + ], + "relationships": [ + { + "label": "Università della Svizzera italiana", + "type": "parent", + "id": "https://ror.org/03c4atk17" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01ed4t417.json b/rc-v1.43-v2/updates/01ed4t417.json new file mode 100644 index 000000000..c0c031802 --- /dev/null +++ b/rc-v1.43-v2/updates/01ed4t417.json @@ -0,0 +1,111 @@ +{ + "locations": [ + { + "geonames_id": 2968705, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.7939, + "lng": 2.35992, + "name": "Villejuif" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0638 6872" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30262232" + ], + "preferred": "Q30262232" + }, + { + "type": "grid", + "all": [ + "grid.463845.8" + ], + "preferred": "grid.463845.8" + } + ], + "id": "https://ror.org/01ed4t417", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cesp.inserm.fr" + } + ], + "names": [ + { + "value": "Centre de recherche en Epidémiologie et Santé des Populations", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre for Epidemiology and Population Health", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CESP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "Hôpital Paul-Brousse", + "type": "parent", + "id": "https://ror.org/05n7yzd13" + }, + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01et6g203.json b/rc-v1.43-v2/updates/01et6g203.json new file mode 100644 index 000000000..355f61a70 --- /dev/null +++ b/rc-v1.43-v2/updates/01et6g203.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 3002650, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.78889, + "lng": 2.27078, + "name": "Le Plessis-Robinson" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.462435.2" + ], + "preferred": "grid.462435.2" + } + ], + "id": "https://ror.org/01et6g203", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.u999.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Pathophysiology and Novel Therapies", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Physiopathologie et Innovation Thérapeutique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Pulmonary Hypertension: Pathophysiology and Novel Therapies", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "PAH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01f7a6m90.json b/rc-v1.43-v2/updates/01f7a6m90.json new file mode 100644 index 000000000..275918ed3 --- /dev/null +++ b/rc-v1.43-v2/updates/01f7a6m90.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3118532, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.60003, + "lng": -5.57032, + "name": "León" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0639 4661" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30284835" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.425226.5" + ], + "preferred": "grid.425226.5" + } + ], + "id": "https://ror.org/01f7a6m90", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.itacyl.es" + } + ], + "names": [ + { + "value": "Instituto Tecnológico Agrario de Castilla y León", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ITACyL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01f80g185.json b/rc-v1.43-v2/updates/01f80g185.json new file mode 100644 index 000000000..c711a738d --- /dev/null +++ b/rc-v1.43-v2/updates/01f80g185.json @@ -0,0 +1,156 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-08-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1948, + "external_ids": [ + { + "all": [ + "100004423" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.3575.4" + ], + "preferred": "grid.3575.4", + "type": "grid" + }, + { + "all": [ + "0000 0001 2163 3745" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7817" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01f80g185", + "links": [ + { + "type": "website", + "value": "http://www.who.int/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/World_Health_Organization" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.20222, + "lng": 6.14569, + "name": "Geneva" + }, + "geonames_id": 2660646 + } + ], + "names": [ + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Organisation Mondiale de la Santé" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Organizzazione Mondiale della Sanità" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "WHO" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Weltgesundheitsorganisation" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "World Health Organization" + } + ], + "relationships": [ + { + "label": "Alliance for Health Policy and Systems Research", + "type": "child", + "id": "https://ror.org/021jq8741" + }, + { + "label": "World Health Organization Regional Office for Africa", + "type": "child", + "id": "https://ror.org/04rtx9382" + }, + { + "label": "World Health Organization Regional Office for Europe", + "type": "child", + "id": "https://ror.org/01rz37c55" + }, + { + "label": "World Health Organization Regional Office for South-East Asia", + "type": "child", + "id": "https://ror.org/02wae9s43" + }, + { + "label": "World Health Organization Regional Office for the Americas", + "type": "child", + "id": "https://ror.org/008kev776" + }, + { + "label": "World Health Organization Regional Office for the Eastern Mediterranean", + "type": "child", + "id": "https://ror.org/01h4ywk72" + }, + { + "label": "World Health Organization Regional Office for the Western Pacific", + "type": "child", + "id": "https://ror.org/04nfvby78" + }, + { + "label": "Unitaid", + "type": "related", + "id": "https://ror.org/05t99je22" + }, + { + "label": "Special Programme for Research and Training in Tropical Diseases", + "type": "child", + "id": "https://ror.org/046j7pv84" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01fftxe08.json b/rc-v1.43-v2/updates/01fftxe08.json new file mode 100644 index 000000000..c4d7dcb79 --- /dev/null +++ b/rc-v1.43-v2/updates/01fftxe08.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7474 7238" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30261453" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462411.4" + ], + "preferred": "grid.462411.4" + } + ], + "id": "https://ror.org/01fftxe08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.i2bc.paris-saclay.fr" + } + ], + "names": [ + { + "value": "Institute of Integrative Biology of the Cell", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "I2BC Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut de Biologie Intégrative de la Cellule", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "I2BC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Atomic Energy and Alternative Energies Commission", + "type": "parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01fgmnw14.json b/rc-v1.43-v2/updates/01fgmnw14.json new file mode 100644 index 000000000..abc1ddc00 --- /dev/null +++ b/rc-v1.43-v2/updates/01fgmnw14.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2867445, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 47.68085, + "lng": 11.20125, + "name": "Murnau am Staffelsee" + } + } + ], + "established": 1953, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9109 6845" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.469896.c" + ], + "preferred": "grid.469896.c" + } + ], + "id": "https://ror.org/01fgmnw14", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.bgu-murnau.de/en/" + } + ], + "names": [ + { + "value": "Berufsgenossenschaftliche Unfallklinik Murnau", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BG Hospital Murnau", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Trauma Center Murnau", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Trauma Centre Murnau", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BGU Murnau", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Technical University of Munich", + "type": "related", + "id": "https://ror.org/02kkvpp62" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01fq24p11.json b/rc-v1.43-v2/updates/01fq24p11.json new file mode 100644 index 000000000..546d03fc2 --- /dev/null +++ b/rc-v1.43-v2/updates/01fq24p11.json @@ -0,0 +1,110 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1961, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 7342" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q15089062" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.509256.d" + ], + "preferred": "grid.509256.d" + } + ], + "id": "https://ror.org/01fq24p11", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.elisava.net/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ELISAVA" + } + ], + "names": [ + { + "value": "Elisava Barcelona School of Design and Engineering", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Escuela Superior de Diseño e Ingeniería de Barcelona", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Escuela Universitaria de Diseño e Ingeniería de Barcelona", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Escola Universitària de Disseny i Enginyeria de Barcelona", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Elisava, Facultat de Disseny i Enginyeria de Barcelona", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "ELISAVA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01gm5f004.json b/rc-v1.43-v2/updates/01gm5f004.json new file mode 100644 index 000000000..193419547 --- /dev/null +++ b/rc-v1.43-v2/updates/01gm5f004.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 3104324, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.65606, + "lng": -0.87734, + "name": "Zaragoza" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1763 291X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100005053" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.429738.3" + ], + "preferred": "grid.429738.3" + } + ], + "id": "https://ror.org/01gm5f004", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciber-bbn.es" + } + ], + "names": [ + { + "value": "Biomedical Research Networking Center in Bioengineering, Biomaterials and Nanomedicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centro de Investigación Biomédica en Red en Bioingeniería, Biomateriales y Nanomedicina", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "CIBER-BBN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01h6pze39.json b/rc-v1.43-v2/updates/01h6pze39.json new file mode 100644 index 000000000..c51f396d8 --- /dev/null +++ b/rc-v1.43-v2/updates/01h6pze39.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1890, + "external_ids": [ + { + "all": [ + "grid.412770.7" + ], + "preferred": "grid.412770.7", + "type": "grid" + }, + { + "all": [ + "0000 0004 0401 9796" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1276602" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01h6pze39", + "links": [ + { + "type": "website", + "value": "http://www.sf.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Saint_Francis_(Indiana)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.1306, + "lng": -85.12886, + "name": "Fort Wayne" + }, + "geonames_id": 4920423 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USF" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de Saint Francis" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Saint Francis" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01j98sy69.json b/rc-v1.43-v2/updates/01j98sy69.json new file mode 100644 index 000000000..4f6226c6f --- /dev/null +++ b/rc-v1.43-v2/updates/01j98sy69.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1957, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432414.4" + ], + "preferred": "grid.432414.4" + } + ], + "id": "https://ror.org/01j98sy69", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.anaip.es" + } + ], + "names": [ + { + "value": "Asociación Española de Industriales de Plásticos", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ANAIP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01js2sh04.json b/rc-v1.43-v2/updates/01js2sh04.json new file mode 100644 index 000000000..d4edc089f --- /dev/null +++ b/rc-v1.43-v2/updates/01js2sh04.json @@ -0,0 +1,121 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1959, + "external_ids": [ + { + "all": [ + "501100001647" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.7683.a" + ], + "preferred": "grid.7683.a", + "type": "grid" + }, + { + "all": [ + "0000 0004 0492 0453" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q311801", + "Q39901428" + ], + "preferred": "Q311801", + "type": "wikidata" + } + ], + "id": "https://ror.org/01js2sh04", + "links": [ + { + "type": "website", + "value": "http://www.desy.de/index_eng.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/DESY" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 53.55073, + "lng": 9.99302, + "name": "Hamburg" + }, + "geonames_id": 2911298 + } + ], + "names": [ + { + "lang": "en", + "types": [ + "label" + ], + "value": "DESY" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Deutsches Elektronen-Synchrotron DESY" + } + ], + "relationships": [ + { + "label": "Center for Free-Electron Laser Science", + "type": "child", + "id": "https://ror.org/04fme8709" + }, + { + "label": "John von Neumann Institute for Computing", + "type": "child", + "id": "https://ror.org/02zmk8084" + }, + { + "label": "Centre for Structural Systems Biology", + "type": "child", + "id": "https://ror.org/04fhwda97" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "Helmholtz Association of German Research Centres", + "type": "parent", + "id": "https://ror.org/0281dp749" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01jty7g66.json b/rc-v1.43-v2/updates/01jty7g66.json new file mode 100644 index 000000000..216c5a6d5 --- /dev/null +++ b/rc-v1.43-v2/updates/01jty7g66.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2879139, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.33962, + "lng": 12.37129, + "name": "Leipzig" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7470 3956" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100020056" + ], + "preferred": "501100020056" + }, + { + "type": "wikidata", + "all": [ + "Q1206134" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.421064.5" + ], + "preferred": "grid.421064.5" + } + ], + "id": "https://ror.org/01jty7g66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.idiv.de" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/German_Centre_for_Integrative_Biodiversity_Research_(iDiv)" + } + ], + "names": [ + { + "value": "German Centre for Integrative Biodiversity Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "German Center for Integrative Biodiversity Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Deutsches Zentrum für integrative Biodiversitätsforschung", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "iDiv", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01kdbb633.json b/rc-v1.43-v2/updates/01kdbb633.json new file mode 100644 index 000000000..bb670ff75 --- /dev/null +++ b/rc-v1.43-v2/updates/01kdbb633.json @@ -0,0 +1,110 @@ +{ + "locations": [ + { + "geonames_id": 2719111, + "geonames_details": { + "country_code": "SE", + "country_name": "Sweden", + "lat": 59.34, + "lng": 17.94, + "name": "Bromma" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0618 2159" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3652398" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462882.2" + ], + "preferred": "grid.462882.2" + } + ], + "id": "https://ror.org/01kdbb633", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ehs.se" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Stockholm_School_of_Theology" + } + ], + "names": [ + { + "value": "University College Stockholm", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stockholm School of Theology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Teologiska högskolan Stockholm", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Enskilda Högskolan Stockholm", + "types": [ + "label" + ], + "lang": "sv" + }, + { + "value": "THS", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "EHS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01kj2bm70.json b/rc-v1.43-v2/updates/01kj2bm70.json new file mode 100644 index 000000000..26235f7d5 --- /dev/null +++ b/rc-v1.43-v2/updates/01kj2bm70.json @@ -0,0 +1,151 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-06-22", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1834, + "external_ids": [ + { + "all": [ + "501100008406", + "501100000774" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.1006.7" + ], + "preferred": "grid.1006.7", + "type": "grid" + }, + { + "all": [ + "0000 0001 0462 7212" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q837164" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01kj2bm70", + "links": [ + { + "type": "website", + "value": "http://www.ncl.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Newcastle_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 54.97328, + "lng": -1.61396, + "name": "Newcastle upon Tyne" + }, + "geonames_id": 2641673 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Newcastle University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Newcastle upon Tyne" + } + ], + "relationships": [ + { + "label": "Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics", + "type": "child", + "id": "https://ror.org/047d2d387" + }, + { + "label": "Wellcome Centre for Mitochondrial Research", + "type": "child", + "id": "https://ror.org/03myjph80" + }, + { + "label": "National Gear Metrology Laboratory", + "type": "child", + "id": "https://ror.org/05akpmt68" + }, + { + "label": "Freeman Hospital", + "type": "related", + "id": "https://ror.org/00cdwy346" + }, + { + "label": "NIHR Newcastle Biomedical Research Centre", + "type": "related", + "id": "https://ror.org/044m9mw93" + }, + { + "label": "Newcastle Hospitals - Campus for Ageing and Vitality", + "type": "related", + "id": "https://ror.org/051qy7v07" + }, + { + "label": "Newcastle University Medicine Malaysia", + "type": "related", + "id": "https://ror.org/009e9eq52" + }, + { + "label": "Newcastle University Singapore", + "type": "related", + "id": "https://ror.org/00mbfhq81" + }, + { + "label": "Queen Elizabeth Hospital", + "type": "related", + "id": "https://ror.org/015dyrs73" + }, + { + "label": "Royal Victoria Infirmary", + "type": "related", + "id": "https://ror.org/01p19k166" + }, + { + "label": "University Hospital of North Durham", + "type": "related", + "id": "https://ror.org/04qgcgz06" + }, + { + "label": "National Centre for Energy Systems Integration", + "type": "child", + "id": "https://ror.org/02r4fqa76" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01mhxe537.json b/rc-v1.43-v2/updates/01mhxe537.json new file mode 100644 index 000000000..7735154fe --- /dev/null +++ b/rc-v1.43-v2/updates/01mhxe537.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 6359078, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.46712, + "lng": -2.44541, + "name": "Logroño" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30256933" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434800.b" + ], + "preferred": "grid.434800.b" + } + ], + "id": "https://ror.org/01mhxe537", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.geolica.com/" + } + ], + "names": [ + { + "value": "Geolica Innovations (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01n6r0e97.json b/rc-v1.43-v2/updates/01n6r0e97.json new file mode 100644 index 000000000..8afd5baff --- /dev/null +++ b/rc-v1.43-v2/updates/01n6r0e97.json @@ -0,0 +1,594 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1990, + "external_ids": [ + { + "all": [ + "0000 0001 2224 3060" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100001664" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q680090" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.413453.4" + ], + "preferred": "grid.413453.4", + "type": "grid" + } + ], + "id": "https://ror.org/01n6r0e97", + "links": [ + { + "type": "website", + "value": "http://www.leibniz-gemeinschaft.de/en/home/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Leibniz_Association" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + }, + "geonames_id": 2950159 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Leibniz Association" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Leibniz-Gemeinschaft" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LG" + } + ], + "relationships": [ + { + "label": "ARL – Academy for Territorial Development in the Leibniz Association", + "type": "child", + "id": "https://ror.org/010b6ag76" + }, + { + "label": "Bernhard Nocht Institute for Tropical Medicine", + "type": "child", + "id": "https://ror.org/01evwfd48" + }, + { + "label": "Leibniz-Centre for Contemporary History", + "type": "child", + "id": "https://ror.org/005xmsp39" + }, + { + "label": "Centre for European Economic Research", + "type": "child", + "id": "https://ror.org/02qnsw591" + }, + { + "label": "DWI – Leibniz Institute for Interactive Materials", + "type": "child", + "id": "https://ror.org/0186h8060" + }, + { + "label": "Deutsches Museum", + "type": "child", + "id": "https://ror.org/00a7n7g54" + }, + { + "label": "Deutsches Schiffahrtsmuseum", + "type": "child", + "id": "https://ror.org/02hdxnq28" + }, + { + "label": "FIZ Karlsruhe – Leibniz Institute for Information Infrastructure", + "type": "child", + "id": "https://ror.org/0387prb75" + }, + { + "label": "Ferdinand-Braun-Institut", + "type": "child", + "id": "https://ror.org/02be22443" + }, + { + "label": "Leibniz Institute for Educational Media | Georg Eckert Institute", + "type": "child", + "id": "https://ror.org/01hnv8x68" + }, + { + "label": "Deutsches Diabetes-Zentrum e.V.", + "type": "child", + "id": "https://ror.org/04ews3245" + }, + { + "label": "German Institute for Adult Education", + "type": "child", + "id": "https://ror.org/04565hy55" + }, + { + "label": "German Institute for Economic Research", + "type": "child", + "id": "https://ror.org/0050vmv35" + }, + { + "label": "German Institute for Global and Area Studies", + "type": "child", + "id": "https://ror.org/00681ts17" + }, + { + "label": "DIPF | Leibniz Institute for Research and Information in Education", + "type": "child", + "id": "https://ror.org/0327sr118" + }, + { + "label": "German Institute of Human Nutrition", + "type": "child", + "id": "https://ror.org/05xdczy51" + }, + { + "label": "Deutsches Bergbau-Museum Bochum", + "type": "child", + "id": "https://ror.org/03k7cjr94" + }, + { + "label": "ZBW – Leibniz-Informationszentrum Wirtschaft", + "type": "child", + "id": "https://ror.org/03a96gc12" + }, + { + "label": "Technische Informationsbibliothek (TIB)", + "type": "child", + "id": "https://ror.org/04aj4c181" + }, + { + "label": "German Primate Center", + "type": "child", + "id": "https://ror.org/02f99v835" + }, + { + "label": "German Rheumatism Research Centre", + "type": "child", + "id": "https://ror.org/00shv0x82" + }, + { + "label": "Germanisches Nationalmuseum", + "type": "child", + "id": "https://ror.org/02fv99722" + }, + { + "label": "Halle Institute for Economic Research", + "type": "child", + "id": "https://ror.org/03gjpvv92" + }, + { + "label": "Hans Knöll Institute", + "type": "child", + "id": "https://ror.org/055s37c97" + }, + { + "label": "Hans-Bredow-Institute", + "type": "child", + "id": "https://ror.org/021eps607" + }, + { + "label": "Leibniz Institute of Virology (LIV)", + "type": "child", + "id": "https://ror.org/02r2q1d96" + }, + { + "label": "Herder Institute", + "type": "child", + "id": "https://ror.org/00sngv739" + }, + { + "label": "Ifo Institute for Economic Research", + "type": "child", + "id": "https://ror.org/045495t75" + }, + { + "label": "Innovations for High Performance Microelectronics", + "type": "child", + "id": "https://ror.org/0489gab80" + }, + { + "label": "Institut für Zeitgeschichte München–Berlin", + "type": "child", + "id": "https://ror.org/008pp7a77" + }, + { + "label": "Leibniz Institute of Plant Genetics and Crop Plant Research", + "type": "child", + "id": "https://ror.org/02skbsp27" + }, + { + "label": "Kiel Institute for the World Economy", + "type": "child", + "id": "https://ror.org/032yym934" + }, + { + "label": "Leibniz Centre for Agricultural Landscape Research", + "type": "child", + "id": "https://ror.org/01ygyzs83" + }, + { + "label": "Leibniz Centre for Tropical Marine Research", + "type": "child", + "id": "https://ror.org/019w00969" + }, + { + "label": "Leibniz Institute DSMZ – German Collection of Microorganisms and Cell Cultures", + "type": "child", + "id": "https://ror.org/02tyer376" + }, + { + "label": "Leibniz Institute for Agricultural Engineering and Bioeconomy", + "type": "child", + "id": "https://ror.org/04d62a771" + }, + { + "label": "Leibniz Institute for Analytical Sciences - ISAS", + "type": "child", + "id": "https://ror.org/02jhqqg57" + }, + { + "label": "Leibniz Institute for Applied Geophysics", + "type": "child", + "id": "https://ror.org/05txczf44" + }, + { + "label": "Leibniz Institute for Astrophysics Potsdam", + "type": "child", + "id": "https://ror.org/03mrbr458" + }, + { + "label": "Leibniz Institute for Baltic Sea Research", + "type": "child", + "id": "https://ror.org/03xh9nq73" + }, + { + "label": "Leibniz Institute for Catalysis", + "type": "child", + "id": "https://ror.org/029hg0311" + }, + { + "label": "Leibniz Institute for Crystal Growth", + "type": "child", + "id": "https://ror.org/037p86664" + }, + { + "label": "Leibniz Institute for East and Southeast European Studies", + "type": "child", + "id": "https://ror.org/039s64n79" + }, + { + "label": "Leibniz Institute for Educational Trajectories", + "type": "child", + "id": "https://ror.org/04c14rw28" + }, + { + "label": "Leibniz Institute for Financial Research SAFE", + "type": "child", + "id": "https://ror.org/05wxywg93" + }, + { + "label": "Leibniz Institute for Jewish History and Culture – Simon Dubnow", + "type": "child", + "id": "https://ror.org/03j1wg370" + }, + { + "label": "Leibniz-Institut für Werkstofforientierte Technologien - IWT", + "type": "child", + "id": "https://ror.org/01xc6bj88" + }, + { + "label": "Leibniz Institute for Neurobiology", + "type": "child", + "id": "https://ror.org/01zwmgk08" + }, + { + "label": "Leibniz Institute for Plasma Science and Technology", + "type": "child", + "id": "https://ror.org/004hd5y14" + }, + { + "label": "Leibniz Institute for Prevention Research and Epidemiology - BIPS", + "type": "child", + "id": "https://ror.org/02c22vc57" + }, + { + "label": "Leibniz Institute for Psychology", + "type": "child", + "id": "https://ror.org/0165gz615" + }, + { + "label": "Leibniz Institute for Regional Geography", + "type": "child", + "id": "https://ror.org/02wt6e634" + }, + { + "label": "Leibniz Institute for Research on Society and Space", + "type": "child", + "id": "https://ror.org/01rkqb281" + }, + { + "label": "Leibniz Institute for Resilience Research", + "type": "child", + "id": "https://ror.org/00q5t0010" + }, + { + "label": "Leibniz Institute for Science and Mathematics Education", + "type": "child", + "id": "https://ror.org/008n8dd57" + }, + { + "label": "Leibniz Institute for Solid State and Materials Research", + "type": "child", + "id": "https://ror.org/04zb59n70" + }, + { + "label": "Leibniz Institute for Tropospheric Research", + "type": "child", + "id": "https://ror.org/03a5xsc56" + }, + { + "label": "Leibniz Institute for Zoo and Wildlife Research", + "type": "child", + "id": "https://ror.org/05nywn832" + }, + { + "label": "Leibniz Institute for the German Language", + "type": "child", + "id": "https://ror.org/00hvwkt50" + }, + { + "label": "Leibniz Institute for the History and Culture of Eastern Europe (GWZO)", + "type": "child", + "id": "https://ror.org/04tjfqn96" + }, + { + "label": "GESIS - Leibniz-Institute for the Social Sciences", + "type": "child", + "id": "https://ror.org/018afyw53" + }, + { + "label": "Leibniz Institute of Agricultural Development in Transition Economies", + "type": "child", + "id": "https://ror.org/03hkr1v69" + }, + { + "label": "Leibniz Institute of Atmospheric Physics at the Rostock University", + "type": "child", + "id": "https://ror.org/04enhpe73" + }, + { + "label": "Leibniz Institute of Ecological Urban and Regional Development", + "type": "child", + "id": "https://ror.org/02t26g637" + }, + { + "label": "Leibniz Institute of Environmental Medicine", + "type": "child", + "id": "https://ror.org/0163xqp73" + }, + { + "label": "Leibniz Institute of European History", + "type": "child", + "id": "https://ror.org/059dyrr28" + }, + { + "label": "Leibniz Institute of Freshwater Ecology and Inland Fisheries", + "type": "child", + "id": "https://ror.org/01nftxb06" + }, + { + "label": "Leibniz Institute of Photonic Technology", + "type": "child", + "id": "https://ror.org/02se0t636" + }, + { + "label": "Leibniz Institute of Plant Biochemistry", + "type": "child", + "id": "https://ror.org/01mzk5576" + }, + { + "label": "Leibniz Institute of Polymer Research", + "type": "child", + "id": "https://ror.org/01tspta37" + }, + { + "label": "Leibniz Institute of Surface Engineering", + "type": "child", + "id": "https://ror.org/04vx4mk32" + }, + { + "label": "Leibniz Institute of Vegetable and Ornamental Crops", + "type": "child", + "id": "https://ror.org/01a62v145" + }, + { + "label": "Leibniz Institute on Aging – Fritz Lipmann Institute", + "type": "child", + "id": "https://ror.org/039a53269" + }, + { + "label": "Leibniz Research Centre for Working Environment and Human Factors", + "type": "child", + "id": "https://ror.org/05cj29x94" + }, + { + "label": "Leibniz-Centre General Linguistics", + "type": "child", + "id": "https://ror.org/03wz9xk91" + }, + { + "label": "Leibniz-Forschungsinstitut für Molekulare Pharmakologie", + "type": "child", + "id": "https://ror.org/010s54n03" + }, + { + "label": "Leibniz-Institut für Sonnenphysik", + "type": "child", + "id": "https://ror.org/006g31f33" + }, + { + "label": "Leibniz-Institut für Wissensmedien", + "type": "child", + "id": "https://ror.org/03hv28176" + }, + { + "label": "Leibniz-Institute for Food Systems Biology at the Technical University of Munich", + "type": "child", + "id": "https://ror.org/04sy7nb49" + }, + { + "label": "Leibniz-Institute for New Materials", + "type": "child", + "id": "https://ror.org/00g656d67" + }, + { + "label": "Leibniz-Zentrum Moderner Orient", + "type": "child", + "id": "https://ror.org/03ty9wj75" + }, + { + "label": "Leibniz-Zentrum für Literatur- und Kulturforschung", + "type": "child", + "id": "https://ror.org/00bpta863" + }, + { + "label": "Mathematical Research Institute of Oberwolfach", + "type": "child", + "id": "https://ror.org/001zbj766" + }, + { + "label": "Max-Born-Institute for Nonlinear Optics and Short Pulse Spectroscopy", + "type": "child", + "id": "https://ror.org/03jbf6q27" + }, + { + "label": "Museum für Naturkunde", + "type": "child", + "id": "https://ror.org/052d1a351" + }, + { + "label": "Paul Drude Institute for Solid State Electronics", + "type": "child", + "id": "https://ror.org/01mk1hj86" + }, + { + "label": "Peace Research Institute Frankfurt", + "type": "child", + "id": "https://ror.org/021k10z87" + }, + { + "label": "Potsdam Institute for Climate Impact Research", + "type": "child", + "id": "https://ror.org/03e8s1d88" + }, + { + "label": "RWI – Leibniz Institute for Economic Research", + "type": "child", + "id": "https://ror.org/02pse8162" + }, + { + "label": "Research Center Borstel - Leibniz Lung Center", + "type": "child", + "id": "https://ror.org/036ragn25" + }, + { + "label": "LEIZA - Leibniz-Zentrum für Archäologie", + "type": "child", + "id": "https://ror.org/0483qx226" + }, + { + "label": "Schloss Dagstuhl – Leibniz Center for Informatics", + "type": "child", + "id": "https://ror.org/00k4h2615" + }, + { + "label": "Senckenberg Society for Nature Research", + "type": "child", + "id": "https://ror.org/00xmqmx64" + }, + { + "label": "WZB Berlin Social Science Center", + "type": "child", + "id": "https://ror.org/03k0z2z93" + }, + { + "label": "Weierstrass Institute for Applied Analysis and Stochastics", + "type": "child", + "id": "https://ror.org/00h1x4t21" + }, + { + "label": "Zoological Research Museum Alexander Koenig", + "type": "child", + "id": "https://ror.org/00wz4b049" + }, + { + "label": "Leibniz Institute for Immunotherapy", + "type": "child", + "id": "https://ror.org/00xn1pr13" + }, + { + "label": "Leibniz Institute for the Analysis of Biodiversity Change", + "type": "child", + "id": "https://ror.org/03k5bhd83" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01nrxwf90.json b/rc-v1.43-v2/updates/01nrxwf90.json new file mode 100644 index 000000000..d2dac8140 --- /dev/null +++ b/rc-v1.43-v2/updates/01nrxwf90.json @@ -0,0 +1,193 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1582, + "external_ids": [ + { + "all": [ + "501100000848", + "501100000635", + "501100005698", + "501100002754" + ], + "preferred": "501100000848", + "type": "fundref" + }, + { + "all": [ + "grid.4305.2" + ], + "preferred": "grid.4305.2", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 7988" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q160302" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01nrxwf90", + "links": [ + { + "type": "website", + "value": "http://www.ed.ac.uk/home" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Edinburgh" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + }, + "geonames_id": 2650225 + } + ], + "names": [ + { + "lang": "gd", + "types": [ + "label" + ], + "value": "Oilthigh Dhùn Èideann" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Edinburgh" + } + ], + "relationships": [ + { + "label": "British Heart Foundation Centre for Cardiovascular Science", + "type": "child", + "id": "https://ror.org/002g4nt27" + }, + { + "label": "Edinburgh Cancer Research", + "type": "child", + "id": "https://ror.org/05a7t9b67" + }, + { + "label": "Centre for Inflammation Research", + "type": "child", + "id": "https://ror.org/05wcr1b38" + }, + { + "label": "International Centre for Mathematical Sciences", + "type": "child", + "id": "https://ror.org/03ab8zv57" + }, + { + "label": "MRC Centre for Regenerative Medicine", + "type": "child", + "id": "https://ror.org/01x802g65" + }, + { + "label": "MRC Centre for Reproductive Health", + "type": "child", + "id": "https://ror.org/02f4tsf92" + }, + { + "label": "MRC Institute of Genetics and Molecular Medicine", + "type": "child", + "id": "https://ror.org/05hygey35" + }, + { + "label": "Maxwell Institute for Mathematical Sciences", + "type": "child", + "id": "https://ror.org/02tsqtg57" + }, + { + "label": "Roslin Institute", + "type": "child", + "id": "https://ror.org/01920rj20" + }, + { + "label": "Scottish Collaboration for Public Health Research and Policy", + "type": "child", + "id": "https://ror.org/05x7p8987" + }, + { + "label": "The Queen's Medical Research Institute", + "type": "child", + "id": "https://ror.org/059zxg644" + }, + { + "label": "Wellcome Centre for Cell Biology", + "type": "child", + "id": "https://ror.org/03xbccz06" + }, + { + "label": "Zhejiang University-University of Edinburgh Institute", + "type": "child", + "id": "https://ror.org/04jth1r26" + }, + { + "label": "MRC Human Genetics Unit", + "type": "child", + "id": "https://ror.org/011jsc803" + }, + { + "label": "Edinburgh Royal Infirmary", + "type": "related", + "id": "https://ror.org/009bsy196" + }, + { + "label": "Royal Hospital for Sick Children", + "type": "related", + "id": "https://ror.org/01w7h4t60" + }, + { + "label": "St John's Hospital", + "type": "related", + "id": "https://ror.org/01hssm416" + }, + { + "label": "Western General Hospital", + "type": "related", + "id": "https://ror.org/009kr6r15" + }, + { + "label": "Scottish Confederation of University and Research Libraries", + "type": "related", + "id": "https://ror.org/03hkzcg46" + }, + { + "label": "Asthma UK Centre for Applied Research", + "type": "child", + "id": "https://ror.org/04ect1284" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01nry9c15.json b/rc-v1.43-v2/updates/01nry9c15.json new file mode 100644 index 000000000..cccc65ae0 --- /dev/null +++ b/rc-v1.43-v2/updates/01nry9c15.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q4886787" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.430077.7" + ], + "preferred": "grid.430077.7" + } + ], + "id": "https://ror.org/01nry9c15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fpmaragall.org/en/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Pasqual_Maragall_Foundation" + } + ], + "names": [ + { + "value": "Pasqual Maragall Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fundació Pasqual Maragall", + "types": [ + "label" + ], + "lang": "ca" + } + ], + "relationships": [ + { + "label": "Barcelonaβeta Brain Research Center", + "type": "child", + "id": "https://ror.org/03k4wdb90" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01nv2xf68.json b/rc-v1.43-v2/updates/01nv2xf68.json new file mode 100644 index 000000000..529630e23 --- /dev/null +++ b/rc-v1.43-v2/updates/01nv2xf68.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q15470" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.417656.7" + ], + "preferred": "grid.417656.7" + } + ], + "id": "https://ror.org/01nv2xf68", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.l-h.cat/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/L%27Hospitalet_de_Llobregat" + } + ], + "names": [ + { + "value": "Ajuntament de L’Hospitalet", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ayuntamiento de Hospitalet de Llobregat", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hospitalet de Llobregat City Council", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Institut d'Investigació Biomédica de Bellvitge", + "type": "child", + "id": "https://ror.org/0008xqs48" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01p07y544.json b/rc-v1.43-v2/updates/01p07y544.json new file mode 100644 index 000000000..edcdd18cd --- /dev/null +++ b/rc-v1.43-v2/updates/01p07y544.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 703448, + "geonames_details": { + "country_code": "UA", + "country_name": "Ukraine", + "lat": 50.45466, + "lng": 30.5238, + "name": "Kyiv" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q12139846" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.446267.5" + ], + "preferred": "grid.446267.5" + } + ], + "id": "https://ror.org/01p07y544", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uhsp.edu.ua" + } + ], + "names": [ + { + "value": "Hryhorii Skovoroda University in Pereiaslav", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Переяслав-Хмельницький державний педагогічний університет імені Григорія Сковороди", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Університет Григорія Сковороди в Переяславі", + "types": [ + "label" + ], + "lang": "uk" + }, + { + "value": "PCDPU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01pd2sz18.json b/rc-v1.43-v2/updates/01pd2sz18.json new file mode 100644 index 000000000..88ef9458a --- /dev/null +++ b/rc-v1.43-v2/updates/01pd2sz18.json @@ -0,0 +1,94 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0458 7507" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q51778778" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.503406.4" + ], + "preferred": "grid.503406.4", + "type": "grid" + } + ], + "id": "https://ror.org/01pd2sz18", + "links": [ + { + "type": "website", + "value": "https://www6.montpellier.inra.fr/mistea_eng/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Mathématiques, Informatique et Statistique pour l'Environnement et l'Agronomie" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MISTEA" + } + ], + "relationships": [ + { + "label": "Centre Occitanie-Montpellier", + "type": "parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Département Mathématiques et Informatique Appliquées", + "type": "parent", + "id": "https://ror.org/011emb038" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01q76b368.json b/rc-v1.43-v2/updates/01q76b368.json new file mode 100644 index 000000000..85f2aaf96 --- /dev/null +++ b/rc-v1.43-v2/updates/01q76b368.json @@ -0,0 +1,341 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0253 7563" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100017216" + ], + "preferred": "501100017216" + }, + { + "type": "wikidata", + "all": [ + "Q24935880" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457013.4" + ], + "preferred": "grid.457013.4" + } + ], + "id": "https://ror.org/01q76b368", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/inee/" + } + ], + "names": [ + { + "value": "Institut Écologie et Environnement", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INEE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Adaptation and Diversity in the Marine Environment", + "type": "child", + "id": "https://ror.org/0293jn610" + }, + { + "label": "Adaptative Mechanisms & Evolution", + "type": "child", + "id": "https://ror.org/041tgdz97" + }, + { + "label": "Archéozoologie et Archéobotanique", + "type": "child", + "id": "https://ror.org/03j82q602" + }, + { + "label": "Laboratoire d'Ecogéochimie des Environnements Benthiques", + "type": "child", + "id": "https://ror.org/049xh5y45" + }, + { + "label": "Biogéosciences", + "type": "child", + "id": "https://ror.org/04mzqjs78" + }, + { + "label": "Biologie des Organismes et Écosystèmes Aquatiques", + "type": "child", + "id": "https://ror.org/01tp1c480" + }, + { + "label": "Biometry and Evolutionary Biology Laboratory", + "type": "child", + "id": "https://ror.org/03skt0t88" + }, + { + "label": "Centre d'Etudes Biologiques de Chizé", + "type": "child", + "id": "https://ror.org/00s8hq550" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Recherches Insulaires et Observatoire de l'Environnement", + "type": "child", + "id": "https://ror.org/02tp7mm44" + }, + { + "label": "Centre d'Écologie et des Sciences de la Conservation", + "type": "child", + "id": "https://ror.org/00sad8321" + }, + { + "label": "Cereep Ecotron Île-de-France", + "type": "child", + "id": "https://ror.org/05j6qf006" + }, + { + "label": "Chrono-Environment Laboratory", + "type": "child", + "id": "https://ror.org/028cef883" + }, + { + "label": "Communication Molecules and Adapation of Micro-organisms", + "type": "child", + "id": "https://ror.org/04xfycm61" + }, + { + "label": "Cultures et Environnements. Préhistoire, Antiquité, Moyen Âge", + "type": "child", + "id": "https://ror.org/04n9van71" + }, + { + "label": "De la Préhistoire à l'Actuel : Culture, Environnement et Anthropologie", + "type": "child", + "id": "https://ror.org/027mnq498" + }, + { + "label": "Ecology and Dynamics of Human Influenced Systems", + "type": "child", + "id": "https://ror.org/02bhp7a56" + }, + { + "label": "Ecosystèmes, Biodiversité, Evolution", + "type": "child", + "id": "https://ror.org/005fjj927" + }, + { + "label": "Environment, City, Society", + "type": "child", + "id": "https://ror.org/0256r1e04" + }, + { + "label": "Biologie évolutive et écologie des algues", + "type": "child", + "id": "https://ror.org/051k70002" + }, + { + "label": "Histoire Naturelle de l’Homme Préhistorique", + "type": "child", + "id": "https://ror.org/00c3ta789" + }, + { + "label": "Institut de Systématique, Évolution, Biodiversité", + "type": "child", + "id": "https://ror.org/01dadvw90" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institute of Paleoprimatology Human Paleontology Evolution and Paleoenvironments", + "type": "child", + "id": "https://ror.org/0325zb480" + }, + { + "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 Image, Ville, Environnement", + "type": "child", + "id": "https://ror.org/03x8fem72" + }, + { + "label": "Laboratoire Microorganismes Génome et Environnement", + "type": "child", + "id": "https://ror.org/020ahr442" + }, + { + "label": "Laboratoire Méditerranéen de Préhistoire Europe Afrique", + "type": "child", + "id": "https://ror.org/011gea244" + }, + { + "label": "Laboratoire d'Écologie Alpine", + "type": "child", + "id": "https://ror.org/03x1z2w73" + }, + { + "label": "Laboratoire de Biodiversité et Biotechnologies Microbiennes", + "type": "child", + "id": "https://ror.org/039p01270" + }, + { + "label": "Laboratoire de Génétique & Evolution des Populations Végétales", + "type": "child", + "id": "https://ror.org/01h0a3k64" + }, + { + "label": "Laboratoire de Géographie Physique", + "type": "child", + "id": "https://ror.org/054v0s666" + }, + { + "label": "Laboratoire de Géographie Physique et Environnementale", + "type": "child", + "id": "https://ror.org/00e4pqm50" + }, + { + "label": "Laboratoire des Sciences de l'Environnement Marin", + "type": "child", + "id": "https://ror.org/05h929866" + }, + { + "label": "Laboratoire Écologie Fonctionnelle et Environnement", + "type": "child", + "id": "https://ror.org/027rbaq21" + }, + { + "label": "Laboratory Evolution and Biological Diversity", + "type": "child", + "id": "https://ror.org/02xh23b55" + }, + { + "label": "Laboratory of Molecular Anthropology and Image Synthesis", + "type": "child", + "id": "https://ror.org/05w482q29" + }, + { + "label": "Maladies Infectieuses et Vecteurs: Écologie, Génétique, Évolution et Contrôle", + "type": "child", + "id": "https://ror.org/00357kh21" + }, + { + "label": "Mediterranean Institute of Marine and Terrestrial Biodiversity and Ecology", + "type": "child", + "id": "https://ror.org/0409c3995" + }, + { + "label": "Microbial Ecology", + "type": "child", + "id": "https://ror.org/053vv7851" + }, + { + "label": "Milieux environnementaux, transferts et interactions dans les hydrosystèmes et les sols", + "type": "child", + "id": "https://ror.org/0229z0679" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Station Biologique de Roscoff", + "type": "child", + "id": "https://ror.org/03s0pzj56" + }, + { + "label": "Station d’Écologie Théorique et Expérimentale", + "type": "child", + "id": "https://ror.org/05d6wfd23" + }, + { + "label": "Travaux et Recherches Archéologiques sur les Cultures, les Espaces et les Sociétés", + "type": "child", + "id": "https://ror.org/04pfm5x27" + }, + { + "label": "Éco-Anthropologie", + "type": "child", + "id": "https://ror.org/03x0yny97" + }, + { + "label": "Écologie Marine Tropicale des Océans Pacifique et Indien", + "type": "child", + "id": "https://ror.org/05kxt4539" + }, + { + "label": "Écologie et Biologie des Interactions", + "type": "child", + "id": "https://ror.org/051f3f740" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01q7cq281.json b/rc-v1.43-v2/updates/01q7cq281.json new file mode 100644 index 000000000..253a54168 --- /dev/null +++ b/rc-v1.43-v2/updates/01q7cq281.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3106672, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.65518, + "lng": -4.72372, + "name": "Valladolid" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q14866877" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.472213.1" + ], + "preferred": "grid.472213.1" + } + ], + "id": "https://ror.org/01q7cq281", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://wikimedia.es" + } + ], + "names": [ + { + "value": "Wikimedia España", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01qgecw57.json b/rc-v1.43-v2/updates/01qgecw57.json new file mode 100644 index 000000000..2ecb2e524 --- /dev/null +++ b/rc-v1.43-v2/updates/01qgecw57.json @@ -0,0 +1,102 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2001, + "external_ids": [ + { + "all": [ + "0000 0004 0399 4960" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4969002" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.415172.4" + ], + "preferred": "grid.415172.4", + "type": "grid" + } + ], + "id": "https://ror.org/01qgecw57", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/bristol-royal-hospital-for-children/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Bristol_Royal_Hospital_for_Children" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bristol Royal Hospital for Children" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bristol Children's Hospital" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bristol Royal Hospital for Sick Children" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BRHC" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01qv3ez98.json b/rc-v1.43-v2/updates/01qv3ez98.json new file mode 100644 index 000000000..d9e2f8e20 --- /dev/null +++ b/rc-v1.43-v2/updates/01qv3ez98.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2163355, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -42.87936, + "lng": 147.32941, + "name": "Hobart" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q64085930" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.510152.2" + ], + "preferred": "grid.510152.2" + } + ], + "id": "https://ror.org/01qv3ez98", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.csiro.au/en/about/facilities-collections/Collections/ANACC" + } + ], + "names": [ + { + "value": "Australian National Algae Culture Collection", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ANACC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Commonwealth Scientific and Industrial Research Organisation", + "type": "parent", + "id": "https://ror.org/03qn8fb07" + } + ], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01r7awg59.json b/rc-v1.43-v2/updates/01r7awg59.json new file mode 100644 index 000000000..3e3a2b89c --- /dev/null +++ b/rc-v1.43-v2/updates/01r7awg59.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1964, + "external_ids": [ + { + "all": [ + "100008986" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.34429.38" + ], + "preferred": "grid.34429.38", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 8198" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q795988" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01r7awg59", + "links": [ + { + "type": "website", + "value": "http://www.uoguelph.ca/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Guelph" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.54594, + "lng": -80.25599, + "name": "Guelph" + }, + "geonames_id": 5967629 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Guelph" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de guelph" + } + ], + "relationships": [ + { + "label": "Ontario Veterinary College", + "type": "child", + "id": "https://ror.org/04frvgs13" + }, + { + "label": "Ontario Agri-Food Innovation Alliance", + "type": "related", + "id": "https://ror.org/02ftfma65" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01r9z8p25.json b/rc-v1.43-v2/updates/01r9z8p25.json new file mode 100644 index 000000000..a06d2d836 --- /dev/null +++ b/rc-v1.43-v2/updates/01r9z8p25.json @@ -0,0 +1,126 @@ +{ + "locations": [ + { + "geonames_id": 2511401, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 28.4853, + "lng": -16.32014, + "name": "San Cristóbal de La Laguna" + } + } + ], + "established": 1927, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2106 0879" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100015528" + ], + "preferred": "100015528" + }, + { + "type": "wikidata", + "all": [ + "Q539881" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.10041.34" + ], + "preferred": "grid.10041.34" + } + ], + "id": "https://ror.org/01r9z8p25", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ull.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_La_Laguna" + } + ], + "names": [ + { + "value": "Universidad de La Laguna", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of San Fernando de La Laguna", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidade de La Laguna", + "types": [ + "label" + ], + "lang": "gl" + }, + { + "value": "University of La Laguna", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ULL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Hospital Universitario de Canarias", + "type": "related", + "id": "https://ror.org/05qndj312" + }, + { + "label": "Instituto de Astrofísica de Canarias", + "type": "child", + "id": "https://ror.org/03cmntr54" + }, + { + "label": "Hospital Universitario Nuestra Señora de Candelaria", + "type": "related", + "id": "https://ror.org/005a3p084" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01swzsf04.json b/rc-v1.43-v2/updates/01swzsf04.json new file mode 100644 index 000000000..27f9da1db --- /dev/null +++ b/rc-v1.43-v2/updates/01swzsf04.json @@ -0,0 +1,142 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1559, + "external_ids": [ + { + "all": [ + "501100006389" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.8591.5" + ], + "preferred": "grid.8591.5", + "type": "grid" + }, + { + "all": [ + "0000 0001 2322 4988", + "0000 0001 2175 2154" + ], + "preferred": "0000 0001 2175 2154", + "type": "isni" + }, + { + "all": [ + "Q503473" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01swzsf04", + "links": [ + { + "type": "website", + "value": "https://www.unige.ch/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Geneva" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.20222, + "lng": 6.14569, + "name": "Geneva" + }, + "geonames_id": 2660646 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Schola Genevensis" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNIGE" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Geneva" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Università di Ginevra" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Genève" + } + ], + "relationships": [ + { + "label": "NCCR Chemical Biology - Visualisation and Control of Biological Processes Using Chemistry", + "type": "child", + "id": "https://ror.org/033f9yy33" + }, + { + "label": "Swiss Cancer Center Léman", + "type": "child", + "id": "https://ror.org/03kwyfa97" + }, + { + "label": "Idiap Research Institute", + "type": "related", + "id": "https://ror.org/05932h694" + }, + { + "label": "University Hospital of Geneva", + "type": "related", + "id": "https://ror.org/01m1pv723" + }, + { + "label": "Swiss Centre for Applied Human Toxicology", + "type": "related", + "id": "https://ror.org/03wma5x57" + }, + { + "label": "NCCR SwissMAP", + "type": "child", + "id": "https://ror.org/00xzacp61" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01v2rax29.json b/rc-v1.43-v2/updates/01v2rax29.json new file mode 100644 index 000000000..a57cedfac --- /dev/null +++ b/rc-v1.43-v2/updates/01v2rax29.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.502774.3" + ], + "preferred": "grid.502774.3" + } + ], + "id": "https://ror.org/01v2rax29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://designforall.org" + } + ], + "names": [ + { + "value": "Design for All Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01v376g59.json b/rc-v1.43-v2/updates/01v376g59.json new file mode 100644 index 000000000..e93ffb23a --- /dev/null +++ b/rc-v1.43-v2/updates/01v376g59.json @@ -0,0 +1,128 @@ +{ + "locations": [ + { + "geonames_id": 2953436, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.22683, + "lng": 8.61816, + "name": "Bad Homburg" + } + } + ], + "established": 1912, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0451 3831" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q705361" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462236.7" + ], + "preferred": "grid.462236.7" + } + ], + "id": "https://ror.org/01v376g59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fresenius.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Fresenius_(company)" + } + ], + "names": [ + { + "value": "Fresenius (Germany)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fresenius SE & Co. KGaA", + "types": [ + "label" + ], + "lang": "de" + } + ], + "relationships": [ + { + "label": "Fresenius Kabi (China)", + "type": "child", + "id": "https://ror.org/03r86y726" + }, + { + "label": "Fresenius Kabi (Czechia)", + "type": "child", + "id": "https://ror.org/034bznj45" + }, + { + "label": "Fresenius Kabi (India)", + "type": "child", + "id": "https://ror.org/01axjm922" + }, + { + "label": "Fresenius Kabi (Netherlands)", + "type": "child", + "id": "https://ror.org/030yesb42" + }, + { + "label": "Fresenius Kabi (South Korea)", + "type": "child", + "id": "https://ror.org/0050zy157" + }, + { + "label": "Fresenius Kabi (United States)", + "type": "child", + "id": "https://ror.org/04rzhfa50" + }, + { + "label": "Fresenius Medical Care (India)", + "type": "child", + "id": "https://ror.org/04z11gw67" + }, + { + "label": "Fresenius Medical Care (United States)", + "type": "child", + "id": "https://ror.org/02avws951" + }, + { + "label": "Fresenius Medical Care (Germany)", + "type": "related", + "id": "https://ror.org/04sk0bj73" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01v5xwf23.json b/rc-v1.43-v2/updates/01v5xwf23.json new file mode 100644 index 000000000..5fedcc812 --- /dev/null +++ b/rc-v1.43-v2/updates/01v5xwf23.json @@ -0,0 +1,146 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1866, + "external_ids": [ + { + "all": [ + "grid.419905.0" + ], + "preferred": "grid.419905.0", + "type": "grid" + }, + { + "all": [ + "0000 0001 0066 4948" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q160746" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01v5xwf23", + "links": [ + { + "type": "website", + "value": "http://www.nestle.ch/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Nestl%C3%A9" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.46299, + "lng": 6.84345, + "name": "Vevey" + }, + "geonames_id": 2658145 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Nestlé (Switzerland)" + } + ], + "relationships": [ + { + "label": "Nestlé (Belgium)", + "type": "child", + "id": "https://ror.org/036yvkz90" + }, + { + "label": "Nestlé (Brazil)", + "type": "child", + "id": "https://ror.org/0498w0n61" + }, + { + "label": "Nestlé (Canada)", + "type": "child", + "id": "https://ror.org/0199b8691" + }, + { + "label": "Nestlé (China)", + "type": "child", + "id": "https://ror.org/03gn7k041" + }, + { + "label": "Nestlé (France)", + "type": "child", + "id": "https://ror.org/05m1qxf57" + }, + { + "label": "Nestlé (Germany)", + "type": "child", + "id": "https://ror.org/00nc2d154" + }, + { + "label": "Nestlé (India)", + "type": "child", + "id": "https://ror.org/04s5pra58" + }, + { + "label": "Nestlé (Netherlands)", + "type": "child", + "id": "https://ror.org/02drjk215" + }, + { + "label": "Nestlé (Singapore)", + "type": "child", + "id": "https://ror.org/03w84vf57" + }, + { + "label": "Nestlé (South Africa)", + "type": "child", + "id": "https://ror.org/008vha608" + }, + { + "label": "Nestlé (Sweden)", + "type": "child", + "id": "https://ror.org/024rmzz69" + }, + { + "label": "Nestlé (United Kingdom)", + "type": "child", + "id": "https://ror.org/00knakc29" + }, + { + "label": "Nestlé (United States)", + "type": "child", + "id": "https://ror.org/0368qtc02" + }, + { + "label": "Nestlé Health Science (United States)", + "type": "child", + "id": "https://ror.org/03y8jvk69" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01v7jrq42.json b/rc-v1.43-v2/updates/01v7jrq42.json new file mode 100644 index 000000000..6336c0887 --- /dev/null +++ b/rc-v1.43-v2/updates/01v7jrq42.json @@ -0,0 +1,111 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1991, + "external_ids": [ + { + "all": [ + "grid.422445.1" + ], + "preferred": "grid.422445.1", + "type": "grid" + }, + { + "all": [ + "0000 0001 0681 5145" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q122141" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01v7jrq42", + "links": [ + { + "type": "website", + "value": "http://www.vodafone.com/content/index.html" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Vodafone" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.40148, + "lng": -1.32471, + "name": "Newbury" + }, + "geonames_id": 2641689 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Vodafone (United Kingdom)" + } + ], + "relationships": [ + { + "label": "Vodafone (Germany)", + "type": "child", + "id": "https://ror.org/044qwkx83" + }, + { + "label": "Vodafone (Greece)", + "type": "child", + "id": "https://ror.org/01cwasn33" + }, + { + "label": "Vodafone (Italy)", + "type": "child", + "id": "https://ror.org/009hdbz24" + }, + { + "label": "Vodafone (Portugal)", + "type": "child", + "id": "https://ror.org/00y7x8f51" + }, + { + "label": "Vodafone (Qatar)", + "type": "child", + "id": "https://ror.org/02ps68973" + }, + { + "label": "Vodafone (Spain)", + "type": "child", + "id": "https://ror.org/00wzstx67" + }, + { + "label": "Vodafone Foundation", + "type": "child", + "id": "https://ror.org/03thdsj80" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01vbgty78.json b/rc-v1.43-v2/updates/01vbgty78.json new file mode 100644 index 000000000..ec395d47d --- /dev/null +++ b/rc-v1.43-v2/updates/01vbgty78.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 3109402, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.49109, + "lng": 2.14079, + "name": "Cerdanyola del Vallès" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1793 4897" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5918072" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.450286.d" + ], + "preferred": "grid.450286.d" + } + ], + "id": "https://ror.org/01vbgty78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ice.csic.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Institut_de_Ci%C3%A8ncies_de_l'Espai" + } + ], + "names": [ + { + "value": "Institute of Space Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut de Ciències de l'Espai", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Instituto de Ciencias del Espacio", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "ICE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Consejo Superior de Investigaciones Científicas", + "type": "parent", + "id": "https://ror.org/02gfc7t72" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01w151e64.json b/rc-v1.43-v2/updates/01w151e64.json new file mode 100644 index 000000000..a148de097 --- /dev/null +++ b/rc-v1.43-v2/updates/01w151e64.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1808, + "external_ids": [ + { + "all": [ + "0000 0004 0399 4581" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q22000442" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.415175.3" + ], + "preferred": "grid.415175.3", + "type": "grid" + } + ], + "id": "https://ror.org/01w151e64", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/bristol-eye-hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Bristol_Eye_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bristol Eye Hospital" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BEH" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01wp2jz98.json b/rc-v1.43-v2/updates/01wp2jz98.json new file mode 100644 index 000000000..75dbf9e80 --- /dev/null +++ b/rc-v1.43-v2/updates/01wp2jz98.json @@ -0,0 +1,158 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2009, + "external_ids": [ + { + "all": [ + "grid.434729.f" + ], + "preferred": "grid.434729.f", + "type": "grid" + }, + { + "all": [ + "0000 0004 0590 2900" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q462592" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01wp2jz98", + "links": [ + { + "type": "website", + "value": "https://www.xfel.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/European_x-ray_free_electron_laser" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 54.05, + "lng": 9.48333, + "name": "Schenefeld" + }, + "geonames_id": 2839763 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "European X-Ray Free-Electron Laser" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "European XFEL" + } + ], + "relationships": [ + { + "label": "Deutsches Elektronen-Synchrotron DESY", + "type": "parent", + "id": "https://ror.org/01js2sh04" + }, + { + "label": "Danish Agency for Science and Higher Education", + "type": "parent", + "id": "https://ror.org/02sptwz63" + }, + { + "label": "Atomic Energy and Alternative Energies Commission", + "type": "parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "National Council for Scientific Research", + "type": "parent", + "id": "https://ror.org/00x9ewr78" + }, + { + "label": "National Research, Development and Innovation Office", + "type": "parent", + "id": "https://ror.org/03g2am276" + }, + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "National Research Council", + "type": "parent", + "id": "https://ror.org/04zaypm56" + }, + { + "label": "National Centre for Nuclear Research", + "type": "parent", + "id": "https://ror.org/00nzsxq20" + }, + { + "label": "Kurchatov Institute", + "type": "parent", + "id": "https://ror.org/00n1nz186" + }, + { + "label": "Ministry of Education, Science, Research and Sport of the Slovak Republic", + "type": "parent", + "id": "https://ror.org/044gwpv05" + }, + { + "label": "Ministerio de Ciencia, Innovación y Universidades", + "type": "parent", + "id": "https://ror.org/05r0vyz12" + }, + { + "label": "Swedish Research Council", + "type": "parent", + "id": "https://ror.org/03zttf063" + }, + { + "label": "UK Research and Innovation", + "type": "parent", + "id": "https://ror.org/001aqnf71" + }, + { + "label": "State Secretariat for Education, Research and Innovation", + "type": "parent", + "id": "https://ror.org/00mt8k932" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01xc6bj88.json b/rc-v1.43-v2/updates/01xc6bj88.json new file mode 100644 index 000000000..cc58088a6 --- /dev/null +++ b/rc-v1.43-v2/updates/01xc6bj88.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2944388, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 53.07582, + "lng": 8.80717, + "name": "Bremen" + } + } + ], + "established": 1950, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9457 1808" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1665037" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.425971.c" + ], + "preferred": "grid.425971.c" + } + ], + "id": "https://ror.org/01xc6bj88", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iwt-bremen.de" + } + ], + "names": [ + { + "value": "Leibniz-Institut für Werkstofforientierte Technologien - IWT", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Leibniz Institute for Materials Engineering", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Leibniz-Institut für Werkstofforientierte Technologien", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "IWT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01y64my43.json b/rc-v1.43-v2/updates/01y64my43.json new file mode 100644 index 000000000..fbe7a442a --- /dev/null +++ b/rc-v1.43-v2/updates/01y64my43.json @@ -0,0 +1,180 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-29", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1846, + "external_ids": [ + { + "all": [ + "100008209", + "100008210", + "100007509" + ], + "preferred": "100008209", + "type": "fundref" + }, + { + "all": [ + "grid.273335.3" + ], + "preferred": "grid.273335.3", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 9887" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q681025" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01y64my43", + "links": [ + { + "type": "website", + "value": "https://www.buffalo.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_at_Buffalo" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.88645, + "lng": -78.87837, + "name": "Buffalo" + }, + "geonames_id": 5110629 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "SUNY Buffalo" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UB" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de Búfalo" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University at Buffalo, State University of New York" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Buffalo" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État de new york à buffalo" + } + ], + "relationships": [ + { + "label": "Advanced Cyberinfrastructure Coordination Ecosystem: Services & Support", + "type": "child", + "id": "https://ror.org/01v6d0b34" + }, + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Buffalo General Medical Center", + "type": "related", + "id": "https://ror.org/04ngv0f69" + }, + { + "label": "Erie County Medical Center", + "type": "related", + "id": "https://ror.org/019e4dr88" + }, + { + "label": "Hauptman-Woodward Medical Research Institute", + "type": "related", + "id": "https://ror.org/02e1cpg76" + }, + { + "label": "Kaleida Health", + "type": "related", + "id": "https://ror.org/02sb3pg33" + }, + { + "label": "Millard Fillmore Suburban Hospital", + "type": "related", + "id": "https://ror.org/01ska0k70" + }, + { + "label": "Roswell Park Cancer Institute", + "type": "related", + "id": "https://ror.org/0499dwk57" + }, + { + "label": "Sisters of Charity Hospital", + "type": "related", + "id": "https://ror.org/02xxgh713" + }, + { + "label": "VA Western New York Healthcare System", + "type": "related", + "id": "https://ror.org/00a1c5n07" + }, + { + "label": "Women & Children's Hospital of Buffalo", + "type": "related", + "id": "https://ror.org/00kg66g91" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01y8j9r24.json b/rc-v1.43-v2/updates/01y8j9r24.json new file mode 100644 index 000000000..25a9f8d2a --- /dev/null +++ b/rc-v1.43-v2/updates/01y8j9r24.json @@ -0,0 +1,115 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.457079.8" + ], + "preferred": "grid.457079.8" + } + ], + "id": "https://ror.org/01y8j9r24", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.dr4.cnrs.fr/" + } + ], + "names": [ + { + "value": "Délégation Ile-de-France Sud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DR04", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "parent", + "id": "https://ror.org/03yz3tz18" + }, + { + "label": "Centre de Génétique Moléculaire", + "type": "child", + "id": "https://ror.org/052ahj806" + }, + { + "label": "Heteroelements and Coordination Chemistry Lab", + "type": "child", + "id": "https://ror.org/02cf97417" + }, + { + "label": "Institut de Biochimie et Biophysique Moléculaire et Cellulaire", + "type": "child", + "id": "https://ror.org/006je8v76" + }, + { + "label": "Laboratoire Archéomatériaux et Prévision de l'Altération", + "type": "child", + "id": "https://ror.org/01xpreq28" + }, + { + "label": "Laboratoire Structure et Dynamique par Résonance Magnétique", + "type": "child", + "id": "https://ror.org/0378sf364" + }, + { + "label": "Laboratoire de Neurobiologie Cellulaire et Moléculaire", + "type": "child", + "id": "https://ror.org/0452rtt80" + }, + { + "label": "Laboratoire de Virologie Moléculaire et Structurale", + "type": "child", + "id": "https://ror.org/01dz5cg19" + }, + { + "label": "Service Interdisciplinaire sur les Systèmes Moléculaires et les Matériaux", + "type": "child", + "id": "https://ror.org/00enct420" + }, + { + "label": "Signalisation, Neurobiologie et Cancer", + "type": "child", + "id": "https://ror.org/01cmdpn82" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01yc7t268.json b/rc-v1.43-v2/updates/01yc7t268.json new file mode 100644 index 000000000..27ea50a1f --- /dev/null +++ b/rc-v1.43-v2/updates/01yc7t268.json @@ -0,0 +1,143 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1853, + "external_ids": [ + { + "all": [ + "100007268", + "100007930", + "100009607", + "100006586", + "100011912" + ], + "preferred": "100007268", + "type": "fundref" + }, + { + "all": [ + "grid.4367.6" + ], + "preferred": "grid.4367.6", + "type": "grid" + }, + { + "all": [ + "0000 0001 2355 7002" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q777403" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01yc7t268", + "links": [ + { + "type": "website", + "value": "http://wustl.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Washington_University_in_St._Louis" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.62727, + "lng": -90.19789, + "name": "St Louis" + }, + "geonames_id": 4407066 + } + ], + "names": [ + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Washington en San Luis" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université Washington à Saint-louis" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "WUSTL" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Washington University in St. Louis" + } + ], + "relationships": [ + { + "label": "Children’s Discovery Institute", + "type": "child", + "id": "https://ror.org/02swjdp46" + }, + { + "label": "Washington University Physicians", + "type": "child", + "id": "https://ror.org/03qn8ky51" + }, + { + "label": "Barnes-Jewish Hospital", + "type": "related", + "id": "https://ror.org/04wyvkr12" + }, + { + "label": "Central Institute for the Deaf", + "type": "related", + "id": "https://ror.org/04ymee833" + }, + { + "label": "St. Louis Children's Hospital", + "type": "related", + "id": "https://ror.org/00qw1qw03" + }, + { + "label": "Washington University Medical Center", + "type": "related", + "id": "https://ror.org/036c27j91" + }, + { + "label": "Taylor Family Institute for Innovative Psychiatric Research", + "type": "child", + "id": "https://ror.org/03x3g5467" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01ydb3330.json b/rc-v1.43-v2/updates/01ydb3330.json new file mode 100644 index 000000000..a2775e12a --- /dev/null +++ b/rc-v1.43-v2/updates/01ydb3330.json @@ -0,0 +1,91 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-04-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2006, + "external_ids": [ + { + "all": [ + "grid.426328.9" + ], + "preferred": "grid.426328.9", + "type": "grid" + }, + { + "all": [ + "Q112513" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01ydb3330", + "links": [ + { + "type": "website", + "value": "http://www.synchrotron-soleil.fr/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/SOLEIL" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + }, + "geonames_id": 3016078 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Soleil Synchrotron" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Synchrotron soleil" + } + ], + "relationships": [ + { + "label": "CEA Saclay", + "type": "parent", + "id": "https://ror.org/03n15ch10" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01ym3w380.json b/rc-v1.43-v2/updates/01ym3w380.json new file mode 100644 index 000000000..adc6f4874 --- /dev/null +++ b/rc-v1.43-v2/updates/01ym3w380.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-02-21", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1997, + "external_ids": [], + "id": "https://ror.org/01ym3w380", + "links": [ + { + "type": "website", + "value": "https://www.globusetlocus.org" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + }, + "geonames_id": 3173435 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Association Globus et Locus" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "GL" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Globus et Locus" + } + ], + "relationships": [ + { + "label": "Fondazione Giannino Bassetti", + "type": "related", + "id": "https://ror.org/027620g33" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01ythxj32.json b/rc-v1.43-v2/updates/01ythxj32.json new file mode 100644 index 000000000..904c3d068 --- /dev/null +++ b/rc-v1.43-v2/updates/01ythxj32.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1957, + "external_ids": [ + { + "all": [ + "0000 0001 2219 916X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100017115" + ], + "preferred": "100017115", + "type": "fundref" + }, + { + "all": [ + "Q782116" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.261277.7" + ], + "preferred": "grid.261277.7", + "type": "grid" + } + ], + "id": "https://ror.org/01ythxj32", + "links": [ + { + "type": "website", + "value": "http://wwwp.oakland.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Oakland_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.68059, + "lng": -83.13382, + "name": "Rochester" + }, + "geonames_id": 5007400 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Oakland University" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "OU" + } + ], + "relationships": [ + { + "label": "Beaumont Hospital, Royal Oak", + "type": "related", + "id": "https://ror.org/03artm726" + }, + { + "label": "Beaumont Hospital, Troy", + "type": "related", + "id": "https://ror.org/05x9ffc66" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01zvsh948.json b/rc-v1.43-v2/updates/01zvsh948.json new file mode 100644 index 000000000..52edfb698 --- /dev/null +++ b/rc-v1.43-v2/updates/01zvsh948.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 3128026, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1793 9217" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q571118" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.482032.f" + ], + "preferred": "grid.482032.f" + } + ], + "id": "https://ror.org/01zvsh948", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://osha.europa.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/European_Agency_for_Safety_and_Health_at_Work" + } + ], + "names": [ + { + "value": "European Agency for Safety and Health at Work", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Agencia Europea para la Seguridad y la Salud en el Trabajo", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "EU-OSHA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "European Union", + "type": "parent", + "id": "https://ror.org/019w4f821" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/01zy2cs03.json b/rc-v1.43-v2/updates/01zy2cs03.json new file mode 100644 index 000000000..698b1823e --- /dev/null +++ b/rc-v1.43-v2/updates/01zy2cs03.json @@ -0,0 +1,115 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-04-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1992, + "external_ids": [ + { + "all": [ + "501100014754" + ], + "preferred": "501100014754", + "type": "fundref" + }, + { + "all": [ + "grid.40602.30" + ], + "preferred": "grid.40602.30", + "type": "grid" + }, + { + "all": [ + "0000 0001 2158 0612" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q883545" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01zy2cs03", + "links": [ + { + "type": "website", + "value": "https://www.hzdr.de" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Helmholtz-Zentrum_Dresden-Rossendorf" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.05089, + "lng": 13.73832, + "name": "Dresden" + }, + "geonames_id": 2935022 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "HZDR" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Helmholtz-Zentrum Dresden-Rossendorf" + } + ], + "relationships": [ + { + "label": "Helmholtz Institute Freiberg for Resource Technology", + "type": "child", + "id": "https://ror.org/04kdb0j04" + }, + { + "label": "Center for Advanced Systems Understanding", + "type": "child", + "id": "https://ror.org/042b69396" + }, + { + "label": "Nationales Centrum für Tumorerkrankungen Dresden", + "type": "child", + "id": "https://ror.org/01zy07c70" + }, + { + "label": "Helmholtz Association of German Research Centres", + "type": "parent", + "id": "https://ror.org/0281dp749" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/020g0rw41.json b/rc-v1.43-v2/updates/020g0rw41.json new file mode 100644 index 000000000..e6565cbc2 --- /dev/null +++ b/rc-v1.43-v2/updates/020g0rw41.json @@ -0,0 +1,104 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0506 8418" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q30262248" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.463866.9" + ], + "preferred": "grid.463866.9", + "type": "grid" + } + ], + "id": "https://ror.org/020g0rw41", + "links": [ + { + "type": "website", + "value": "http://www.g-eau.fr/index.php/fr/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Gestion de l'Eau, Acteurs, Usages" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "G-EAU" + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/020q9r015.json b/rc-v1.43-v2/updates/020q9r015.json new file mode 100644 index 000000000..f0485e22d --- /dev/null +++ b/rc-v1.43-v2/updates/020q9r015.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": 1950, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100018939" + ], + "preferred": "100018939" + }, + { + "type": "grid", + "all": [ + "grid.466622.2" + ], + "preferred": "grid.466622.2" + }, + { + "type": "wikidata", + "all": [ + "Q30263765" + ], + "preferred": "Q30263765" + } + ], + "id": "https://ror.org/020q9r015", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cbma.com.cn" + } + ], + "names": [ + { + "value": "China Building Materials Academy Co., Ltd.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "China Building Materials Academy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中国建筑材料科学研究", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "CBMA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/020qm1538.json b/rc-v1.43-v2/updates/020qm1538.json new file mode 100644 index 000000000..9948d5f0e --- /dev/null +++ b/rc-v1.43-v2/updates/020qm1538.json @@ -0,0 +1,242 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1857, + "external_ids": [ + { + "all": [ + "100008134", + "100019336" + ], + "preferred": "100008134", + "type": "fundref" + }, + { + "all": [ + "grid.253552.6" + ], + "preferred": "grid.253552.6", + "type": "grid" + }, + { + "all": [ + "0000 0001 2219 4764" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q815352" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/020qm1538", + "links": [ + { + "type": "website", + "value": "http://www.calstate.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/California_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 33.76696, + "lng": -118.18923, + "name": "Long Beach" + }, + "geonames_id": 5367929 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CSU" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Cal State" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "California State University System" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal de California" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État de californie" + } + ], + "relationships": [ + { + "label": "California Maritime Academy", + "type": "child", + "id": "https://ror.org/051rrf637" + }, + { + "label": "California Polytechnic State University", + "type": "child", + "id": "https://ror.org/001gpfp45" + }, + { + "label": "California State Polytechnic University", + "type": "child", + "id": "https://ror.org/05by5hm18" + }, + { + "label": "California State University Los Angeles", + "type": "child", + "id": "https://ror.org/0294hxs80" + }, + { + "label": "California State University, Bakersfield", + "type": "child", + "id": "https://ror.org/019ts0j55" + }, + { + "label": "California State University, Channel Islands", + "type": "child", + "id": "https://ror.org/04v097707" + }, + { + "label": "California State University, Chico", + "type": "child", + "id": "https://ror.org/027bzz146" + }, + { + "label": "California State University, Dominguez Hills", + "type": "child", + "id": "https://ror.org/04pyvbw03" + }, + { + "label": "California State University, East Bay", + "type": "child", + "id": "https://ror.org/04jaeba88" + }, + { + "label": "California State University, Fresno", + "type": "child", + "id": "https://ror.org/03enmdz06" + }, + { + "label": "California State University, Fullerton", + "type": "child", + "id": "https://ror.org/02avqqw26" + }, + { + "label": "California State University, Long Beach", + "type": "child", + "id": "https://ror.org/0080fxk18" + }, + { + "label": "California State University, Monterey Bay", + "type": "child", + "id": "https://ror.org/00mjdtw98" + }, + { + "label": "California State University, Northridge", + "type": "child", + "id": "https://ror.org/005f5hv41" + }, + { + "label": "California State University, Sacramento", + "type": "child", + "id": "https://ror.org/03e26wv14" + }, + { + "label": "California State University, San Bernardino", + "type": "child", + "id": "https://ror.org/02n651896" + }, + { + "label": "California State University, San Marcos", + "type": "child", + "id": "https://ror.org/01j8e0j24" + }, + { + "label": "California State University, Stanislaus", + "type": "child", + "id": "https://ror.org/00ejm2g54" + }, + { + "label": "Humboldt State University", + "type": "child", + "id": "https://ror.org/02qt0xs84" + }, + { + "label": "Moss Landing Marine Laboratories", + "type": "child", + "id": "https://ror.org/01c8f2y33" + }, + { + "label": "San Diego State University", + "type": "child", + "id": "https://ror.org/0264fdx42" + }, + { + "label": "San Diego State University, Imperial Valley Campus", + "type": "child", + "id": "https://ror.org/048bd3118" + }, + { + "label": "San Francisco State University", + "type": "child", + "id": "https://ror.org/05ykr0121" + }, + { + "label": "San Jose State University", + "type": "child", + "id": "https://ror.org/04qyvz380" + }, + { + "label": "Sonoma State University", + "type": "child", + "id": "https://ror.org/04wjxkk25" + }, + { + "label": "Agricultural Research Institute", + "type": "child", + "id": "https://ror.org/00m98kt33" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0211r2z47.json b/rc-v1.43-v2/updates/0211r2z47.json new file mode 100644 index 000000000..80ac6ce7b --- /dev/null +++ b/rc-v1.43-v2/updates/0211r2z47.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.469497.1" + ], + "preferred": "grid.469497.1" + }, + { + "type": "wikidata", + "all": [ + "Q30264842" + ], + "preferred": "Q30264842" + } + ], + "id": "https://ror.org/0211r2z47", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ismo.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Institut des Sciences Moléculaires d'Orsay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Molecular Sciences of Orsay", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ISMO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/021xexe56.json b/rc-v1.43-v2/updates/021xexe56.json new file mode 100644 index 000000000..84f25b96b --- /dev/null +++ b/rc-v1.43-v2/updates/021xexe56.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1927, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0623 5425" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462747.4" + ], + "preferred": "grid.462747.4" + } + ], + "id": "https://ror.org/021xexe56", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.lac.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratoire Aimé Cotton", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Aimé Cotton Laboratory", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LAC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/022dvs210.json b/rc-v1.43-v2/updates/022dvs210.json new file mode 100644 index 000000000..6e7642bc8 --- /dev/null +++ b/rc-v1.43-v2/updates/022dvs210.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0479 9817" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "grid.481814.0" + ], + "preferred": "grid.481814.0", + "type": "grid" + } + ], + "id": "https://ror.org/022dvs210", + "links": [ + { + "type": "website", + "value": "http://www.brc.hu/biochemistry.php?change_lang=en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 46.253, + "lng": 20.14824, + "name": "Szeged" + }, + "geonames_id": 715429 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute of Biochemistry" + }, + { + "lang": "hu", + "types": [ + "label" + ], + "value": "Biokémiai Intézet Szegedi Biológiai Kutatóközpont Magyar Tudományos Akadémia" + } + ], + "relationships": [ + { + "label": "HUN-REN Szegedi Biológiai Kutatóközpont", + "type": "parent", + "id": "https://ror.org/016gb1631" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/022fjwc94.json b/rc-v1.43-v2/updates/022fjwc94.json new file mode 100644 index 000000000..ac1667a70 --- /dev/null +++ b/rc-v1.43-v2/updates/022fjwc94.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1846, + "external_ids": [ + { + "all": [ + "grid.431714.4" + ], + "preferred": "grid.431714.4", + "type": "grid" + }, + { + "all": [ + "0000 0001 2294 2152" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1800537" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/022fjwc94", + "links": [ + { + "type": "website", + "value": "http://www.ctsfw.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Concordia_Theological_Seminary" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.1306, + "lng": -85.12886, + "name": "Fort Wayne" + }, + "geonames_id": 4920423 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CTSFW" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Concordia Theological Seminary" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/022rydv31.json b/rc-v1.43-v2/updates/022rydv31.json new file mode 100644 index 000000000..84d900457 --- /dev/null +++ b/rc-v1.43-v2/updates/022rydv31.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2964574, + "geonames_details": { + "country_code": "IE", + "country_name": "Ireland", + "lat": 53.33306, + "lng": -6.24889, + "name": "Dublin" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0510 4503" + ], + "preferred": "0000 0004 0510 4503" + }, + { + "type": "fundref", + "all": [ + "501100012354" + ], + "preferred": "501100012354" + }, + { + "type": "wikidata", + "all": [ + "Q56278286" + ], + "preferred": "Q56278286" + } + ], + "id": "https://ror.org/022rydv31", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fisheriesireland.ie" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Inland_Fisheries_Ireland" + } + ], + "names": [ + { + "value": "Inland Fisheries Ireland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fishing in Ireland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Angling Ireland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Iascach Intíre Éireann", + "types": [ + "label" + ], + "lang": "ga" + }, + { + "value": "IFI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/023hj4e57.json b/rc-v1.43-v2/updates/023hj4e57.json new file mode 100644 index 000000000..aadedaa1a --- /dev/null +++ b/rc-v1.43-v2/updates/023hj4e57.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7677 6809" + ], + "preferred": "0000 0004 7677 6809" + } + ], + "id": "https://ror.org/023hj4e57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.barcelonabeta.org" + } + ], + "names": [ + { + "value": "Barcelonaβeta Brain Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Barcelonabeta Brain Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BBRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Barcelonaβeta Brain Research Center", + "type": "successor", + "id": "https://ror.org/03k4wdb90" + } + ], + "status": "withdrawn", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/023kaz366.json b/rc-v1.43-v2/updates/023kaz366.json new file mode 100644 index 000000000..9ab611b5c --- /dev/null +++ b/rc-v1.43-v2/updates/023kaz366.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3646738, + "geonames_details": { + "country_code": "VE", + "country_name": "Venezuela", + "lat": 10.48801, + "lng": -66.87919, + "name": "Caracas" + } + } + ], + "established": 1987, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5901 7747" + ], + "preferred": "0000 0004 5901 7747" + }, + { + "type": "fundref", + "all": [ + "501100004246" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.469370.f" + ], + "preferred": "grid.469370.f" + }, + { + "type": "wikidata", + "all": [ + "Q29052472" + ], + "preferred": "Q29052472" + } + ], + "id": "https://ror.org/023kaz366", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.provita.org.ve" + } + ], + "names": [ + { + "value": "Provita", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02495e989.json b/rc-v1.43-v2/updates/02495e989.json new file mode 100644 index 000000000..b26595039 --- /dev/null +++ b/rc-v1.43-v2/updates/02495e989.json @@ -0,0 +1,130 @@ +{ + "locations": [ + { + "geonames_id": 2792073, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.66829, + "lng": 4.61443, + "name": "Louvain-la-Neuve" + } + } + ], + "established": 1425, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2294 713X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100007355", + "100007370", + "501100005041", + "501100008135", + "501100005043" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q378134" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.7942.8" + ], + "preferred": "grid.7942.8" + } + ], + "id": "https://ror.org/02495e989", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uclouvain.be" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Universit%C3%A9_catholique_de_Louvain" + } + ], + "names": [ + { + "value": "UCLouvain", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Université catholique de Belgique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université catholique de Louvain", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Catholic University of Louvain", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UCL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "CHU Dinant Godinne UCL Namur", + "type": "related", + "id": "https://ror.org/00ntbvq76" + }, + { + "label": "Cliniques Universitaires Saint-Luc", + "type": "related", + "id": "https://ror.org/03s4khd80" + }, + { + "label": "UCLouvain Saint-Louis Brussels", + "type": "child", + "id": "https://ror.org/02ygek028" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/024mrxd33.json b/rc-v1.43-v2/updates/024mrxd33.json new file mode 100644 index 000000000..93217aa23 --- /dev/null +++ b/rc-v1.43-v2/updates/024mrxd33.json @@ -0,0 +1,138 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-08-30", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1904, + "external_ids": [ + { + "all": [ + "501100000777", + "501100003466", + "501100004294" + ], + "preferred": "501100000777", + "type": "fundref" + }, + { + "all": [ + "grid.9909.9" + ], + "preferred": "grid.9909.9", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 8403" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q503424", + "Q26226240" + ], + "preferred": "Q503424", + "type": "wikidata" + } + ], + "id": "https://ror.org/024mrxd33", + "links": [ + { + "type": "website", + "value": "http://www.leeds.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Leeds" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.79648, + "lng": -1.54785, + "name": "Leeds" + }, + "geonames_id": 2644688 + } + ], + "names": [ + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Prifysgol Leeds" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Leeds" + } + ], + "relationships": [ + { + "label": "Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics", + "type": "child", + "id": "https://ror.org/047d2d387" + }, + { + "label": "Bradford Royal Infirmary", + "type": "related", + "id": "https://ror.org/01ck0pr88" + }, + { + "label": "Leeds General Infirmary", + "type": "related", + "id": "https://ror.org/04hrjej96" + }, + { + "label": "NIHR Leeds Musculoskeletal Biomedical Research Unit", + "type": "related", + "id": "https://ror.org/035f5f914" + }, + { + "label": "St James's University Hospital", + "type": "related", + "id": "https://ror.org/013s89d74" + }, + { + "label": "St. Luke's Hospital", + "type": "related", + "id": "https://ror.org/02ajrkx50" + }, + { + "label": "Timescape Surveys", + "type": "related", + "id": "https://ror.org/00mbaq869" + }, + { + "label": "United Bank of Carbon", + "type": "related", + "id": "https://ror.org/0103we012" + }, + { + "label": "Centre for Climate Change Economics and Policy", + "type": "child", + "id": "https://ror.org/03tsg3y65" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/024nr0776.json b/rc-v1.43-v2/updates/024nr0776.json new file mode 100644 index 000000000..1ca867460 --- /dev/null +++ b/rc-v1.43-v2/updates/024nr0776.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.466086.a" + ], + "preferred": "grid.466086.a", + "type": "grid" + }, + { + "all": [ + "0000 0001 1010 8830" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/024nr0776", + "links": [ + { + "type": "website", + "value": "http://www.katho-nrw.de/en/katho-nrw/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.93333, + "lng": 6.95, + "name": "Cologne" + }, + "geonames_id": 2886242 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Catholic University of Applied Sciences of North Rhine – Westphalia" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "KatHO NRW" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Katholische Hochschule Nordrhein-Westfalen" + } + ], + "relationships": [ + { + "label": "Deutsche Institut für angewandte Pflegeforschung e.V.", + "type": "related", + "id": "https://ror.org/02bjrmf75" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/024pk8k39.json b/rc-v1.43-v2/updates/024pk8k39.json new file mode 100644 index 000000000..b348d835b --- /dev/null +++ b/rc-v1.43-v2/updates/024pk8k39.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2005, + "external_ids": [ + { + "all": [ + "Q30261221" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.461578.9" + ], + "preferred": "grid.461578.9", + "type": "grid" + } + ], + "id": "https://ror.org/024pk8k39", + "links": [ + { + "type": "website", + "value": "http://www.amaliakinderziekenhuis.nl/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + }, + "geonames_id": 2750053 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Amalia Kinderziekenhuis" + } + ], + "relationships": [ + { + "label": "Radboud University Medical Center", + "type": "parent", + "id": "https://ror.org/05wg1m734" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/024z2rq82.json b/rc-v1.43-v2/updates/024z2rq82.json new file mode 100644 index 000000000..3a30b4dd5 --- /dev/null +++ b/rc-v1.43-v2/updates/024z2rq82.json @@ -0,0 +1,118 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1965, + "external_ids": [ + { + "all": [ + "0000 0001 2176 9917" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100003484" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q317032", + "Q2496254" + ], + "preferred": "Q317032", + "type": "wikidata" + }, + { + "all": [ + "grid.411327.2" + ], + "preferred": "grid.411327.2", + "type": "grid" + } + ], + "id": "https://ror.org/024z2rq82", + "links": [ + { + "type": "website", + "value": "http://www.uni-duesseldorf.de/home/en/home.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_D%C3%BCsseldorf" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.22172, + "lng": 6.77616, + "name": "Düsseldorf" + }, + "geonames_id": 2934246 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Heinrich Heine University Düsseldorf" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Heinrich-Heine-Universität Düsseldorf" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "HHU" + } + ], + "relationships": [ + { + "label": "Düsseldorf University Hospital", + "type": "related", + "id": "https://ror.org/006k2kk72" + }, + { + "label": "Cluster of Excellence on Plant Sciences", + "type": "child", + "id": "https://ror.org/034waa237" + }, + { + "label": "Deutsches Diabetes-Zentrum e.V.", + "type": "child", + "id": "https://ror.org/04ews3245" + }, + { + "label": "CRC183 - Entangled States of Matter", + "type": "child", + "id": "https://ror.org/015wtqn87" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0259fwx54.json b/rc-v1.43-v2/updates/0259fwx54.json new file mode 100644 index 000000000..5e5881c1c --- /dev/null +++ b/rc-v1.43-v2/updates/0259fwx54.json @@ -0,0 +1,117 @@ +{ + "locations": [ + { + "geonames_id": 2886242, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.93333, + "lng": 6.95, + "name": "Cologne" + } + } + ], + "established": 1973, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2167 4053" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1204536" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.461646.7" + ], + "preferred": "grid.461646.7" + } + ], + "id": "https://ror.org/0259fwx54", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.zbmed.de" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/German_National_Library_of_Medicine" + } + ], + "names": [ + { + "value": "ZB MED - Information Centre for Life Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "German National Library of Medicine (ZB MED) - Information Centre for Life Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Deutsche Zentralbibliothek für Medizin (ZB MED) - Informationszentrum Lebenswissenschaften", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "German National Library of Medicine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Deutsche Zentralbibliothek für Medizin", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ZBMED - Informationszentrum Lebenswissenschaften", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "ZB MED", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/025ecp212.json b/rc-v1.43-v2/updates/025ecp212.json new file mode 100644 index 000000000..5de1ebaa7 --- /dev/null +++ b/rc-v1.43-v2/updates/025ecp212.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2004, + "external_ids": [ + { + "all": [ + "100011417" + ], + "preferred": "100011417", + "type": "fundref" + }, + { + "all": [ + "grid.451398.2" + ], + "preferred": "grid.451398.2", + "type": "grid" + } + ], + "id": "https://ror.org/025ecp212", + "links": [ + { + "type": "website", + "value": "http://www.ukcrc.org/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "UK Clinical Research Collaboration" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UKCRC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "United Kingdom Clinical Research Collaboration" + } + ], + "relationships": [ + { + "label": "Communicating Diet and Activity Research", + "type": "related", + "id": "https://ror.org/05tamah23" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/025r5qe02.json b/rc-v1.43-v2/updates/025r5qe02.json new file mode 100644 index 000000000..cf7c6c611 --- /dev/null +++ b/rc-v1.43-v2/updates/025r5qe02.json @@ -0,0 +1,125 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-06-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1870, + "external_ids": [ + { + "all": [ + "100007126", + "100008568" + ], + "preferred": "100007126", + "type": "fundref" + }, + { + "all": [ + "grid.264484.8" + ], + "preferred": "grid.264484.8", + "type": "grid" + }, + { + "all": [ + "0000 0001 2189 1568" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q617433" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/025r5qe02", + "links": [ + { + "type": "website", + "value": "http://www.syr.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Syracuse_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.04812, + "lng": -76.14742, + "name": "Syracuse" + }, + "geonames_id": 5140405 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Syracuse University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de Siracusa" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de syracuse" + } + ], + "relationships": [ + { + "label": "Qualitative Data Repository", + "type": "child", + "id": "https://ror.org/014trz974" + }, + { + "label": "Syracuse VA Medical Center", + "type": "related", + "id": "https://ror.org/0332k3m42" + }, + { + "label": "Hubbard Brook Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/00mkh7345" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0262br971.json b/rc-v1.43-v2/updates/0262br971.json new file mode 100644 index 000000000..99515a740 --- /dev/null +++ b/rc-v1.43-v2/updates/0262br971.json @@ -0,0 +1,87 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 0455 2011" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q30261417" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.462283.9" + ], + "preferred": "grid.462283.9", + "type": "grid" + } + ], + "id": "https://ror.org/0262br971", + "links": [ + { + "type": "website", + "value": "https://umr-innovation.cirad.fr/en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Innovation and Development in Agriculture and Food" + } + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/027a33v57.json b/rc-v1.43-v2/updates/027a33v57.json new file mode 100644 index 000000000..b8d9771b6 --- /dev/null +++ b/rc-v1.43-v2/updates/027a33v57.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1906, + "external_ids": [ + { + "all": [ + "0000 0004 0399 5138" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q22909562" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.415174.2" + ], + "preferred": "grid.415174.2", + "type": "grid" + } + ], + "id": "https://ror.org/027a33v57", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/university-of-bristol-dental-hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Bristol_Dental_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University Of Bristol Dental Hospital" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/027jsza11.json b/rc-v1.43-v2/updates/027jsza11.json new file mode 100644 index 000000000..bd58482f6 --- /dev/null +++ b/rc-v1.43-v2/updates/027jsza11.json @@ -0,0 +1,97 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1981, + "external_ids": [ + { + "all": [ + "100018263" + ], + "preferred": "100018263", + "type": "fundref" + }, + { + "all": [ + "grid.412834.8" + ], + "preferred": "grid.412834.8", + "type": "grid" + }, + { + "all": [ + "0000 0000 9152 1805" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7928229", + "Q6734116", + "Q30633403" + ], + "preferred": "Q7928229", + "type": "wikidata" + } + ], + "id": "https://ror.org/027jsza11", + "links": [ + { + "type": "website", + "value": "http://www.vidyasagar.ac.in/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Vidyasagar_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 22.42114, + "lng": 87.32257, + "name": "Medinīpur" + }, + "geonames_id": 1263220 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Vidyasagar University" + }, + { + "lang": "bn", + "types": [ + "label" + ], + "value": "বিদ্যাসাগর বিশ্ববিদ্যালয়" + } + ], + "relationships": [ + { + "label": "Panskura Banamali College", + "type": "related", + "id": "https://ror.org/01hn2pk88" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/027m9bs27.json b/rc-v1.43-v2/updates/027m9bs27.json new file mode 100644 index 000000000..42e6497ac --- /dev/null +++ b/rc-v1.43-v2/updates/027m9bs27.json @@ -0,0 +1,186 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1824, + "external_ids": [ + { + "all": [ + "501100000770", + "100007545", + "100007546", + "501100000584", + "501100006628", + "100012371" + ], + "preferred": "501100000770", + "type": "fundref" + }, + { + "all": [ + "grid.5379.8" + ], + "preferred": "grid.5379.8", + "type": "grid" + }, + { + "all": [ + "0000 0001 2166 2407" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q230899" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/027m9bs27", + "links": [ + { + "type": "website", + "value": "http://www.manchester.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Manchester" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.48095, + "lng": -2.23743, + "name": "Manchester" + }, + "geonames_id": 2643123 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Manchester University" + }, + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Prifysgol Manceinion" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Manchester" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Manchester Institute of Science and Technology" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Victoria University of Manchester" + } + ], + "relationships": [ + { + "label": "Manchester School of Architecture", + "type": "child", + "id": "https://ror.org/03xxxrq06" + }, + { + "label": "Wellcome Centre for Cell-Matrix Research", + "type": "child", + "id": "https://ror.org/0094tm228" + }, + { + "label": "Centre for Epidemiology Versus Arthritis", + "type": "child", + "id": "https://ror.org/05eev2q71" + }, + { + "label": "Lancashire Teaching Hospitals NHS Foundation Trust", + "type": "related", + "id": "https://ror.org/02j7n9748" + }, + { + "label": "Manchester Royal Eye Hospital", + "type": "related", + "id": "https://ror.org/04xtpk854" + }, + { + "label": "Manchester Royal Infirmary", + "type": "related", + "id": "https://ror.org/03kr30n36" + }, + { + "label": "Manchester University NHS Foundation Trust", + "type": "related", + "id": "https://ror.org/00he80998" + }, + { + "label": "North Manchester General Hospital", + "type": "related", + "id": "https://ror.org/02xesw687" + }, + { + "label": "Royal Manchester Children's Hospital", + "type": "related", + "id": "https://ror.org/052vjje65" + }, + { + "label": "Salford Royal Hospital", + "type": "related", + "id": "https://ror.org/027rkpb34" + }, + { + "label": "Trafford General Hospital", + "type": "related", + "id": "https://ror.org/02snwfx66" + }, + { + "label": "University Dental Hospital of Manchester", + "type": "related", + "id": "https://ror.org/019bxes45" + }, + { + "label": "Cancer Research UK Manchester Centre", + "type": "child", + "id": "https://ror.org/033svsm10" + }, + { + "label": "Cancer Imaging Centre", + "type": "child", + "id": "https://ror.org/023a2er20" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/027t90e82.json b/rc-v1.43-v2/updates/027t90e82.json new file mode 100644 index 000000000..764da1cb9 --- /dev/null +++ b/rc-v1.43-v2/updates/027t90e82.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 620127, + "geonames_details": { + "country_code": "BY", + "country_name": "Belarus", + "lat": 55.1904, + "lng": 30.2049, + "name": "Vitebsk" + } + } + ], + "established": 1924, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5928 8379" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q4112332" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.445309.f" + ], + "preferred": "grid.445309.f" + } + ], + "id": "https://ror.org/027t90e82", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vsavm.by" + } + ], + "names": [ + { + "value": "Vitebsk State Academy of Veterinary Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Віцебская дзяржаўная акадэмія ветэрынарнай медыцыны", + "types": [ + "label" + ], + "lang": "be" + }, + { + "value": "VGAVM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/027yspv17.json b/rc-v1.43-v2/updates/027yspv17.json new file mode 100644 index 000000000..2adeaad95 --- /dev/null +++ b/rc-v1.43-v2/updates/027yspv17.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3109718, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.46472, + "lng": -3.80444, + "name": "Santander" + } + } + ], + "established": 1973, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30292337" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.438705.d" + ], + "preferred": "grid.438705.d" + } + ], + "id": "https://ror.org/027yspv17", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.tinamenor.es/" + } + ], + "names": [ + { + "value": "Tinamenor (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02805zw73.json b/rc-v1.43-v2/updates/02805zw73.json new file mode 100644 index 000000000..09c0099f1 --- /dev/null +++ b/rc-v1.43-v2/updates/02805zw73.json @@ -0,0 +1,73 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-06-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1875, + "external_ids": [ + { + "all": [ + "grid.459275.8" + ], + "preferred": "grid.459275.8", + "type": "grid" + } + ], + "id": "https://ror.org/02805zw73", + "links": [ + { + "type": "website", + "value": "http://www.csss-iugs.ca/details-article-hitorique/detail/2008-11-24/d-youville-le-premier-hopital-de-sherbrooke" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.40008, + "lng": -71.89908, + "name": "Sherbrooke" + }, + "geonames_id": 6146143 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hôpital d'Youville de Sherbrooke" + } + ], + "relationships": [ + { + "label": "Centre intégré de santé et de services sociaux de Chaudière-Appalaches", + "type": "parent", + "id": "https://ror.org/05ghbjx71" + }, + { + "label": "Cégep Beauce-Appalaches", + "type": "child", + "id": "https://ror.org/05sz3st37" + }, + { + "label": "Cégep Beauce-Appalaches", + "type": "parent", + "id": "https://ror.org/05sz3st37" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/028696h48.json b/rc-v1.43-v2/updates/028696h48.json new file mode 100644 index 000000000..e2b6481b3 --- /dev/null +++ b/rc-v1.43-v2/updates/028696h48.json @@ -0,0 +1,72 @@ +{ + "locations": [ + { + "geonames_id": 2761369, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.20849, + "lng": 16.37208, + "name": "Vienna" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/028696h48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bioimaging-austria.at" + } + ], + "names": [ + { + "value": "Austrian BioImaging/CMI", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Austrian BioImaging Correlated Multimodal Imaging (CMI)", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Vienna BioCenter Core Facilities", + "type": "parent", + "id": "https://ror.org/01w64ht88" + }, + { + "label": "Euro-BioImaging ERIC", + "type": "related", + "id": "https://ror.org/05d78xc36" + }, + { + "label": "Medical University of Vienna", + "type": "related", + "id": "https://ror.org/05n3x4p02" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0289cxp23.json b/rc-v1.43-v2/updates/0289cxp23.json new file mode 100644 index 000000000..e60e2ffda --- /dev/null +++ b/rc-v1.43-v2/updates/0289cxp23.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2510409, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.8581, + "lng": -4.02263, + "name": "Toledo" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1795 0563" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.413514.6" + ], + "preferred": "grid.413514.6" + } + ], + "id": "https://ror.org/0289cxp23", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cht.es/cht/cm/cht/tkContent?pgseed=1493207263184&idContent=6060&locale=es_ES&textOnly=false" + } + ], + "names": [ + { + "value": "Hospital Virgen de la Salud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CHT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Complejo Hospitalario Universitario de Toledo", + "type": "parent", + "id": "https://ror.org/04q4ppz72" + }, + { + "label": "Hospital Universitario de Toledo", + "type": "successor", + "id": "https://ror.org/00wxgxz56" + } + ], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/028rypz17.json b/rc-v1.43-v2/updates/028rypz17.json new file mode 100644 index 000000000..980cb3a45 --- /dev/null +++ b/rc-v1.43-v2/updates/028rypz17.json @@ -0,0 +1,134 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1971, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2171 2558" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100007486" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1480643" + ], + "preferred": "Q1480643" + }, + { + "type": "grid", + "all": [ + "grid.5842.b" + ], + "preferred": "grid.5842.b" + } + ], + "id": "https://ror.org/028rypz17", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.u-psud.fr/en/index.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Paris-Sud" + } + ], + "names": [ + { + "value": "University of Paris-Sud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Paris XI", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université Paris-Sud", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "Universitat de París Sud", + "types": [ + "label" + ], + "lang": "ca" + } + ], + "relationships": [ + { + "label": "Hôpital Marie Lannelongue", + "type": "related", + "id": "https://ror.org/02ndr3r66" + }, + { + "label": "Biology of Extremophiles Laboratory", + "type": "child", + "id": "https://ror.org/036mest28" + }, + { + "label": "Stabilité génétique et oncogenèse", + "type": "child", + "id": "https://ror.org/055s8hs34" + }, + { + "label": "Geosciences Paris Sud", + "type": "child", + "id": "https://ror.org/03s92mv58" + }, + { + "label": "Laboratory Signaling and Cardiovascular Pathophysiology", + "type": "child", + "id": "https://ror.org/04bkzce69" + }, + { + "label": "University of Paris-Saclay", + "type": "successor", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "inactive", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/028vrr082.json b/rc-v1.43-v2/updates/028vrr082.json new file mode 100644 index 000000000..d30b438fb --- /dev/null +++ b/rc-v1.43-v2/updates/028vrr082.json @@ -0,0 +1,98 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1911, + "external_ids": [ + { + "all": [ + "100007246", + "100009870", + "100005150" + ], + "preferred": "100007246", + "type": "fundref" + }, + { + "all": [ + "grid.467419.9" + ], + "preferred": "grid.467419.9", + "type": "grid" + }, + { + "all": [ + "Q695087" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/028vrr082", + "links": [ + { + "type": "website", + "value": "http://www.mars.com/global/index.aspx" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Mars,_Incorporated" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.93428, + "lng": -77.17748, + "name": "McLean" + }, + "geonames_id": 4772354 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Mars (United States)" + } + ], + "relationships": [ + { + "label": "Mars (France)", + "type": "child", + "id": "https://ror.org/01b1e4b88" + }, + { + "label": "Mars (United Kingdom)", + "type": "child", + "id": "https://ror.org/01qa19b44" + }, + { + "label": "Wisdom Health (United States)", + "type": "child", + "id": "https://ror.org/02538qk16" + }, + { + "label": "Waltham Centre for Pet Nutrition", + "type": "child", + "id": "https://ror.org/00p7f7z86" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/029gxzx35.json b/rc-v1.43-v2/updates/029gxzx35.json new file mode 100644 index 000000000..24d4cf0bc --- /dev/null +++ b/rc-v1.43-v2/updates/029gxzx35.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3002650, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.78889, + "lng": 2.27078, + "name": "Le Plessis-Robinson" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0266 7990" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.417823.b" + ], + "preferred": "grid.417823.b" + } + ], + "id": "https://ror.org/029gxzx35", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ccml.fr/en/index_en.php" + } + ], + "names": [ + { + "value": "Centre Chirurgical Marie Lannelongue", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CCML", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02ag0aq56.json b/rc-v1.43-v2/updates/02ag0aq56.json new file mode 100644 index 000000000..763d3dfdf --- /dev/null +++ b/rc-v1.43-v2/updates/02ag0aq56.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2509402, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 38.61365, + "lng": -1.11468, + "name": "Yecla" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8337 666X" + ], + "preferred": "0000 0004 8337 666X" + }, + { + "type": "grid", + "all": [ + "grid.432405.4" + ], + "preferred": "grid.432405.4" + } + ], + "id": "https://ror.org/02ag0aq56", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cetem.es" + } + ], + "names": [ + { + "value": "Centro Tecnológico del Mueble y la Madera de la Región de Murcia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Technological Centre of Furniture and Wood of the Region of Murcia", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CETEM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02ahxdd04.json b/rc-v1.43-v2/updates/02ahxdd04.json new file mode 100644 index 000000000..8d071e5aa --- /dev/null +++ b/rc-v1.43-v2/updates/02ahxdd04.json @@ -0,0 +1,120 @@ +{ + "locations": [ + { + "geonames_id": 4994358, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.96336, + "lng": -85.66809, + "name": "Grand Rapids" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0406 3236" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100001347" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q7575297" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.416230.2" + ], + "preferred": "grid.416230.2" + } + ], + "id": "https://ror.org/02ahxdd04", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.spectrumhealth.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Spectrum_Health" + } + ], + "names": [ + { + "value": "Spectrum Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spectrum Health System", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Corewell Health Butterworth Hospital", + "type": "child", + "id": "https://ror.org/05x643e19" + }, + { + "label": "Helen DeVos Children's Hospital", + "type": "child", + "id": "https://ror.org/03bk8p931" + }, + { + "label": "Corewell Health Blodgett Hospital", + "type": "child", + "id": "https://ror.org/00qy68j92" + }, + { + "label": "Corewell Health Reed City Hospital", + "type": "child", + "id": "https://ror.org/04xcq9q51" + }, + { + "label": "Corewell Health Zeeland Hospital", + "type": "child", + "id": "https://ror.org/053jm8142" + }, + { + "label": "Corewell Health", + "type": "successor", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02aj13c28.json b/rc-v1.43-v2/updates/02aj13c28.json new file mode 100644 index 000000000..462d91d8b --- /dev/null +++ b/rc-v1.43-v2/updates/02aj13c28.json @@ -0,0 +1,94 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2009, + "external_ids": [ + { + "all": [ + "100013110" + ], + "preferred": "100013110", + "type": "fundref" + }, + { + "all": [ + "grid.424048.e" + ], + "preferred": "grid.424048.e", + "type": "grid" + }, + { + "all": [ + "0000 0001 1090 3682" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q314578", + "Q316122" + ], + "preferred": "Q314578", + "type": "wikidata" + } + ], + "id": "https://ror.org/02aj13c28", + "links": [ + { + "type": "website", + "value": "https://www.helmholtz-berlin.de/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Helmholtz-Zentrum_Berlin" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + }, + "geonames_id": 2950159 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Helmholtz-Zentrum Berlin für Materialien und Energie" + } + ], + "relationships": [ + { + "label": "Helmholtz Association of German Research Centres", + "type": "parent", + "id": "https://ror.org/0281dp749" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02am8se85.json b/rc-v1.43-v2/updates/02am8se85.json new file mode 100644 index 000000000..bec100374 --- /dev/null +++ b/rc-v1.43-v2/updates/02am8se85.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2859147, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.25, + "lng": 11.56667, + "name": "Oberschleißheim" + } + } + ], + "established": 1979, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.506439.d" + ], + "preferred": "grid.506439.d" + } + ], + "id": "https://ror.org/02am8se85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.schweine.vetmed.uni-muenchen.de/index.html" + } + ], + "names": [ + { + "value": "Klinik für Schweine", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Zentrum für Klinische Tiermedizin", + "type": "parent", + "id": "https://ror.org/02qqvpd39" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02aqatz67.json b/rc-v1.43-v2/updates/02aqatz67.json new file mode 100644 index 000000000..f712847d9 --- /dev/null +++ b/rc-v1.43-v2/updates/02aqatz67.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 1790492, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 27.85, + "lng": 112.9, + "name": "Xiangtan" + } + } + ], + "established": 1936, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6844 1494" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q55454149" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.497222.8" + ], + "preferred": "grid.497222.8" + } + ], + "id": "https://ror.org/02aqatz67", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.xemc.com.cn" + } + ], + "names": [ + { + "value": "Xiangtan Electric Manufacturing Group (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Xiangtan Electric Manufacturing Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Xiangtan Electric Manufacturing Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Xiangtan Electric Manufacturing Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "湘电集团", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "湘潭电机股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "XEMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02aqsxs83.json b/rc-v1.43-v2/updates/02aqsxs83.json new file mode 100644 index 000000000..69e5fb7e6 --- /dev/null +++ b/rc-v1.43-v2/updates/02aqsxs83.json @@ -0,0 +1,131 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-09-14", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1890, + "external_ids": [ + { + "all": [ + "100007926", + "100008937", + "100008271", + "100013827" + ], + "preferred": "100007926", + "type": "fundref" + }, + { + "all": [ + "grid.266900.b" + ], + "preferred": "grid.266900.b", + "type": "grid" + }, + { + "all": [ + "0000 0004 0447 0018" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q640652", + "Q39056078" + ], + "preferred": "Q640652", + "type": "wikidata" + } + ], + "id": "https://ror.org/02aqsxs83", + "links": [ + { + "type": "website", + "value": "http://www.ou.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Oklahoma" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 35.22257, + "lng": -97.43948, + "name": "Norman" + }, + "geonames_id": 4543762 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UO" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de Oklahoma" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Oklahoma" + } + ], + "relationships": [ + { + "label": "Oklahoma Space Grant Consortium", + "type": "child", + "id": "https://ror.org/020xgge28" + }, + { + "label": "South Central Climate Adaptation Science Center", + "type": "child", + "id": "https://ror.org/05066y189" + }, + { + "label": "Oklahoma City VA Medical Center", + "type": "related", + "id": "https://ror.org/010md9d18" + }, + { + "label": "University of Oklahoma Health Sciences Center", + "type": "related", + "id": "https://ror.org/0457zbj98" + }, + { + "label": "University of Oklahoma Medical Center", + "type": "related", + "id": "https://ror.org/01w8whh21" + }, + { + "label": "University of Oklahoma - Tulsa", + "type": "child", + "id": "https://ror.org/04g1a0w27" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02aswte26.json b/rc-v1.43-v2/updates/02aswte26.json new file mode 100644 index 000000000..7c1ccb864 --- /dev/null +++ b/rc-v1.43-v2/updates/02aswte26.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1860, + "external_ids": [ + { + "all": [ + "grid.449071.f" + ], + "preferred": "grid.449071.f", + "type": "grid" + }, + { + "all": [ + "0000 0004 0445 3429" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q6747552" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02aswte26", + "links": [ + { + "type": "website", + "value": "http://www.manchester.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Manchester_University_(Indiana)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.1306, + "lng": -85.12886, + "name": "Fort Wayne" + }, + "geonames_id": 4920423 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MU" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Manchester College" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Manchester University" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02avhnb77.json b/rc-v1.43-v2/updates/02avhnb77.json new file mode 100644 index 000000000..348c6416f --- /dev/null +++ b/rc-v1.43-v2/updates/02avhnb77.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-11", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1967, + "external_ids": [ + { + "all": [ + "100013537" + ], + "preferred": "100013537", + "type": "fundref" + }, + { + "all": [ + "grid.431949.2" + ], + "preferred": "grid.431949.2", + "type": "grid" + }, + { + "all": [ + "0000 0004 0379 4459" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1335379" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02avhnb77", + "links": [ + { + "type": "website", + "value": "https://www.emeraldgrouppublishing.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Emerald_Group_Publishing" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.84861, + "lng": -1.83857, + "name": "Bingley" + }, + "geonames_id": 2655642 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Emerald Group Publishing (United Kingdom)" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "MCB UP Ltd" + } + ], + "relationships": [ + { + "label": "The Emerald Foundation", + "type": "child", + "id": "https://ror.org/031tb8x29" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02by8jy67.json b/rc-v1.43-v2/updates/02by8jy67.json new file mode 100644 index 000000000..d02832a47 --- /dev/null +++ b/rc-v1.43-v2/updates/02by8jy67.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3435910, + "geonames_details": { + "country_code": "AR", + "country_name": "Argentina", + "lat": -34.61315, + "lng": -58.37723, + "name": "Buenos Aires" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.502315.0" + ], + "preferred": "grid.502315.0" + }, + { + "type": "wikidata", + "all": [ + "Q61931966" + ], + "preferred": "Q61931966" + } + ], + "id": "https://ror.org/02by8jy67", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.typa.org.ar" + } + ], + "names": [ + { + "value": "Fundación TyPA", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Teoría y Práctica de las Artes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TyPA Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02byv2846.json b/rc-v1.43-v2/updates/02byv2846.json new file mode 100644 index 000000000..aaf5c165b --- /dev/null +++ b/rc-v1.43-v2/updates/02byv2846.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 9697" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463850.c" + ], + "preferred": "grid.463850.c" + } + ], + "id": "https://ror.org/02byv2846", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.fast.u-psud.fr" + } + ], + "names": [ + { + "value": "Fluides, Automatique et Systèmes Thermiques", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FAST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02caz1f24.json b/rc-v1.43-v2/updates/02caz1f24.json new file mode 100644 index 000000000..c5fb62fae --- /dev/null +++ b/rc-v1.43-v2/updates/02caz1f24.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1832, + "external_ids": [ + { + "all": [ + "501100000374" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.431398.4" + ], + "preferred": "grid.431398.4", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 8489" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q919715" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02caz1f24", + "links": [ + { + "type": "website", + "value": "http://bma.org.uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/British_Medical_Association" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BMA" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "British Medical Association" + } + ], + "relationships": [ + { + "label": "BMJ Publishing Group (United Kingdom)", + "type": "child", + "id": "https://ror.org/05m5x8198" + }, + { + "label": "BMA Foundation for Medical Research", + "type": "child", + "id": "https://ror.org/03hvdbf98" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02chvqy57.json b/rc-v1.43-v2/updates/02chvqy57.json new file mode 100644 index 000000000..4c243e26f --- /dev/null +++ b/rc-v1.43-v2/updates/02chvqy57.json @@ -0,0 +1,106 @@ +{ + "locations": [ + { + "geonames_id": 2972315, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.60426, + "lng": 1.44367, + "name": "Toulouse" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0384 4620" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q51782431" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503277.4" + ], + "preferred": "grid.503277.4" + } + ], + "id": "https://ror.org/02chvqy57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.legos.omp.eu" + } + ], + "names": [ + { + "value": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory of Space Geophysical and Oceanographic Studies", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LEGOS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Centre National d'Études Spatiales", + "type": "parent", + "id": "https://ror.org/04h1h0y33" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02cptmd52.json b/rc-v1.43-v2/updates/02cptmd52.json new file mode 100644 index 000000000..db1d6bdbf --- /dev/null +++ b/rc-v1.43-v2/updates/02cptmd52.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51785613" + ], + "preferred": "Q51785613" + } + ], + "id": "https://ror.org/02cptmd52", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://agronomie.versailles-grignon.hub.inrae.fr" + } + ], + "names": [ + { + "value": "Agronomie", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02cr20t12.json b/rc-v1.43-v2/updates/02cr20t12.json new file mode 100644 index 000000000..869e1e8c9 --- /dev/null +++ b/rc-v1.43-v2/updates/02cr20t12.json @@ -0,0 +1,110 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1712, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q750403" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.432858.0" + ], + "preferred": "grid.432858.0" + } + ], + "id": "https://ror.org/02cr20t12", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bne.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Biblioteca_Nacional_de_Espa%C3%B1a" + } + ], + "names": [ + { + "value": "Biblioteca Nacional de España", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Palace Public Library", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biblioteca Pública de Palacio", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biblioteca Nacional d'Espanya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Espainiako Liburutegi Nazionala", + "types": [ + "label" + ], + "lang": "eu" + }, + { + "value": "National Library of Spain", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "BNE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02cte4b68.json b/rc-v1.43-v2/updates/02cte4b68.json new file mode 100644 index 000000000..91ebb6bc4 --- /dev/null +++ b/rc-v1.43-v2/updates/02cte4b68.json @@ -0,0 +1,596 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0626 358X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100017217" + ], + "preferred": "501100017217" + }, + { + "type": "wikidata", + "all": [ + "Q3152386" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457012.5" + ], + "preferred": "grid.457012.5" + } + ], + "id": "https://ror.org/02cte4b68", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/inc/index.htm" + } + ], + "names": [ + { + "value": "Institut de Chimie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "CNRT Matériaux", + "type": "child", + "id": "https://ror.org/05jw85995" + }, + { + "label": "Catalysis and Spectrochemistry Laboratory", + "type": "child", + "id": "https://ror.org/01gan4k05" + }, + { + "label": "Centre de Recherches sur les Macromolécules Végétales", + "type": "child", + "id": "https://ror.org/0003ege03" + }, + { + "label": "Ceramic Synthesis and Functionalization Laboratory", + "type": "child", + "id": "https://ror.org/04nd4kk51" + }, + { + "label": "Chemistry And Interdisciplinarité, Synthesis, Analyze, Modeling", + "type": "child", + "id": "https://ror.org/04ysg2a58" + }, + { + "label": "Chimie de la Matière Condensée de Paris", + "type": "child", + "id": "https://ror.org/028ta1f94" + }, + { + "label": "Chimie et Biologie des Membranes et des Nanoobjects", + "type": "child", + "id": "https://ror.org/03jtzcc30" + }, + { + "label": "Conditions Extrêmes et Matériaux Haute Température et Irradiation", + "type": "child", + "id": "https://ror.org/02zs48f23" + }, + { + "label": "Département de Chimie Moléculaire", + "type": "child", + "id": "https://ror.org/010rs2a38" + }, + { + "label": "East Paris Institute of Chemistry and Materials Science", + "type": "child", + "id": "https://ror.org/04c3cen15" + }, + { + "label": "Gulliver", + "type": "child", + "id": "https://ror.org/058z3vf87" + }, + { + "label": "Institut Charles Gerhardt", + "type": "child", + "id": "https://ror.org/028wq3277" + }, + { + "label": "Institut Charles Sadron", + "type": "child", + "id": "https://ror.org/05whrjc31" + }, + { + "label": "Institut Européen de Chimie et Biologie", + "type": "child", + "id": "https://ror.org/04agqs597" + }, + { + "label": "Institut Européen des Membranes", + "type": "child", + "id": "https://ror.org/04nmj9827" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut Jean Lamour", + "type": "child", + "id": "https://ror.org/05k1smh27" + }, + { + "label": "Institut Lavoisier de Versailles", + "type": "child", + "id": "https://ror.org/05mzd8v39" + }, + { + "label": "Institut Parisien de Chimie Moléculaire", + "type": "child", + "id": "https://ror.org/04qwfwm19" + }, + { + "label": "Institut de Chimie Moléculaire de Grenoble", + "type": "child", + "id": "https://ror.org/04g26vc28" + }, + { + "label": "Institut de Chimie Radicalaire", + "type": "child", + "id": "https://ror.org/000d5zy28" + }, + { + "label": "Institut de Chimie de Nice", + "type": "child", + "id": "https://ror.org/000pvc513" + }, + { + "label": "Institut de Chimie de Strasbourg", + "type": "child", + "id": "https://ror.org/00se7bf12" + }, + { + "label": "Institut de Chimie de la Matière Condensée de Bordeaux", + "type": "child", + "id": "https://ror.org/01nw6qk38" + }, + { + "label": "Institut de Chimie des Milieux et des Matériaux de Poitiers", + "type": "child", + "id": "https://ror.org/001n7ee52" + }, + { + "label": "Institut de Chimie et Biochimie Moléculaires et Supramoléculaires", + "type": "child", + "id": "https://ror.org/00gj33s30" + }, + { + "label": "Institut de Recherche de Chimie Paris", + "type": "child", + "id": "https://ror.org/02s6m8n84" + }, + { + "label": "Institut de Science et d'Ingénierie Supramoléculaires", + "type": "child", + "id": "https://ror.org/00xts7d02" + }, + { + "label": "Institut de Sciences des Matériaux de Mulhouse", + "type": "child", + "id": "https://ror.org/012wxdw12" + }, + { + "label": "Institut des Biomolécules Max Mousseron", + "type": "child", + "id": "https://ror.org/05d1e6v30" + }, + { + "label": "Institut des Matériaux Jean Rouxel", + "type": "child", + "id": "https://ror.org/00cqpd580" + }, + { + "label": "Institut des Molécules et Matériaux du Mans", + "type": "child", + "id": "https://ror.org/03a9gd656" + }, + { + "label": "Institut des Sciences Analytiques et de Physico-Chimie pour l'Environnement et les Matériaux", + "type": "child", + "id": "https://ror.org/00222yk13" + }, + { + "label": "Institut des Sciences Chimiques de Rennes", + "type": "child", + "id": "https://ror.org/00adwkx90" + }, + { + "label": "Institut des Sciences Moléculaires de Marseille", + "type": "child", + "id": "https://ror.org/05xr3b330" + }, + { + "label": "Institut des Sciences et Technologies Moléculaires d'Angers", + "type": "child", + "id": "https://ror.org/039yyx623" + }, + { + "label": "Institute for the Separation Chemistry in Marcoule", + "type": "child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Institute of Analytical Sciences", + "type": "child", + "id": "https://ror.org/03s5z5x70" + }, + { + "label": "Institute of Chemistry and Processes for Energy, Environment and Health", + "type": "child", + "id": "https://ror.org/02tn0tm63" + }, + { + "label": "Institute of Chemistry of Clermont-Ferrand", + "type": "child", + "id": "https://ror.org/045qszf23" + }, + { + "label": "Institute of Molecular Chemistry Reims", + "type": "child", + "id": "https://ror.org/03c0nx407" + }, + { + "label": "Institute of Molecular Sciences", + "type": "child", + "id": "https://ror.org/00r8jkk54" + }, + { + "label": "Institute of Organic and Analytical Chemistry", + "type": "child", + "id": "https://ror.org/03ywn7d79" + }, + { + "label": "Institute of Researches on Catalysis and Environment in Lyon", + "type": "child", + "id": "https://ror.org/04fy20a51" + }, + { + "label": "Interfaces Traitements Organisation et Dynamique des Systèmes", + "type": "child", + "id": "https://ror.org/03edms940" + }, + { + "label": "Interuniversity Center of Materials Research and Engineering", + "type": "child", + "id": "https://ror.org/03xhggy77" + }, + { + "label": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "type": "child", + "id": "https://ror.org/00wwxk695" + }, + { + "label": "Laboratoire Chimie Electrochimie Moléculaires et Chimie Analytique", + "type": "child", + "id": "https://ror.org/02bhhaf78" + }, + { + "label": "Laboratoire Chimie de l'Environnement", + "type": "child", + "id": "https://ror.org/02pr0xw82" + }, + { + "label": "Laboratoire Hydrazines et Composés Energétiques Polyazotés", + "type": "child", + "id": "https://ror.org/01racwh88" + }, + { + "label": "Laboratoire Hétérochimie Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/02v2svk17" + }, + { + "label": "Laboratoire Interfaces et Systèmes Électrochimiques", + "type": "child", + "id": "https://ror.org/00jb20a14" + }, + { + "label": "Chimie Moléculaire, Macromoléculaire, Matériaux", + "type": "child", + "id": "https://ror.org/007sc9r91" + }, + { + "label": "Laboratoire d'Electrochimie Moléculaire", + "type": "child", + "id": "https://ror.org/03atapr58" + }, + { + "label": "Laboratoire de Chimie", + "type": "child", + "id": "https://ror.org/02gaw1s20" + }, + { + "label": "Laboratoire de Chimie Moléculaire et Thioorganique", + "type": "child", + "id": "https://ror.org/03q7p3t30" + }, + { + "label": "Laboratoire de Chimie Physique - Matière et Rayonnement", + "type": "child", + "id": "https://ror.org/03z20vp15" + }, + { + "label": "Laboratoire de Chimie Physique et Microbiologie pour l'Environnement", + "type": "child", + "id": "https://ror.org/03nknpw16" + }, + { + "label": "Laboratoire de Chimie Théorique", + "type": "child", + "id": "https://ror.org/00tmb7y09" + }, + { + "label": "Laboratoire de Chimie de Coordination", + "type": "child", + "id": "https://ror.org/01rtzw447" + }, + { + "label": "Laboratoire de Chimie des Polymères Organiques", + "type": "child", + "id": "https://ror.org/056n05x05" + }, + { + "label": "Laboratoire de chimie des processus biologiques", + "type": "child", + "id": "https://ror.org/02fv42846" + }, + { + "label": "Laboratoire de Chimie et Biochimie Pharmacologiques et Toxicologiques", + "type": "child", + "id": "https://ror.org/028qedy27" + }, + { + "label": "Laboratoire de Chimie et Biologie des Métaux", + "type": "child", + "id": "https://ror.org/02dd25k08" + }, + { + "label": "Laboratoire de Chimie et Physique Quantiques", + "type": "child", + "id": "https://ror.org/056g7f250" + }, + { + "label": "Laboratoire de Cristallographie et Sciences des Matériaux", + "type": "child", + "id": "https://ror.org/04310tc15" + }, + { + "label": "Laboratoire de Photophysique et Photochimie Supramoléculaires et Macromoléculaires", + "type": "child", + "id": "https://ror.org/03r7eh527" + }, + { + "label": "Laboratoire de Réactivité de Surface", + "type": "child", + "id": "https://ror.org/04vthwx70" + }, + { + "label": "Laboratoire de Réactivité et Chimie des Solides", + "type": "child", + "id": "https://ror.org/02m9cs548" + }, + { + "label": "Laboratoire de Spectroscopie pour les Interactions, la Réactivité et l'Environnement", + "type": "child", + "id": "https://ror.org/01tv2ca73" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire des Composites Thermo Structuraux", + "type": "child", + "id": "https://ror.org/02n2h9t24" + }, + { + "label": "Laboratoire des Interactions Moléculaires et Réactivité Chimique et Photochimique", + "type": "child", + "id": "https://ror.org/0171mae58" + }, + { + "label": "Laboratoire des Multimatériaux et Interfaces", + "type": "child", + "id": "https://ror.org/03cfem402" + }, + { + "label": "Laboratoire du Futur", + "type": "child", + "id": "https://ror.org/04qq0qp34" + }, + { + "label": "Laboratoire d’Archéologie Moléculaire et Structurale", + "type": "child", + "id": "https://ror.org/02ctqqq48" + }, + { + "label": "Laboratoire d’Electrochimie et de Physico-chimie des Matériaux et des Interfaces", + "type": "child", + "id": "https://ror.org/04axb9j69" + }, + { + "label": "Laboratory Glycochemistry, of Antimicrobials and Agroressources", + "type": "child", + "id": "https://ror.org/01gje7n16" + }, + { + "label": "Laboratory for Therapeutic Innovation", + "type": "child", + "id": "https://ror.org/02g4mxc89" + }, + { + "label": "Laboratory of Catalysis and Solid State Chemistry", + "type": "child", + "id": "https://ror.org/04vrqzz54" + }, + { + "label": "Laboratory of Design and Application of Bioactive Molecules", + "type": "child", + "id": "https://ror.org/00rh71z37" + }, + { + "label": "Laboratory of Organic Synthesis", + "type": "child", + "id": "https://ror.org/04qgfge56" + }, + { + "label": "Laboratory of Polymer Materials Engineering", + "type": "child", + "id": "https://ror.org/02160my55" + }, + { + "label": "Laboratory of Theoretical Biochemistry", + "type": "child", + "id": "https://ror.org/00nvjgv40" + }, + { + "label": "Materials and Physical Engineering Laboratory", + "type": "child", + "id": "https://ror.org/014n97s28" + }, + { + "label": "Miniaturisation pour la Synthèse, l'Analyse et la Protéomique", + "type": "child", + "id": "https://ror.org/02s4dmd79" + }, + { + "label": "Molécule aux Nanos-objets : Réactivité, Interactions et Spectroscopies", + "type": "child", + "id": "https://ror.org/02jkg8m11" + }, + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "child", + "id": "https://ror.org/00b4q1853" + }, + { + "label": "Nanosciences et Innovation pour les Matériaux, la Biomédecine et l'Énergie", + "type": "child", + "id": "https://ror.org/04vg26t07" + }, + { + "label": "Organic and Analytical Chemistry Laboratory", + "type": "child", + "id": "https://ror.org/04e8pda19" + }, + { + "label": "Paul Pascal Research Center", + "type": "child", + "id": "https://ror.org/043a21x04" + }, + { + "label": "PHENIX laboratory", + "type": "child", + "id": "https://ror.org/046htjf88" + }, + { + "label": "Polymères, Biopolymères, Surfaces", + "type": "child", + "id": "https://ror.org/04hd6wf14" + }, + { + "label": "Processus d'Activation Sélective par Transfert d'Énergie Uni-électronique ou Radiatif", + "type": "child", + "id": "https://ror.org/033t7vz72" + }, + { + "label": "Science et Ingénierie des Matériaux et Procédés", + "type": "child", + "id": "https://ror.org/00m7zca23" + }, + { + "label": "Science of Ceramic Processing and Surface Treatments", + "type": "child", + "id": "https://ror.org/044qpwz88" + }, + { + "label": "Sciences et Ingénierie de la Matière Molle", + "type": "child", + "id": "https://ror.org/03f0z1g15" + }, + { + "label": "Structure et Instabilité des Génomes", + "type": "child", + "id": "https://ror.org/05pchb838" + }, + { + "label": "Unité Matériaux et Transformations", + "type": "child", + "id": "https://ror.org/03q99v794" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Centre de Biophysique Moléculaire", + "type": "child", + "id": "https://ror.org/02dpqcy73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02dg0pv02.json b/rc-v1.43-v2/updates/02dg0pv02.json new file mode 100644 index 000000000..540d65adf --- /dev/null +++ b/rc-v1.43-v2/updates/02dg0pv02.json @@ -0,0 +1,137 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1946, + "external_ids": [ + { + "all": [ + "100006641" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.420318.c" + ], + "preferred": "grid.420318.c", + "type": "grid" + }, + { + "all": [ + "0000 0004 0402 478X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q740308" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02dg0pv02", + "links": [ + { + "type": "website", + "value": "http://www.unicef.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/UNICEF" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.71427, + "lng": -74.00597, + "name": "New York" + }, + "geonames_id": 5128581 + } + ], + "names": [ + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Fonds des Nations Unies pour l'Enfance" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNICEF" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "United Nations Children's Fund" + } + ], + "relationships": [ + { + "label": "United Nations Children's Fund Cameroon", + "type": "child", + "id": "https://ror.org/01fxrnx65" + }, + { + "label": "United Nations Children's Fund Canada", + "type": "child", + "id": "https://ror.org/05r7zv414" + }, + { + "label": "United Nations Children's Fund India", + "type": "child", + "id": "https://ror.org/05388c580" + }, + { + "label": "United Nations Children's Fund Kosovo", + "type": "child", + "id": "https://ror.org/01m1ej943" + }, + { + "label": "United Nations Children's Fund Niger", + "type": "child", + "id": "https://ror.org/014ezsb26" + }, + { + "label": "United Nations Children's Fund Zambia", + "type": "child", + "id": "https://ror.org/00xdt7j93" + }, + { + "label": "United Nations", + "type": "parent", + "id": "https://ror.org/006kxhp52" + }, + { + "label": "Special Programme for Research and Training in Tropical Diseases", + "type": "child", + "id": "https://ror.org/046j7pv84" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02drdmm93.json b/rc-v1.43-v2/updates/02drdmm93.json new file mode 100644 index 000000000..f24b4b283 --- /dev/null +++ b/rc-v1.43-v2/updates/02drdmm93.json @@ -0,0 +1,177 @@ +{ + "admin": { + "created": { + "date": "2019-11-07", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1956, + "external_ids": [ + { + "all": [ + "grid.506261.6" + ], + "preferred": "grid.506261.6", + "type": "grid" + }, + { + "all": [ + "0000 0001 0706 7839" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q10873318" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02drdmm93", + "links": [ + { + "type": "website", + "value": "http://www.cams.ac.cn/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Peking_Union_Medical_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + }, + "geonames_id": 1816670 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CAMS" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CAMS&PUMC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Chinese Academy of Medical Sciences" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Chinese Academy of Medical Sciences & Peking Union Medical College" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "PUMC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Peking Union Medical College" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "中国医学科学院" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "中国医学科学院北京协和医学院" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "北京协和医学院" + } + ], + "relationships": [ + { + "label": "State Key Laboratory of Virus Genetic Engineering", + "type": "child", + "id": "https://ror.org/0311ezn83" + }, + { + "label": "Institute of Basic Medical Sciences of the Chinese Academy of Medical Sciences", + "type": "child", + "id": "https://ror.org/055qbch41" + }, + { + "label": "Cancer Hospital of Chinese Academy of Medical Sciences", + "type": "related", + "id": "https://ror.org/03x937183" + }, + { + "label": "Chinese Academy of Medical Sciences Dermatology Hospital", + "type": "related", + "id": "https://ror.org/01z6cw088" + }, + { + "label": "Fu Wai Hospital", + "type": "related", + "id": "https://ror.org/0590dnz19" + }, + { + "label": "Institute of Hematology & Blood Diseases Hospital", + "type": "related", + "id": "https://ror.org/04n16t016" + }, + { + "label": "Peking Union Medical College Hospital", + "type": "related", + "id": "https://ror.org/04jztag35" + }, + { + "label": "Tsinghua University", + "type": "related", + "id": "https://ror.org/03cve4549" + }, + { + "label": "Institute of Chinese Materia Medica", + "type": "child", + "id": "https://ror.org/04kn56m50" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02dyaew97.json b/rc-v1.43-v2/updates/02dyaew97.json new file mode 100644 index 000000000..82050a2eb --- /dev/null +++ b/rc-v1.43-v2/updates/02dyaew97.json @@ -0,0 +1,100 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1959, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9404 6552" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3214477" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462447.7" + ], + "preferred": "grid.462447.7" + } + ], + "id": "https://ror.org/02dyaew97", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lps.u-psud.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Laboratory_of_Solid_State_Physics" + } + ], + "names": [ + { + "value": "Laboratoire de physique des Solides", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory of Solid State Physics", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LPS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02dzjmc73.json b/rc-v1.43-v2/updates/02dzjmc73.json new file mode 100644 index 000000000..30622f9ba --- /dev/null +++ b/rc-v1.43-v2/updates/02dzjmc73.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 738329, + "geonames_details": { + "country_code": "TR", + "country_name": "Türkiye", + "lat": 41.02274, + "lng": 29.01366, + "name": "Scutari" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0495 1268" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q6063394" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.464712.2" + ], + "preferred": "grid.464712.2" + } + ], + "id": "https://ror.org/02dzjmc73", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uskudar.edu.tr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/%C3%9Csk%C3%BCdar_University" + } + ], + "names": [ + { + "value": "Üsküdar University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Üsküdar Üniversitesi", + "types": [ + "label" + ], + "lang": "tr" + } + ], + "relationships": [ + { + "label": "Npistanbul Brain Hospital", + "type": "related", + "id": "https://ror.org/00hhtwx28" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02e3wq066.json b/rc-v1.43-v2/updates/02e3wq066.json new file mode 100644 index 000000000..fc55bb97c --- /dev/null +++ b/rc-v1.43-v2/updates/02e3wq066.json @@ -0,0 +1,94 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1991, + "external_ids": [ + { + "all": [ + "100006086" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.454854.c" + ], + "preferred": "grid.454854.c", + "type": "grid" + }, + { + "all": [ + "0000 0004 0430 6277" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/02e3wq066", + "links": [ + { + "type": "website", + "value": "http://dpcpsi.nih.gov/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.98067, + "lng": -77.10026, + "name": "Bethesda" + }, + "geonames_id": 4348599 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DPCPSI" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Division of Program Coordination Planning and Strategic Initiatives" + } + ], + "relationships": [ + { + "label": "Office of Data Science Strategy", + "type": "child", + "id": "https://ror.org/04g4sf283" + }, + { + "label": "Office of the Director", + "type": "parent", + "id": "https://ror.org/00fj8a872" + }, + { + "label": "NIH Common Fund", + "type": "child", + "id": "https://ror.org/001d55x84" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02eegq373.json b/rc-v1.43-v2/updates/02eegq373.json new file mode 100644 index 000000000..652fdf548 --- /dev/null +++ b/rc-v1.43-v2/updates/02eegq373.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9390 6995" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434664.7" + ], + "preferred": "grid.434664.7" + } + ], + "id": "https://ror.org/02eegq373", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ffe.es" + } + ], + "names": [ + { + "value": "Fundación de los Ferrocarriles Españoles", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spanish Railway Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02en5vm52.json b/rc-v1.43-v2/updates/02en5vm52.json new file mode 100644 index 000000000..9ba3e6c0a --- /dev/null +++ b/rc-v1.43-v2/updates/02en5vm52.json @@ -0,0 +1,1129 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2010, + "external_ids": [ + { + "all": [ + "0000 0001 2308 1657" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100005737", + "501100019125", + "100012946" + ], + "preferred": "501100019125", + "type": "fundref" + }, + { + "all": [ + "Q41497113", + "Q3491150", + "Q546118", + "Q1144549" + ], + "preferred": "Q41497113", + "type": "wikidata" + }, + { + "all": [ + "grid.462844.8" + ], + "preferred": "grid.462844.8", + "type": "grid" + } + ], + "id": "https://ror.org/02en5vm52", + "links": [ + { + "type": "website", + "value": "https://www.sorbonne-universite.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Sorbonne_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Sorbonne Université" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Paris-Sorbonne" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Pierre and Marie Curie University" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Sorbonne University" + } + ], + "relationships": [ + { + "label": "Institut d'Astrophysique de Paris", + "type": "related", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "Adaptation and Diversity in the Marine Environment", + "type": "child", + "id": "https://ror.org/0293jn610" + }, + { + "label": "Laboratoire d'Ecogéochimie des Environnements Benthiques", + "type": "child", + "id": "https://ror.org/049xh5y45" + }, + { + "label": "Biologie Intégrative des Organismes Marins", + "type": "child", + "id": "https://ror.org/03wg93s13" + }, + { + "label": "Biologie des Organismes et Écosystèmes Aquatiques", + "type": "child", + "id": "https://ror.org/01tp1c480" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Centre André-Chastel", + "type": "child", + "id": "https://ror.org/03jqm0b89" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre d’étude de la langue et des littératures françaises", + "type": "child", + "id": "https://ror.org/059v8sw69" + }, + { + "label": "Centre de Recherche Saint-Antoine", + "type": "child", + "id": "https://ror.org/03wxndv36" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de recherches sur la pensée antique", + "type": "child", + "id": "https://ror.org/02d19mr69" + }, + { + "label": "Centre d'Écologie et des Sciences de la Conservation", + "type": "child", + "id": "https://ror.org/00sad8321" + }, + { + "label": "Chimie de la Matière Condensée de Paris", + "type": "child", + "id": "https://ror.org/028ta1f94" + }, + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Biologie évolutive et écologie des algues", + "type": "child", + "id": "https://ror.org/051k70002" + }, + { + "label": "Géoazur", + "type": "child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Groupe d'Étude des Méthodes de l'Analyse Sociologique de la Sorbonne", + "type": "child", + "id": "https://ror.org/00kzsxx38" + }, + { + "label": "Institut Henri Poincaré", + "type": "child", + "id": "https://ror.org/05dfxeg46" + }, + { + "label": "Institut Jean Le Rond d'Alembert", + "type": "child", + "id": "https://ror.org/043we9s22" + }, + { + "label": "Institut Parisien de Chimie Moléculaire", + "type": "child", + "id": "https://ror.org/04qwfwm19" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Mathématiques de Jussieu-Paris Rive Gauche", + "type": "child", + "id": "https://ror.org/03fk87k11" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut de Systématique, Évolution, Biodiversité", + "type": "child", + "id": "https://ror.org/01dadvw90" + }, + { + "label": "Institut des Sciences de la Terre de Paris", + "type": "child", + "id": "https://ror.org/00xagyq07" + }, + { + "label": "Institut du Cerveau", + "type": "child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Fer à Moulin", + "type": "child", + "id": "https://ror.org/03x9frp33" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institute of Mineralogy, Materials Physics and Cosmochemistry", + "type": "child", + "id": "https://ror.org/05abgg682" + }, + { + "label": "Institut de Myologie", + "type": "child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Laboratoire Kastler Brossel", + "type": "child", + "id": "https://ror.org/01h14ww21" + }, + { + "label": "Laboratoire Interfaces et Systèmes Électrochimiques", + "type": "child", + "id": "https://ror.org/00jb20a14" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Jean Perrin", + "type": "child", + "id": "https://ror.org/01ghvgs84" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire d'études sur les monothéismes", + "type": "child", + "id": "https://ror.org/02m0hy518" + }, + { + "label": "Laboratoire de Biodiversité et Biotechnologies Microbiennes", + "type": "child", + "id": "https://ror.org/039p01270" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire de Biologie du Développement de Villefranche-sur-Mer", + "type": "child", + "id": "https://ror.org/04hke8425" + }, + { + "label": "Laboratoire de Chimie Physique - Matière et Rayonnement", + "type": "child", + "id": "https://ror.org/03z20vp15" + }, + { + "label": "Laboratoire de Chimie Théorique", + "type": "child", + "id": "https://ror.org/00tmb7y09" + }, + { + "label": "Laboratoire de chimie des processus biologiques", + "type": "child", + "id": "https://ror.org/02fv42846" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Physique Nucléaire et de Hautes Énergies", + "type": "child", + "id": "https://ror.org/01hg8p552" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Laboratoire de Recherche en Informatique de Paris 6", + "type": "child", + "id": "https://ror.org/05krcen59" + }, + { + "label": "Laboratoire de Réactivité de Surface", + "type": "child", + "id": "https://ror.org/04vthwx70" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire d’Archéologie Moléculaire et Structurale", + "type": "child", + "id": "https://ror.org/02ctqqq48" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratory of Computational and Quantitative Biology", + "type": "child", + "id": "https://ror.org/00pcqj134" + }, + { + "label": "Laboratoire de Biologie Intégrative des Modèles Marins", + "type": "child", + "id": "https://ror.org/001c8pb03" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Laboratoire d'Océanographie Microbienne", + "type": "child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratoire de Biologie Moléculaire et Cellulaire des Eucaryotes", + "type": "child", + "id": "https://ror.org/05mx55f96" + }, + { + "label": "Laboratoire de Physique et d’Étude des Matériaux", + "type": "child", + "id": "https://ror.org/00a72jq18" + }, + { + "label": "Laboratoire d’études spatiales et d’instrumentation en astrophysique", + "type": "child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratoire de Physique Théorique de la Matière Condensée", + "type": "child", + "id": "https://ror.org/04zaaa143" + }, + { + "label": "Laboratoire de Physique Théorique et Hautes Energies", + "type": "child", + "id": "https://ror.org/02mph9k76" + }, + { + "label": "Institut Langevin", + "type": "child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Milieux environnementaux, transferts et interactions dans les hydrosystèmes et les sols", + "type": "child", + "id": "https://ror.org/0229z0679" + }, + { + "label": "Molécule aux Nanos-objets : Réactivité, Interactions et Spectroscopies", + "type": "child", + "id": "https://ror.org/02jkg8m11" + }, + { + "label": "Dynamique du noyau", + "type": "child", + "id": "https://ror.org/04team556" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Orient & Méditerranée", + "type": "child", + "id": "https://ror.org/051gvfp41" + }, + { + "label": "Institut des NanoSciences de Paris", + "type": "child", + "id": "https://ror.org/03t2f0a12" + }, + { + "label": "Physico-chimie Curie", + "type": "child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "PHENIX laboratory", + "type": "child", + "id": "https://ror.org/046htjf88" + }, + { + "label": "Biologie du chloroplaste et perception de la lumière chez les micro-algues", + "type": "child", + "id": "https://ror.org/001r32c80" + }, + { + "label": "Physique et Mécanique des Milieux Hétérogènes", + "type": "child", + "id": "https://ror.org/03kr50w79" + }, + { + "label": "Institut Pierre Louis d‘Épidémiologie et de Santé Publique", + "type": "child", + "id": "https://ror.org/02qqh1125" + }, + { + "label": "Processus d'Activation Sélective par Transfert d'Énergie Uni-électronique ou Radiatif", + "type": "child", + "id": "https://ror.org/033t7vz72" + }, + { + "label": "Unité de recherche sur les maladies cardiovasculaires et métaboliques", + "type": "child", + "id": "https://ror.org/043y2tx42" + }, + { + "label": "Station Biologique de Roscoff", + "type": "child", + "id": "https://ror.org/03s0pzj56" + }, + { + "label": "Sciences et Ingénierie de la Matière Molle", + "type": "child", + "id": "https://ror.org/03f0z1g15" + }, + { + "label": "Solid State Chemistry And Energy Lab", + "type": "child", + "id": "https://ror.org/03s877y45" + }, + { + "label": "Sorbonne - Identités, Relations Internationales et Civilisations de l’Europe", + "type": "child", + "id": "https://ror.org/03ae8w006" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Systèmes de Référence Temps-Espace", + "type": "child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Unité de Modélisation Mathématique et Informatique des Systèmes Complexes", + "type": "child", + "id": "https://ror.org/053kxkj53" + }, + { + "label": "Laboratoire d’Océanographie de Villefranche", + "type": "child", + "id": "https://ror.org/05r5y6641" + }, + { + "label": "European Marine Biological Resource Centre", + "type": "related", + "id": "https://ror.org/0038zss60" + }, + { + "label": "Fondation pour l'Innovation en Cardiométabolisme et Nutrition", + "type": "child", + "id": "https://ror.org/0045xgt95" + }, + { + "label": "Centre de Recherche sur l'Amérique Pré-hispanique", + "type": "child", + "id": "https://ror.org/000nfmp17" + }, + { + "label": "Centre d'investigation clinique Quinze-Vingts", + "type": "child", + "id": "https://ror.org/01exas502" + }, + { + "label": "Immunologie - Immunopathologie - Immunothérapie", + "type": "child", + "id": "https://ror.org/05dbe0t82" + }, + { + "label": "Centre de recherche en paléontologie - Paris", + "type": "child", + "id": "https://ror.org/05ax2x637" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "Europe orientale, balkanique et médiane", + "type": "child", + "id": "https://ror.org/03ygj8248" + }, + { + "label": "Institut de Recherche en Musicologie", + "type": "child", + "id": "https://ror.org/04gf9wd48" + }, + { + "label": "Neurophysiologie respiratoire expérimentale et clinique", + "type": "child", + "id": "https://ror.org/0259td381" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Génétique et biologie du développement", + "type": "child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Institut de la Vision", + "type": "child", + "id": "https://ror.org/000zhpw23" + }, + { + "label": "École des Neurosciences de Paris", + "type": "child", + "id": "https://ror.org/05re0sm29" + }, + { + "label": "Laboratoire atmosphères, milieux, observations spatiales", + "type": "child", + "id": "https://ror.org/05ppf7q77" + }, + { + "label": "ITER", + "type": "child", + "id": "https://ror.org/01d7n9638" + }, + { + "label": "UMI MajuLab", + "type": "child", + "id": "https://ror.org/027jrtw17" + }, + { + "label": "Laboratoire de Physique de l'ENS", + "type": "child", + "id": "https://ror.org/03a26mh11" + }, + { + "label": "Institut Pierre-Simon Laplace", + "type": "child", + "id": "https://ror.org/02haar591" + }, + { + "label": "Hôpital Armand-Trousseau", + "type": "related", + "id": "https://ror.org/00yfbr841" + }, + { + "label": "Tenon Hospital", + "type": "related", + "id": "https://ror.org/05h5v3c50" + }, + { + "label": "Hôpital Charles-Foix", + "type": "related", + "id": "https://ror.org/04v3xcy66" + }, + { + "label": "Hôpital Rothschild", + "type": "related", + "id": "https://ror.org/009kb8w74" + }, + { + "label": "Hôpital Saint-Antoine", + "type": "related", + "id": "https://ror.org/01875pg84" + }, + { + "label": "Pitié-Salpêtrière Hospital", + "type": "related", + "id": "https://ror.org/02mh9a093" + }, + { + "label": "Hôpital de la Roche-Guyon", + "type": "related", + "id": "https://ror.org/02t1zz428" + }, + { + "label": "Biologie du Chloroplaste et Perception de la Lumière chez les Microalgues", + "type": "child", + "id": "https://ror.org/04ezpxa16" + }, + { + "label": "Autonomia", + "type": "child", + "id": "https://ror.org/01ms54x07" + }, + { + "label": "Edition, Interprétation et traduction des textes anciens", + "type": "child", + "id": "https://ror.org/015cf0x85" + }, + { + "label": "Centre de Recherches Interdisciplinaires sur les Mondes Ibéro-américains Contemporains", + "type": "child", + "id": "https://ror.org/006jv0w93" + }, + { + "label": "Centre de Recherches sur l’Extrême Orient de Paris – Sorbonne", + "type": "child", + "id": "https://ror.org/04vwsc311" + }, + { + "label": "Centre d'histoire du XIXe siècle", + "type": "child", + "id": "https://ror.org/04hrxxd90" + }, + { + "label": "Métaphysique, histoires, transformations, actualités", + "type": "child", + "id": "https://ror.org/04sv5r538" + }, + { + "label": "Sciences et Technologies de la Musique et du Son", + "type": "child", + "id": "https://ror.org/025xvn046" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "UMS Phénotypage du petit animal", + "type": "child", + "id": "https://ror.org/05pm2xt51" + }, + { + "label": "Fédération de recherche en sciences mathématiques de Paris centre", + "type": "child", + "id": "https://ror.org/02jwwk370" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Troubles psychiatriques et développement", + "type": "child", + "id": "https://ror.org/04nc8v966" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Centre Expert en Endométriose", + "type": "child", + "id": "https://ror.org/00s0m4j44" + }, + { + "label": "Robotique et Innovation Chirurgicale", + "type": "child", + "id": "https://ror.org/04shr9s31" + }, + { + "label": "Handicap moteur et cognitif et réadaptation", + "type": "child", + "id": "https://ror.org/011gr5n11" + }, + { + "label": "Analyse, Recherche, Développement et Evaluation en Endourologie et Lithiase Urinaire", + "type": "child", + "id": "https://ror.org/03f1mtj27" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Groupe de recherche interdisciplinaire sur les processus d'information et de communication", + "type": "child", + "id": "https://ror.org/04p8das24" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Fondation Voir & Entendre", + "type": "child", + "id": "https://ror.org/01ph0t361" + }, + { + "label": "Centre de linguistique en Sorbonne", + "type": "child", + "id": "https://ror.org/02zzf0m94" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Réanimation et soins intensifs du patient en Insuffisance respiratoire aigüe", + "type": "child", + "id": "https://ror.org/02qvhgb32" + }, + { + "label": "Méthodes et Outils pour les Sciences Participatives", + "type": "child", + "id": "https://ror.org/05kytrf83" + }, + { + "label": "Maladies génétiques d’expression pédiatrique", + "type": "child", + "id": "https://ror.org/0387w4y93" + }, + { + "label": "Laboratoire Médiations", + "type": "child", + "id": "https://ror.org/04tb23024" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Transplantation et Thérapies Innovantes de la Cornée", + "type": "child", + "id": "https://ror.org/02g0s3c07" + }, + { + "label": "Biomarqueurs d’urgence et de réanimation", + "type": "child", + "id": "https://ror.org/01jnrzt83" + }, + { + "label": "Groupe de REcherche en Cardio Oncologie", + "type": "child", + "id": "https://ror.org/00b4yme84" + }, + { + "label": "Rome et ses renaissances", + "type": "child", + "id": "https://ror.org/011hja523" + }, + { + "label": "CERES - Centre d'expérimentation en méthodes numériques pour les recherches en sciences humaines et sociales", + "type": "child", + "id": "https://ror.org/00fyy4d45" + }, + { + "label": "Sciences, Normes, Démocratie", + "type": "child", + "id": "https://ror.org/033eqsk67" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Institut des Sciences du Calcul et des Données", + "type": "child", + "id": "https://ror.org/00y16rm59" + }, + { + "label": "Complications Cardiovasculaires et Métaboliques chez les patients vivant avec le VIH", + "type": "child", + "id": "https://ror.org/00njafa27" + }, + { + "label": "Groupe de Recherche Clinique en Neuro-urologie", + "type": "child", + "id": "https://ror.org/05gzcy376" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Alzheimer Precision Medicine", + "type": "child", + "id": "https://ror.org/058qr4y65" + }, + { + "label": "Onco-Urologie Prédictive", + "type": "child", + "id": "https://ror.org/0138eq662" + }, + { + "label": "Histoire et Archéologie Maritimes", + "type": "child", + "id": "https://ror.org/011mac819" + }, + { + "label": "Production et analyse de données en sciences de la vie et en santé", + "type": "child", + "id": "https://ror.org/03p2d3k93" + }, + { + "label": "Institut Parisien de Chimie Physique et Théorique", + "type": "child", + "id": "https://ror.org/00xwwwr97" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénieurie des Connaissances en e-Santé", + "type": "child", + "id": "https://ror.org/01jr1v359" + }, + { + "label": "Enzymologie de l'ARN", + "type": "child", + "id": "https://ror.org/05n2mnn68" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Building Blocks for Future Electronics Laboratory", + "type": "child", + "id": "https://ror.org/01w108f05" + }, + { + "label": "Institut de la Mer de Villefranche", + "type": "child", + "id": "https://ror.org/05jpad840" + }, + { + "label": "Histoire et Dynamique des Espaces Anglophones: du Réel au Virtuel", + "type": "child", + "id": "https://ror.org/03vkkad71" + }, + { + "label": "Étude et Édition de Textes Médiévaux", + "type": "child", + "id": "https://ror.org/037ptrs19" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Représentations et Identités. Espaces Germanique, Nordique et Néerlandophone", + "type": "child", + "id": "https://ror.org/053sj3y70" + }, + { + "label": "Centre d'Études Médiévales Anglaises", + "type": "child", + "id": "https://ror.org/01acw3598" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "Drépanocytose : groupe de Recherche de Paris – Sorbonne Université", + "type": "child", + "id": "https://ror.org/015tg7676" + }, + { + "label": "IMAGES : La médecine de la femme et de l’enfant assistée par l’image", + "type": "child", + "id": "https://ror.org/00x677422" + }, + { + "label": "Centre de Recherche en Myologie", + "type": "child", + "id": "https://ror.org/02e3eqz10" + }, + { + "label": "Civilisations et littératures d'Espagne et d'Amérique du Moyen-Age aux Lumières", + "type": "child", + "id": "https://ror.org/04xy2by41" + }, + { + "label": "Sens, Texte, Informatique, Histoire", + "type": "child", + "id": "https://ror.org/02q5emw59" + }, + { + "label": "Centre de Recherche en Littérature Comparée", + "type": "child", + "id": "https://ror.org/015th7t48" + }, + { + "label": "Équipe Littérature et Culture italiennes", + "type": "child", + "id": "https://ror.org/05ntgv723" + }, + { + "label": "Groupe d’Étude sur l’HyperTension Intra Crânienne idiopathique", + "type": "child", + "id": "https://ror.org/013s2ts57" + }, + { + "label": "Groupe de recherche clinique en anesthésie réanimation médecine périopératoire", + "type": "child", + "id": "https://ror.org/02zn90974" + }, + { + "label": "Groupe de recherche clinique – Tumeurs Thyroïdiennes", + "type": "child", + "id": "https://ror.org/04n40rk24" + }, + { + "label": "THERANOSCAN : Biomarqueurs Théranostiques des Cancers Bronchiques Non à Petites Cellules", + "type": "child", + "id": "https://ror.org/02qe0rk31" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Groupe de recherche clinique Amylose AA Sorbonne Université", + "type": "child", + "id": "https://ror.org/01zpxh127" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "NeurON : Interface Neuro-machine", + "type": "child", + "id": "https://ror.org/00a8q8z31" + }, + { + "label": "PremUP", + "type": "child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Voix Anglophones : Littérature et Esthétique", + "type": "child", + "id": "https://ror.org/02m26fm05" + }, + { + "label": "Nutrition et obésité : approches systémiques", + "type": "child", + "id": "https://ror.org/00qdphm77" + }, + { + "label": "Remodelage et Reparation du Tissu Renal", + "type": "child", + "id": "https://ror.org/01sra1980" + }, + { + "label": "Maladies rénales fréquentes et rares : des mécanismes moléculaires à la médecine personnalisée", + "type": "child", + "id": "https://ror.org/01x3ydm75" + }, + { + "label": "Centre hospitalier national d'ophtalmologie des Quinze-Vingts", + "type": "related", + "id": "https://ror.org/024v1ns19" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02erddr56.json b/rc-v1.43-v2/updates/02erddr56.json new file mode 100644 index 000000000..f6ad83f51 --- /dev/null +++ b/rc-v1.43-v2/updates/02erddr56.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0382 1752" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q16511698" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462731.5" + ], + "preferred": "grid.462731.5" + } + ], + "id": "https://ror.org/02erddr56", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://laboratoire-albert-fert.cnrs-thales.fr" + } + ], + "names": [ + { + "value": "Laboratoire Albert Fert", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Albert Fert Laboratory", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Unité Mixte de Physique CNRS/Thales", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UMPhy", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Thales (France)", + "type": "parent", + "id": "https://ror.org/04emwm605" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02evec030.json b/rc-v1.43-v2/updates/02evec030.json new file mode 100644 index 000000000..c02944ad4 --- /dev/null +++ b/rc-v1.43-v2/updates/02evec030.json @@ -0,0 +1,111 @@ +{ + "locations": [ + { + "geonames_id": 2998324, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 50.63297, + "lng": 3.05858, + "name": "Lille" + } + } + ], + "established": 1963, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.466329.c" + ], + "preferred": "grid.466329.c" + }, + { + "type": "isni", + "all": [ + "0000 0004 7434 4981", + "0000 0001 2154 0303" + ], + "preferred": "0000 0004 7434 4981" + }, + { + "type": "wikidata", + "all": [ + "Q3117452" + ], + "preferred": "Q3117452" + } + ], + "id": "https://ror.org/02evec030", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.junia.com" + } + ], + "names": [ + { + "value": "JUNIA", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ISA Lille", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "JUNIA - Grande école d'ingénieurs", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Groupe Institut Supérieur d'Agriculture de Lille", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yncréa Hauts-de-France", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut Charles Viollette", + "type": "child", + "id": "https://ror.org/0018c4h73" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02faxbd19.json b/rc-v1.43-v2/updates/02faxbd19.json new file mode 100644 index 000000000..2e37dae52 --- /dev/null +++ b/rc-v1.43-v2/updates/02faxbd19.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1871, + "external_ids": [ + { + "all": [ + "grid.418297.1" + ], + "preferred": "grid.418297.1", + "type": "grid" + }, + { + "all": [ + "0000 0000 8888 5173" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q3445045" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02faxbd19", + "links": [ + { + "type": "website", + "value": "https://www.bethel.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Bethel_University_(Minnesota)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.94441, + "lng": -93.09327, + "name": "Saint Paul" + }, + "geonames_id": 5045360 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bethel College and Seminary" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bethel Junior College" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bethel University" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02feahw73.json b/rc-v1.43-v2/updates/02feahw73.json new file mode 100644 index 000000000..710ab1cf7 --- /dev/null +++ b/rc-v1.43-v2/updates/02feahw73.json @@ -0,0 +1,1808 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1939, + "external_ids": [ + { + "all": [ + "501100004794" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.4444.0" + ], + "preferred": "grid.4444.0", + "type": "grid" + }, + { + "all": [ + "0000 0001 2259 7504" + ], + "preferred": "0000 0001 2259 7504", + "type": "isni" + }, + { + "all": [ + "Q280413", + "Q39411466" + ], + "preferred": "Q280413", + "type": "wikidata" + } + ], + "id": "https://ror.org/02feahw73", + "links": [ + { + "type": "website", + "value": "https://www.cnrs.fr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Centre_national_de_la_recherche_scientifique" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CNRS" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Centre National de la Recherche Scientifique" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "French National Centre for Scientific Research" + } + ], + "relationships": [ + { + "label": "Cancer Research Center of Toulouse", + "type": "child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Centre Max Weber", + "type": "child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Recherches Critiques sur le Droit", + "type": "child", + "id": "https://ror.org/01rzzcx32" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "child", + "id": "https://ror.org/03yz3tz18" + }, + { + "label": "Direction Générale Déléguée à la Science", + "type": "child", + "id": "https://ror.org/043nepn57" + }, + { + "label": "Délégation Bretagne et Pays de la Loire", + "type": "child", + "id": "https://ror.org/02t220m45" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Georgia Tech-CNRS Laboratory", + "type": "child", + "id": "https://ror.org/00avmbz91" + }, + { + "label": "Image and Pervasive Access Laboratory", + "type": "child", + "id": "https://ror.org/00m3mb357" + }, + { + "label": "Institut Clément Ader", + "type": "child", + "id": "https://ror.org/040smqw14" + }, + { + "label": "Institut Français d'Études Anatoliennes", + "type": "child", + "id": "https://ror.org/0331qyx19" + }, + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "child", + "id": "https://ror.org/03fd77x13" + }, + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "child", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "child", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Institut Supérieur pour l'Étude des Religions et de la Laïcité", + "type": "child", + "id": "https://ror.org/01ap27310" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Chimie", + "type": "child", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Institut de Physique", + "type": "child", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Institut de Recherche sur l'Architecture Antique", + "type": "child", + "id": "https://ror.org/03r0cdk24" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "child", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "child", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "child", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "Institut des Sciences de l'Ingénierie et des Systèmes", + "type": "child", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Institut Écologie et Environnement", + "type": "child", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Institute of Mechanics and Engineering", + "type": "child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire Aménagement Économie Transports", + "type": "child", + "id": "https://ror.org/01yw97595" + }, + { + "label": "Laboratoire d'Annecy-le-Vieux de Physique Théorique", + "type": "child", + "id": "https://ror.org/010hz2d37" + }, + { + "label": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "type": "child", + "id": "https://ror.org/04dv4he91" + }, + { + "label": "Laboratoire de Mécanique des Fluides de Lille - Kampé de Fériet", + "type": "child", + "id": "https://ror.org/02w8awt17" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Low Noise Inter-Disciplinary Underground Science & Technology", + "type": "child", + "id": "https://ror.org/05gscwg02" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Research Network on Electrochemical Energy Storage", + "type": "child", + "id": "https://ror.org/00190j002" + }, + { + "label": "Saclay Nuclear Research Centre", + "type": "child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Soleil Synchrotron", + "type": "child", + "id": "https://ror.org/01ydb3330" + }, + { + "label": "Triangle", + "type": "child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Institut Terre & Environnement de Strasbourg", + "type": "child", + "id": "https://ror.org/0530qwm02" + }, + { + "label": "Nançay Radio Observatory", + "type": "child", + "id": "https://ror.org/01vqrde47" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Histoire Judiciaire", + "type": "child", + "id": "https://ror.org/00g32ep81" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "Histoire, Archéologie et Littérature des Mondes Anciens", + "type": "child", + "id": "https://ror.org/01ja5aj48" + }, + { + "label": "AERIS/ICARE Data and Services Center", + "type": "child", + "id": "https://ror.org/013z99a51" + }, + { + "label": "Institut de Recherche sur les Composants logiciels et matériels pour l'Information et la Communication Avancée", + "type": "child", + "id": "https://ror.org/010nk4c68" + }, + { + "label": "Laboratoire de Mécanique, Multiphysique, Multiéchelle", + "type": "child", + "id": "https://ror.org/04f5rw142" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Arènes: politique, santé publique, environnement, médias", + "type": "child", + "id": "https://ror.org/00m4rxj18" + }, + { + "label": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "type": "child", + "id": "https://ror.org/02wgtm643" + }, + { + "label": "Espaces et Sociétés", + "type": "child", + "id": "https://ror.org/03237mt20" + }, + { + "label": "Littoral, Environnement, Télédétection, Géomatique", + "type": "child", + "id": "https://ror.org/05sat2s07" + }, + { + "label": "Institute of Genetics and Development of Rennes", + "type": "child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Géosciences Rennes", + "type": "child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Ecosystèmes, Biodiversité, Evolution", + "type": "child", + "id": "https://ror.org/005fjj927" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Fonctions Optiques pour les Technologies de l’information", + "type": "child", + "id": "https://ror.org/03yn94905" + }, + { + "label": "Ethologie animale et humaine", + "type": "child", + "id": "https://ror.org/02evk6c51" + }, + { + "label": "Laboratoire d'études de genre et de sexualité", + "type": "child", + "id": "https://ror.org/005w2mm89" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "Western Institute of Law and Europe", + "type": "child", + "id": "https://ror.org/030ewzw66" + }, + { + "label": "Maison des Sciences de l'Homme Mondes", + "type": "child", + "id": "https://ror.org/00wx1mx58" + }, + { + "label": "Laboratoire de Physique et Chimie de l’Environnement et de l’Espace", + "type": "child", + "id": "https://ror.org/049k66y27" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Centre Émile Durkheim", + "type": "child", + "id": "https://ror.org/01k7w0p97" + }, + { + "label": "Laboratoire de Mathématiques de Besançon", + "type": "child", + "id": "https://ror.org/04nrhwg12" + }, + { + "label": "Laboratoire architecture anthropologie", + "type": "child", + "id": "https://ror.org/05wy2cj05" + }, + { + "label": "Biologie du Développement et Cellules Souches", + "type": "child", + "id": "https://ror.org/02af93v77" + }, + { + "label": "Centre de recherche sur les Inégalités Sociales", + "type": "child", + "id": "https://ror.org/02a4c5q78" + }, + { + "label": "Centre International de Rencontres Mathématiques", + "type": "child", + "id": "https://ror.org/04e3d6y73" + }, + { + "label": "École & Observatoire des Sciences de la Terre", + "type": "child", + "id": "https://ror.org/030qxve40" + }, + { + "label": "Musée Curie", + "type": "child", + "id": "https://ror.org/00tf8ca96" + }, + { + "label": "Architecture, Milieu, Paysage", + "type": "child", + "id": "https://ror.org/048289s82" + }, + { + "label": "Géographie de l'environnement", + "type": "child", + "id": "https://ror.org/01p4g5p84" + }, + { + "label": "Geo-Ocean", + "type": "child", + "id": "https://ror.org/007dbrz84" + }, + { + "label": "Centre d'Études et de Recherches sur le Développement International", + "type": "child", + "id": "https://ror.org/01hg13988" + }, + { + "label": "Laboratoire d'Acoustique de l'Université du Mans", + "type": "child", + "id": "https://ror.org/001aevc89" + }, + { + "label": "Histoire des Théories Linguistiques", + "type": "child", + "id": "https://ror.org/0546jt497" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Laboratoire de Médiévistique Occidentale de Paris", + "type": "child", + "id": "https://ror.org/00z0af360" + }, + { + "label": "Laboratoire d'électronique, systèmes de communication et microsystèmes", + "type": "child", + "id": "https://ror.org/01m83bk32" + }, + { + "label": "Laboratoire d'Ecologie des Hydrosystèmes Naturels et Anthropisés", + "type": "child", + "id": "https://ror.org/05pny1q12" + }, + { + "label": "Département de Pharmacochimie Moléculaire", + "type": "child", + "id": "https://ror.org/04fhvpc68" + }, + { + "label": "Centre de droit comparé du travail et de la sécurité sociale", + "type": "child", + "id": "https://ror.org/041ctrc20" + }, + { + "label": "Enzyme and Cell Engineering - Molecular Recognition and Biocatalysis", + "type": "child", + "id": "https://ror.org/001tmq304" + }, + { + "label": "Sciences pour l'Environnement", + "type": "child", + "id": "https://ror.org/016nwev19" + }, + { + "label": "Laboratoire Morphodynamique Continentale et Côtière", + "type": "child", + "id": "https://ror.org/05k1a6w82" + }, + { + "label": "Laboratoire de Mathématiques de Versailles", + "type": "child", + "id": "https://ror.org/04k5jw363" + }, + { + "label": "Langues et Civilisations à Tradition Orale", + "type": "child", + "id": "https://ror.org/025esck76" + }, + { + "label": "Laboratoire de Mathématiques Nicolas Oresme", + "type": "child", + "id": "https://ror.org/03jm2hc44" + }, + { + "label": "Centre d'études sociologiques et politiques Raymond-Aron", + "type": "child", + "id": "https://ror.org/04aq4ab28" + }, + { + "label": "Laboratoire Caribéen de Sciences Sociales", + "type": "child", + "id": "https://ror.org/00srrcb42" + }, + { + "label": "Laboratoire de Physique Théorique et Modélisation", + "type": "child", + "id": "https://ror.org/05nhcdk38" + }, + { + "label": "Institut des sciences juridique et philosophique de la Sorbonne", + "type": "child", + "id": "https://ror.org/0041am420" + }, + { + "label": "Réseau interdisciplinaire pour l’aménagement, l’observation et la cohésion des territoires européens", + "type": "child", + "id": "https://ror.org/036w0tz95" + }, + { + "label": "France, Amériques, Espagne, Sociétés, Pouvoirs, Acteurs", + "type": "child", + "id": "https://ror.org/04daj8721" + }, + { + "label": "Laboratoire des Fluides Complexes et leurs Réservoirs", + "type": "child", + "id": "https://ror.org/03dg47v24" + }, + { + "label": "Chimie de la Matière Complexe", + "type": "child", + "id": "https://ror.org/01cgac405" + }, + { + "label": "Maison des Sciences de l'Homme et de la Société Sud-Est", + "type": "child", + "id": "https://ror.org/02ygac863" + }, + { + "label": "Maison Asie Pacifique", + "type": "child", + "id": "https://ror.org/03e2syc87" + }, + { + "label": "Mathématiques Appliquées à Paris 5", + "type": "child", + "id": "https://ror.org/04yrrdj53" + }, + { + "label": "Center for Mathematical Modeling", + "type": "child", + "id": "https://ror.org/00wz2vk41" + }, + { + "label": "Service des Avions Français Instrumentés pour la Recherche en Environnement", + "type": "child", + "id": "https://ror.org/02qdgbw61" + }, + { + "label": "Empenn", + "type": "child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Archéologie des Sociétés Méditerranéennes", + "type": "child", + "id": "https://ror.org/04n9eyw42" + }, + { + "label": "Laboratoire de Microbiologie Fondamentale et Pathogénicité", + "type": "child", + "id": "https://ror.org/03e4tg734" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "Praxiling", + "type": "child", + "id": "https://ror.org/03ym2w748" + }, + { + "label": "Laboratoire de Recherche sur les Cultures Anglophones", + "type": "child", + "id": "https://ror.org/0057kwj95" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Centre d'études franco-russe de Moscou", + "type": "child", + "id": "https://ror.org/00zmdjj30" + }, + { + "label": "Centre d'Études et de Documentation Économiques, Juridiques et sociales", + "type": "child", + "id": "https://ror.org/008bf9746" + }, + { + "label": "Maison Française d'Oxford", + "type": "child", + "id": "https://ror.org/022psxk94" + }, + { + "label": "Centre de recherche français à Jérusalem", + "type": "child", + "id": "https://ror.org/04ahb2147" + }, + { + "label": "Centre d'études Alexandrines", + "type": "child", + "id": "https://ror.org/02km70587" + }, + { + "label": "Institut français du Proche-Orient", + "type": "child", + "id": "https://ror.org/02t9nm044" + }, + { + "label": "Institut français d'études sur l'Asie centrale", + "type": "child", + "id": "https://ror.org/026t9b832" + }, + { + "label": "Lieux, Identités, eSpaces, Activités", + "type": "child", + "id": "https://ror.org/00nbhg292" + }, + { + "label": "Ecology and Conservation Science for Sustainable Seas", + "type": "child", + "id": "https://ror.org/021zcv334" + }, + { + "label": "AMURE - Centre de droit et d'économie de la mer", + "type": "child", + "id": "https://ror.org/00ss0a232" + }, + { + "label": "Maison méditerranéenne des sciences de l'Homme", + "type": "child", + "id": "https://ror.org/01ejp3f31" + }, + { + "label": "Centre Franco-Égyptien d’Étude des Temples de Karnak", + "type": "child", + "id": "https://ror.org/0502mw613" + }, + { + "label": "Centre de Recherche sur la Conservation", + "type": "child", + "id": "https://ror.org/05q3pap39" + }, + { + "label": "Institut d'Histoire du Droit Jean Gaudemet", + "type": "child", + "id": "https://ror.org/04j9ztm78" + }, + { + "label": "Centre de recherche en paléontologie - Paris", + "type": "child", + "id": "https://ror.org/05ax2x637" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "Génétique et biologie du développement", + "type": "child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Maison des Sciences de l'Homme Paris Nord", + "type": "child", + "id": "https://ror.org/05079x435" + }, + { + "label": "Savoirs et Mondes Indiens", + "type": "child", + "id": "https://ror.org/04gxn9h90" + }, + { + "label": "Laboratoire de Mathématiques de Reims", + "type": "child", + "id": "https://ror.org/01xkfnd03" + }, + { + "label": "Centre Michel de Boüard", + "type": "child", + "id": "https://ror.org/03rnz7p05" + }, + { + "label": "Relais d'information sur les sciences de la cognition", + "type": "child", + "id": "https://ror.org/04ved1v49" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Sommeil, Addiction et Neuropsychiatrie", + "type": "child", + "id": "https://ror.org/04k8wt746" + }, + { + "label": "Plateforme d'Imagerie Biomédicale", + "type": "child", + "id": "https://ror.org/05r25mc45" + }, + { + "label": "TBM-Core", + "type": "child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Génomique évolutive, modélisation et santé", + "type": "child", + "id": "https://ror.org/026ddbz68" + }, + { + "label": "Takuvik Joint International Laboratory", + "type": "child", + "id": "https://ror.org/04bzgtz06" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Bordeaux Imaging Center", + "type": "child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "child", + "id": "https://ror.org/034bena10" + }, + { + "label": "CEPN - Centre d'Economie de l'Université Paris Nord", + "type": "child", + "id": "https://ror.org/03k32n603" + }, + { + "label": "Chimie, Structures et Propriétés de Biomatériaux et d'Agents Thérapeutiques", + "type": "child", + "id": "https://ror.org/0343fpq57" + }, + { + "label": "Maison des Sciences de l'Homme-Alpes", + "type": "child", + "id": "https://ror.org/0467x8h16" + }, + { + "label": "Laboratoire écologie, évolution, interactions des systèmes amazoniens", + "type": "child", + "id": "https://ror.org/00gj7r351" + }, + { + "label": "STELLA MARE", + "type": "child", + "id": "https://ror.org/040r8ry56" + }, + { + "label": "Agence pour les Mathématiques en Interaction avec l'Entreprise et la Société", + "type": "child", + "id": "https://ror.org/02cmt9z73" + }, + { + "label": "Bases de données sur la Biodiversité, Ecologie, Environnement et Sociétés", + "type": "child", + "id": "https://ror.org/034gk7456" + }, + { + "label": "DMEX Centre for X-ray Imaging", + "type": "child", + "id": "https://ror.org/0213f8g15" + }, + { + "label": "Unité en Sciences Biologiques et Biotechnologies de Nantes", + "type": "child", + "id": "https://ror.org/05ef4v550" + }, + { + "label": "Matrice Extracellulaire et Dynamique Cellulaire MEDyC", + "type": "child", + "id": "https://ror.org/017p6sq53" + }, + { + "label": "Institut des Sciences de la Terre d'Orléans", + "type": "child", + "id": "https://ror.org/02t2hg116" + }, + { + "label": "Institut de Recherche sur la Biologie de l'Insecte UMR 7261", + "type": "child", + "id": "https://ror.org/04rp2mn26" + }, + { + "label": "Étude des Structures, des Processus d’Adaptation et des Changements de l’Espace", + "type": "child", + "id": "https://ror.org/052cnt662" + }, + { + "label": "Laboratoire Ligérien de Linguistique", + "type": "child", + "id": "https://ror.org/04s6f1186" + }, + { + "label": "Droit International Comparé et Européen", + "type": "child", + "id": "https://ror.org/04pwzyv45" + }, + { + "label": "Lasers, Plasmas et Procédés Photoniques", + "type": "child", + "id": "https://ror.org/01qfjp710" + }, + { + "label": "Centre universitaire de recherches sur l'Action Publique et le Politique Épistémologie & Sciences Sociales", + "type": "child", + "id": "https://ror.org/00rxdng69" + }, + { + "label": "Centre Gilles-Gaston Granger", + "type": "child", + "id": "https://ror.org/00axatv03" + }, + { + "label": "Irasia Recherche", + "type": "child", + "id": "https://ror.org/03bcyhr16" + }, + { + "label": "Institut de Recherches et d'Etudes sur les Mondes Arabes et Musulmans", + "type": "child", + "id": "https://ror.org/037f3ga09" + }, + { + "label": "Laboratoire d'Archéologie Médiévale et Moderne en Méditerranée", + "type": "child", + "id": "https://ror.org/05tb4mb78" + }, + { + "label": "Institut d'ethnologie méditerranéenne européenne et comparative", + "type": "child", + "id": "https://ror.org/050gdsq06" + }, + { + "label": "Temps, espaces, langages, Europe méridionale, Méditerranée", + "type": "child", + "id": "https://ror.org/010bhn875" + }, + { + "label": "Matériaux Divisés, Interfaces, Réactivité, Electrochimie", + "type": "child", + "id": "https://ror.org/00m587853" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Macromoléculaires", + "type": "child", + "id": "https://ror.org/02hwc1z56" + }, + { + "label": "Centre d'études supérieures de civilisation médiévale", + "type": "child", + "id": "https://ror.org/005hw9085" + }, + { + "label": "Laboratoire de Mathématiques et Applications", + "type": "child", + "id": "https://ror.org/02p2rk609" + }, + { + "label": "Laboratoire Interdisciplinaire de Recherches \"Sociétés, Sensibilités, Soin\"", + "type": "child", + "id": "https://ror.org/01rb31945" + }, + { + "label": "Centre d’études en sciences sociales du religieux", + "type": "child", + "id": "https://ror.org/01kysxr05" + }, + { + "label": "Trajectoires. De la sédentarisation à l’État", + "type": "child", + "id": "https://ror.org/03wdx6c48" + }, + { + "label": "Structure et Dynamique des Langues", + "type": "child", + "id": "https://ror.org/019df2r84" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Laboratoire Information Génomique et Structurale", + "type": "child", + "id": "https://ror.org/05v0fms67" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "Chimie Biologique pour le Vivant", + "type": "child", + "id": "https://ror.org/03cjyj977" + }, + { + "label": "Biologie Moléculaire Structurale et Processus Infectieux", + "type": "child", + "id": "https://ror.org/009b91528" + }, + { + "label": "Centre de Recherche d'Albi en génie des Procédés, des SOlides Divisés, de l'Énergie et de l'Environnement", + "type": "child", + "id": "https://ror.org/03cxnrt47" + }, + { + "label": "Acquisition et Analyse de Données pour l'Histoire naturelle", + "type": "child", + "id": "https://ror.org/05qhnf349" + }, + { + "label": "Observatoire des Sciences de l'Univers de Rennes", + "type": "child", + "id": "https://ror.org/05pwkex33" + }, + { + "label": "UCSD-CNRS Joint Research Chemistry Laboratory", + "type": "child", + "id": "https://ror.org/00t7axd27" + }, + { + "label": "Chronobiotron", + "type": "child", + "id": "https://ror.org/026fpwg41" + }, + { + "label": "Observatoire pour la Conservation de la Mégafaune Marine", + "type": "child", + "id": "https://ror.org/04wbg2z51" + }, + { + "label": "Architecture Histoire Technique Territoire Patrimoine", + "type": "child", + "id": "https://ror.org/05j8sgr10" + }, + { + "label": "Droit, religion, entreprise et société", + "type": "child", + "id": "https://ror.org/026p10446" + }, + { + "label": "Maison des Sciences de l'Homme Val de Loire", + "type": "child", + "id": "https://ror.org/03v4gsj38" + }, + { + "label": "GeoRessources", + "type": "child", + "id": "https://ror.org/04mq2px33" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "child", + "id": "https://ror.org/03949e763" + }, + { + "label": "Observatoire Terre et environnement de Lorraine", + "type": "child", + "id": "https://ror.org/02cyw3861" + }, + { + "label": "Huma-Num", + "type": "child", + "id": "https://ror.org/04ces3204" + }, + { + "label": "Organisation de Micro-Electronique Générale Avancée", + "type": "child", + "id": "https://ror.org/01mbkbh33" + }, + { + "label": "Laboratoire de Mathématiques et Modélisation d'Évry", + "type": "child", + "id": "https://ror.org/03jca6281" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "Chimie Biologie Innovation", + "type": "child", + "id": "https://ror.org/04bgzse17" + }, + { + "label": "Europe orientale, balkanique et médiane", + "type": "child", + "id": "https://ror.org/03ygj8248" + }, + { + "label": "Institut de Recherche en Musicologie", + "type": "child", + "id": "https://ror.org/04gf9wd48" + }, + { + "label": "Centre d’Archives en Philosophie, Histoire et Édition des Sciences", + "type": "child", + "id": "https://ror.org/03j7mz841" + }, + { + "label": "Centre de microcaractérisation Raimond Castaing", + "type": "child", + "id": "https://ror.org/03tvs6n06" + }, + { + "label": "France Génomique", + "type": "child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "CALMIP", + "type": "child", + "id": "https://ror.org/02k7ask46" + }, + { + "label": "Plateforme de chimie biologique intégrative de Strasbourg", + "type": "child", + "id": "https://ror.org/052pqt102" + }, + { + "label": "LINK - Laboratory for Innovative Key Materials and Structures", + "type": "child", + "id": "https://ror.org/03qt6f440" + }, + { + "label": "OpenEdition Center", + "type": "child", + "id": "https://ror.org/02aja8v82" + }, + { + "label": "Genopolys", + "type": "child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Laboratoire de Chimie-Physique Macromoléculaire", + "type": "child", + "id": "https://ror.org/0371yc337" + }, + { + "label": "Centre pour les humanités numériques et l'histoire de la justice", + "type": "child", + "id": "https://ror.org/02yvha224" + }, + { + "label": "AlgoSolis", + "type": "child", + "id": "https://ror.org/05481me13" + }, + { + "label": "Centre d'Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse", + "type": "child", + "id": "https://ror.org/01f5c5978" + }, + { + "label": "Passages", + "type": "child", + "id": "https://ror.org/00s40r567" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Climat, Environnement, Couplages et Incertitudes", + "type": "child", + "id": "https://ror.org/05t8ct211" + }, + { + "label": "Laboratoire de Linguistique de Nantes", + "type": "child", + "id": "https://ror.org/0009eec40" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "type": "child", + "id": "https://ror.org/05d362832" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "ScanMAT", + "type": "child", + "id": "https://ror.org/04fsxy317" + }, + { + "label": "PatriNat", + "type": "child", + "id": "https://ror.org/037eda396" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Institut Denis Poisson", + "type": "child", + "id": "https://ror.org/05djhd259" + }, + { + "label": "Temps, Mondes, Sociétés", + "type": "child", + "id": "https://ror.org/01nhp3z94" + }, + { + "label": "Laboratoire Lorrain de Chimie Moléculaire", + "type": "child", + "id": "https://ror.org/020azc393" + }, + { + "label": "Laboratoire de Physique et Chimie Théoriques", + "type": "child", + "id": "https://ror.org/02atkd403" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Vision pour la Robotique", + "type": "child", + "id": "https://ror.org/02v6phz91" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Epigenetics, Data, Politics", + "type": "child", + "id": "https://ror.org/00rg8bd79" + }, + { + "label": "Physique pour la médecine Paris", + "type": "child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Integrative Neuroscience and Cognition Center", + "type": "child", + "id": "https://ror.org/02fgakj19" + }, + { + "label": "Centre de RMN à Très Hauts Champs de Lyon", + "type": "child", + "id": "https://ror.org/004wefe19" + }, + { + "label": "SPPIN - Saints-Pères Paris Institute for Neurosciences", + "type": "child", + "id": "https://ror.org/01a4enz31" + }, + { + "label": "Laboratoire interdisciplinaire d’études sur les réflexivités - Fonds Yan Thomas", + "type": "child", + "id": "https://ror.org/046dap961" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Light, nanomaterials, nanotechnologies", + "type": "child", + "id": "https://ror.org/01waxag60" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "Centre de recherche sur le monde iranien", + "type": "child", + "id": "https://ror.org/0302qeq32" + }, + { + "label": "RESTORE", + "type": "child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Transitions Energétiques et Environnementales", + "type": "child", + "id": "https://ror.org/04cms1b08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Bordeaux Sciences Économiques", + "type": "child", + "id": "https://ror.org/014vz2d20" + }, + { + "label": "Microscopies, imageries et ressources analytiques en région Centre-Val de Loire", + "type": "child", + "id": "https://ror.org/050x42563" + }, + { + "label": "Laboratoire d’Informatique et Systèmes", + "type": "child", + "id": "https://ror.org/0257sgk90" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Catalyse, Polymérisation, Procédés et Matériaux", + "type": "child", + "id": "https://ror.org/02f6tst70" + }, + { + "label": "Fédération de recherche Matière et Interactions", + "type": "child", + "id": "https://ror.org/02wq1s711" + }, + { + "label": "Biologie du Chloroplaste et Perception de la Lumière chez les Microalgues", + "type": "child", + "id": "https://ror.org/04ezpxa16" + }, + { + "label": "Sciences et Technologies de la Musique et du Son", + "type": "child", + "id": "https://ror.org/025xvn046" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Sciences, Normes, Démocratie", + "type": "child", + "id": "https://ror.org/033eqsk67" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Institut Parisien de Chimie Physique et Théorique", + "type": "child", + "id": "https://ror.org/00xwwwr97" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Building Blocks for Future Electronics Laboratory", + "type": "child", + "id": "https://ror.org/01w108f05" + }, + { + "label": "Institut de la Mer de Villefranche", + "type": "child", + "id": "https://ror.org/05jpad840" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Cultures, Environnements, Arctique, Représentations, Climat", + "type": "child", + "id": "https://ror.org/01bt3e159" + }, + { + "label": "Institut photonique d'analyse non-destructive européen des matériaux anciens", + "type": "child", + "id": "https://ror.org/04k0drf78" + }, + { + "label": "Archéologie, Terre, Histoire, Sociétés", + "type": "child", + "id": "https://ror.org/011hdpx94" + }, + { + "label": "Institut de Chimie Moléculaire de l'Université de Bourgogne", + "type": "child", + "id": "https://ror.org/011ygpb73" + }, + { + "label": "Institut Chevreul", + "type": "child", + "id": "https://ror.org/048k52v18" + }, + { + "label": "Paris School of Economics", + "type": "child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "Laboratoire Ondes et Milieux Complexes", + "type": "child", + "id": "https://ror.org/02sb3b652" + }, + { + "label": "UMR Géographie-cités", + "type": "related", + "id": "https://ror.org/05yqfzf35" + }, + { + "label": "Campus Condorcet", + "type": "related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Centre for Nanoscience and Nanotechnology", + "type": "child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Département de mathématiques et applications", + "type": "child", + "id": "https://ror.org/03k9z2963" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Genome Integrity, RNA and Cancer", + "type": "child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "child", + "id": "https://ror.org/0211r2z47" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institute of Integrative Biology of the Cell", + "type": "child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Laboratoire Aimé Cotton", + "type": "child", + "id": "https://ror.org/021xexe56" + }, + { + "label": "Laboratoire de Chimie Physique", + "type": "child", + "id": "https://ror.org/016r2hq43" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire de physique des Solides", + "type": "child", + "id": "https://ror.org/02dyaew97" + }, + { + "label": "Laboratory of Theoretical Physics and Statistical Models", + "type": "child", + "id": "https://ror.org/00w67e447" + }, + { + "label": "Institut des Neurosciences Paris-Saclay", + "type": "child", + "id": "https://ror.org/002v40q27" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Albert Fert", + "type": "child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Agronomie", + "type": "child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "related", + "id": "https://ror.org/05v727m31" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02gmp5156.json b/rc-v1.43-v2/updates/02gmp5156.json new file mode 100644 index 000000000..eeb858099 --- /dev/null +++ b/rc-v1.43-v2/updates/02gmp5156.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 703448, + "geonames_details": { + "country_code": "UA", + "country_name": "Ukraine", + "lat": 50.45466, + "lng": 30.5238, + "name": "Kyiv" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100018227" + ], + "preferred": "100018227" + }, + { + "type": "wikidata", + "all": [ + "Q56367740" + ], + "preferred": "Q56367740" + } + ], + "id": "https://ror.org/02gmp5156", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://nrfu.org.ua" + }, + { + "type": "wikipedia", + "value": "https://uk.wikipedia.org/wiki/%D0%9D%D0%B0%D1%86%D1%96%D0%BE%D0%BD%D0%B0%D0%BB%D1%8C%D0%BD%D0%B8%D0%B9_%D1%84%D0%BE%D0%BD%D0%B4_%D0%B4%D0%BE%D1%81%D0%BB%D1%96%D0%B4%D0%B6%D0%B5%D0%BD%D1%8C_%D0%A3%D0%BA%D1%80%D0%B0%D1%97%D0%BD%D0%B8" + } + ], + "names": [ + { + "value": "National Research Foundation of Ukraine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Research Fund of Ukraine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Національний фонд досліджень України", + "types": [ + "label" + ], + "lang": "uk" + }, + { + "value": "NRFU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02gp35s66.json b/rc-v1.43-v2/updates/02gp35s66.json new file mode 100644 index 000000000..10c964b1f --- /dev/null +++ b/rc-v1.43-v2/updates/02gp35s66.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3463030, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -25.54778, + "lng": -54.58806, + "name": "Foz do Iguaçu" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0509 0033" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5574032" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.449851.5" + ], + "preferred": "grid.449851.5" + } + ], + "id": "https://ror.org/02gp35s66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://portal.unila.edu.br" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Federal_University_for_Latin_American_Integration" + } + ], + "names": [ + { + "value": "Universidade Federal da Integração Latino-Americana", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Federal University for Latin American Integration", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UNILA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02h919y47.json b/rc-v1.43-v2/updates/02h919y47.json new file mode 100644 index 000000000..86ebf0f80 --- /dev/null +++ b/rc-v1.43-v2/updates/02h919y47.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2938913, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.87167, + "lng": 8.65027, + "name": "Darmstadt" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0621 7921" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q692163" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.426436.1" + ], + "preferred": "grid.426436.1" + }, + { + "type": "fundref", + "all": [ + "501100010560" + ], + "preferred": "501100010560" + } + ], + "id": "https://ror.org/02h919y47", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.eumetsat.int" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/EUMETSAT" + } + ], + "names": [ + { + "value": "European Organisation for the Exploitation of Meteorological Satellites", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Europäische Organisation für die Nutzung meteorologischer Satelliten", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "EUMETSAT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02hj2xr21.json b/rc-v1.43-v2/updates/02hj2xr21.json new file mode 100644 index 000000000..6b7969c0f --- /dev/null +++ b/rc-v1.43-v2/updates/02hj2xr21.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 3583361, + "geonames_details": { + "country_code": "SV", + "country_name": "El Salvador", + "lat": 13.68935, + "lng": -89.18718, + "name": "San Salvador" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2303 2126" + ], + "preferred": "0000 0001 2303 2126" + }, + { + "type": "grid", + "all": [ + "grid.472386.c" + ], + "preferred": "grid.472386.c" + }, + { + "type": "wikidata", + "all": [ + "Q29002767" + ], + "preferred": "Q29002767" + } + ], + "id": "https://ror.org/02hj2xr21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uls.edu.sv" + } + ], + "names": [ + { + "value": "Universidad Luterana Salvadoreña", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Salvadoran Lutheran University", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ULS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02hq5p840.json b/rc-v1.43-v2/updates/02hq5p840.json new file mode 100644 index 000000000..eb093a15a --- /dev/null +++ b/rc-v1.43-v2/updates/02hq5p840.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 11995365, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.59866, + "lng": -3.71579, + "name": "Tres Cantos" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1794 0365" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30255894" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.433409.9" + ], + "preferred": "grid.433409.9" + } + ], + "id": "https://ror.org/02hq5p840", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.genetrix.es/" + } + ], + "names": [ + { + "value": "Genetrix (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02hqqna27.json b/rc-v1.43-v2/updates/02hqqna27.json new file mode 100644 index 000000000..431ef09ea --- /dev/null +++ b/rc-v1.43-v2/updates/02hqqna27.json @@ -0,0 +1,74 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1975, + "external_ids": [ + { + "all": [ + "Q7590700" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.416544.6" + ], + "preferred": "grid.416544.6", + "type": "grid" + } + ], + "id": "https://ror.org/02hqqna27", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/st-michaels-hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/St._Michael%27s_Hospital_(Bristol)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "St Michael's Hospital" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02j9n6e35.json b/rc-v1.43-v2/updates/02j9n6e35.json new file mode 100644 index 000000000..3d28e291a --- /dev/null +++ b/rc-v1.43-v2/updates/02j9n6e35.json @@ -0,0 +1,74 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [ + { + "all": [ + "grid.423639.9" + ], + "preferred": "grid.423639.9", + "type": "grid" + }, + { + "all": [ + "Q3781573" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02j9n6e35", + "links": [ + { + "type": "website", + "value": "https://www.cells.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ALBA_(synchrotron)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.48569, + "lng": 2.12171, + "name": "Cerdanyola del Vallès" + }, + "geonames_id": 6356285 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "ALBA Synchrotron (Spain)" + } + ], + "relationships": [ + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02jx3x895.json b/rc-v1.43-v2/updates/02jx3x895.json new file mode 100644 index 000000000..8a0b5cd9b --- /dev/null +++ b/rc-v1.43-v2/updates/02jx3x895.json @@ -0,0 +1,247 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1826, + "external_ids": [ + { + "all": [ + "501100000765", + "501100000685", + "501100008538", + "501100001285", + "501100006154", + "501100001299", + "501100001283", + "501100006637", + "501100001281", + "501100001282", + "501100000845", + "501100013915" + ], + "preferred": "501100000765", + "type": "fundref" + }, + { + "all": [ + "grid.83440.3b" + ], + "preferred": "grid.83440.3b", + "type": "grid" + }, + { + "all": [ + "0000 0001 2190 1201" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q193196" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02jx3x895", + "links": [ + { + "type": "website", + "value": "http://www.ucl.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_College_London" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Coleg Prifysgol Llundain" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "London University" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UCL" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University College London" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University College, London" + } + ], + "relationships": [ + { + "label": "Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics", + "type": "child", + "id": "https://ror.org/047d2d387" + }, + { + "label": "Institute of Structural and Molecular Biology", + "type": "child", + "id": "https://ror.org/05wsetc54" + }, + { + "label": "MRC Clinical Trials Unit at UCL", + "type": "child", + "id": "https://ror.org/001mm6w73" + }, + { + "label": "MRC Laboratory for Molecular Cell Biology", + "type": "child", + "id": "https://ror.org/00fv61j67" + }, + { + "label": "MRC Prion Unit", + "type": "child", + "id": "https://ror.org/043j90n04" + }, + { + "label": "MRC Unit for Lifelong Health and Ageing", + "type": "child", + "id": "https://ror.org/03kpvby98" + }, + { + "label": "NIHR Moorfields Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/004hydx84" + }, + { + "label": "Sierra Leone Urban Research Centre", + "type": "child", + "id": "https://ror.org/05s21y527" + }, + { + "label": "UCL Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/03r9qc142" + }, + { + "label": "University College London Qatar", + "type": "child", + "id": "https://ror.org/0078bd381" + }, + { + "label": "Wellcome / EPSRC Centre for Interventional and Surgical Sciences", + "type": "child", + "id": "https://ror.org/03r42r570" + }, + { + "label": "Wellcome Centre for Human Neuroimaging", + "type": "child", + "id": "https://ror.org/02704qw51" + }, + { + "label": "University of London", + "type": "parent", + "id": "https://ror.org/04cw6st05" + }, + { + "label": "Great Ormond Street Hospital", + "type": "related", + "id": "https://ror.org/00zn2c847" + }, + { + "label": "Moorfields Eye Hospital", + "type": "related", + "id": "https://ror.org/03tb37539" + }, + { + "label": "NIHR Queen Square Dementia Biomedical Research Unit", + "type": "related", + "id": "https://ror.org/04ksb3515" + }, + { + "label": "National Hospital for Neurology and Neurosurgery", + "type": "related", + "id": "https://ror.org/048b34d51" + }, + { + "label": "Royal National Orthopaedic Hospital", + "type": "related", + "id": "https://ror.org/043j9bc42" + }, + { + "label": "Royal National Orthopaedic Hospital NHS Trust", + "type": "related", + "id": "https://ror.org/03dx46b94" + }, + { + "label": "The Royal Free Hospital", + "type": "related", + "id": "https://ror.org/01ge67z96" + }, + { + "label": "University College Hospital", + "type": "related", + "id": "https://ror.org/00wrevg56" + }, + { + "label": "University College Hospital at Westmoreland Street", + "type": "related", + "id": "https://ror.org/02pkrn365" + }, + { + "label": "Wellcome Trust Centre for the History of Medicine", + "type": "related", + "id": "https://ror.org/05d64cx77" + }, + { + "label": "Whittington Hospital", + "type": "related", + "id": "https://ror.org/01ckbq028" + }, + { + "label": "UCL Hospitals Charitable Foundation", + "type": "child", + "id": "https://ror.org/05mz0pr34" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02k3baz05.json b/rc-v1.43-v2/updates/02k3baz05.json new file mode 100644 index 000000000..9df1f9b6d --- /dev/null +++ b/rc-v1.43-v2/updates/02k3baz05.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1993, + "external_ids": [ + { + "all": [ + "grid.469436.a" + ], + "preferred": "grid.469436.a", + "type": "grid" + }, + { + "all": [ + "0000 0001 2188 7489" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/02k3baz05", + "links": [ + { + "type": "website", + "value": "http://www.teologialugano.ch/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.01008, + "lng": 8.96004, + "name": "Lugano" + }, + "geonames_id": 2659836 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Facoltà di Teologia di Lugano" + } + ], + "relationships": [ + { + "label": "Università della Svizzera italiana", + "type": "parent", + "id": "https://ror.org/03c4atk17" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02ks8qq67.json b/rc-v1.43-v2/updates/02ks8qq67.json new file mode 100644 index 000000000..77cf79a67 --- /dev/null +++ b/rc-v1.43-v2/updates/02ks8qq67.json @@ -0,0 +1,162 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1825, + "external_ids": [ + { + "all": [ + "0000 0001 2149 4407" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100003825" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q265058" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.5018.c" + ], + "preferred": "grid.5018.c", + "type": "grid" + } + ], + "id": "https://ror.org/02ks8qq67", + "links": [ + { + "type": "website", + "value": "http://mta.hu/english/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Hungarian_Academy_of_Sciences" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 47.49835, + "lng": 19.04045, + "name": "Budapest" + }, + "geonames_id": 3054643 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hungarian Academy of Sciences" + }, + { + "lang": "hu", + "types": [ + "label" + ], + "value": "Magyar Tudományos Akadémia" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MTA" + } + ], + "relationships": [ + { + "label": "Alfréd Rényi Institute of Mathematics", + "type": "child", + "id": "https://ror.org/03vw74f64" + }, + { + "label": "HUN-REN Szegedi Biológiai Kutatóközpont", + "type": "child", + "id": "https://ror.org/016gb1631" + }, + { + "label": "Centre for Ecological Research", + "type": "child", + "id": "https://ror.org/04bhfmv97" + }, + { + "label": "Centre for Economic and Regional Studies", + "type": "child", + "id": "https://ror.org/051ea1411" + }, + { + "label": "Centre for Energy Research", + "type": "child", + "id": "https://ror.org/05wswj918" + }, + { + "label": "Centre for Social Sciences", + "type": "child", + "id": "https://ror.org/0492k9x16" + }, + { + "label": "Institute for Computer Science and Control", + "type": "child", + "id": "https://ror.org/0249v7n71" + }, + { + "label": "HUN-REN Institute of Experimental Medicine", + "type": "child", + "id": "https://ror.org/01jsgmp44" + }, + { + "label": "Library and Information Centre of the Hungarian Academy of Sciences", + "type": "child", + "id": "https://ror.org/04ws47v52" + }, + { + "label": "MTA-SZTE Research Group on Artificial Intelligence", + "type": "child", + "id": "https://ror.org/0507fk326" + }, + { + "label": "Research Centre for Astronomy and Earth Sciences", + "type": "child", + "id": "https://ror.org/036wvs663" + }, + { + "label": "Research Centre for the Humanities", + "type": "child", + "id": "https://ror.org/03wxxbs05" + }, + { + "label": "Wigner Research Centre for Physics", + "type": "child", + "id": "https://ror.org/035dsb084" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02kvxyf05.json b/rc-v1.43-v2/updates/02kvxyf05.json new file mode 100644 index 000000000..ef7c4a57f --- /dev/null +++ b/rc-v1.43-v2/updates/02kvxyf05.json @@ -0,0 +1,320 @@ +{ + "locations": [ + { + "geonames_id": 6455402, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.8205, + "lng": 2.1311, + "name": "Le Chesnay-Rocquencourt" + } + } + ], + "established": 1967, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2186 3954", + "0000 0001 2164 1438" + ], + "preferred": "0000 0001 2164 1438" + }, + { + "type": "fundref", + "all": [ + "100012950" + ], + "preferred": "100012950" + }, + { + "type": "wikidata", + "all": [ + "Q1146208" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5328.c" + ], + "preferred": "grid.5328.c" + } + ], + "id": "https://ror.org/02kvxyf05", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.inria.fr/en/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/French_Institute_for_Research_in_Computer_Science_and_Automation" + } + ], + "names": [ + { + "value": "French Institute for Research in Computer Science and Automation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut de recherche en informatique et en automatique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut national de recherche en informatique et en automatique", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "INRIA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Biometry and Evolutionary Biology Laboratory", + "type": "child", + "id": "https://ror.org/03skt0t88" + }, + { + "label": "Centre de Mathématiques Appliquées", + "type": "child", + "id": "https://ror.org/012e1xn46" + }, + { + "label": "Cognition Behaviour Technology", + "type": "child", + "id": "https://ror.org/04d9wv909" + }, + { + "label": "Computer Science Laboratory of the École Polytechnique", + "type": "child", + "id": "https://ror.org/04afed728" + }, + { + "label": "Département d'Informatique", + "type": "child", + "id": "https://ror.org/05y6rqs46" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Grenoble Computer Science Laboratory", + "type": "child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Inria Bordeaux - Sud-Ouest Research Centre", + "type": "child", + "id": "https://ror.org/03tjcj052" + }, + { + "label": "Inria Grenoble - Rhône-Alpes research centre", + "type": "child", + "id": "https://ror.org/00n8d6z93" + }, + { + "label": "Inria Nancy - Grand-Est research centre", + "type": "child", + "id": "https://ror.org/03fcjvn64" + }, + { + "label": "Inria Rennes - Bretagne Atlantique Research Centre", + "type": "child", + "id": "https://ror.org/04040yw90" + }, + { + "label": "Inria Saclay - Île-de-France Research Centre", + "type": "child", + "id": "https://ror.org/0315e5x55" + }, + { + "label": "Inria research centre Lille - Nord Europe", + "type": "child", + "id": "https://ror.org/04eej9726" + }, + { + "label": "Institut de Mathématiques de Bordeaux", + "type": "child", + "id": "https://ror.org/05m3r1b84" + }, + { + "label": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "type": "child", + "id": "https://ror.org/00myn0z94" + }, + { + "label": "Institut Élie Cartan de Lorraine", + "type": "child", + "id": "https://ror.org/04rvw8791" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Paul Painlevé", + "type": "child", + "id": "https://ror.org/043n4fm24" + }, + { + "label": "Laboratoire d'Informatique, Signaux et Systèmes de Sophia Antipolis", + "type": "child", + "id": "https://ror.org/01215r597" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratoire des Sciences du Numérique de Nantes", + "type": "child", + "id": "https://ror.org/02snf8m58" + }, + { + "label": "Laboratory Preuves, Programmes et Systèmes", + "type": "child", + "id": "https://ror.org/046p9e825" + }, + { + "label": "Laboratory of Mathematics and their Applications", + "type": "child", + "id": "https://ror.org/00g669j87" + }, + { + "label": "Lorraine Research Laboratory in Computer Science and its Applications", + "type": "child", + "id": "https://ror.org/02vnf0c38" + }, + { + "label": "Maison de la Simulation", + "type": "child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Montpellier Laboratory of Informatics, Robotics and Microelectronics", + "type": "child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Research Centre Inria Sophia Antipolis - Méditerranée", + "type": "child", + "id": "https://ror.org/01nzkaw91" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Unit of Mathematics, Pure and Applied", + "type": "child", + "id": "https://ror.org/05n21n105" + }, + { + "label": "Wave Propagation Mathematical Study and Simulation", + "type": "child", + "id": "https://ror.org/03gvm2667" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "Empenn", + "type": "child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "InBio: Experimental and Computational Methods for Modeling Cellular Processes", + "type": "child", + "id": "https://ror.org/01tnxwc41" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "related", + "id": "https://ror.org/05v727m31" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02mdbnd10.json b/rc-v1.43-v2/updates/02mdbnd10.json new file mode 100644 index 000000000..c67530920 --- /dev/null +++ b/rc-v1.43-v2/updates/02mdbnd10.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2751792, + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 53.20139, + "lng": 5.80859, + "name": "Leeuwarden" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1793 4571" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3920759" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.450080.9" + ], + "preferred": "grid.450080.9" + } + ], + "id": "https://ror.org/02mdbnd10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.hvhl.nl" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Van_Hall_Larenstein" + } + ], + "names": [ + { + "value": "Van Hall Larenstein University of Applied Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Van Hall Larenstein", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hogeschool Van Hall Larenstein", + "types": [ + "label" + ], + "lang": "nl" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02mks6v46.json b/rc-v1.43-v2/updates/02mks6v46.json new file mode 100644 index 000000000..bb92f1eba --- /dev/null +++ b/rc-v1.43-v2/updates/02mks6v46.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1837, + "external_ids": [ + { + "all": [ + "grid.254921.9" + ], + "preferred": "grid.254921.9", + "type": "grid" + }, + { + "all": [ + "0000 0001 2301 338X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1179599" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02mks6v46", + "links": [ + { + "type": "website", + "value": "http://www.depauw.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/DePauw_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.64449, + "lng": -86.86473, + "name": "Greencastle" + }, + "geonames_id": 4258273 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "DePauw University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Indiana Asbury University" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02mnw9q71.json b/rc-v1.43-v2/updates/02mnw9q71.json new file mode 100644 index 000000000..4554c475d --- /dev/null +++ b/rc-v1.43-v2/updates/02mnw9q71.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 3026108, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.76507, + "lng": 2.26655, + "name": "Châtenay-Malabry" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0368 8779" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q51781179" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503249.9" + ], + "preferred": "grid.503249.9" + } + ], + "id": "https://ror.org/02mnw9q71", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.umr-cnrs8612.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Institut Galien Paris-Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute Galien Paris-Saclay", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut Galien Paris Sud", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IGPS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02mtt1z51.json b/rc-v1.43-v2/updates/02mtt1z51.json new file mode 100644 index 000000000..83f118b84 --- /dev/null +++ b/rc-v1.43-v2/updates/02mtt1z51.json @@ -0,0 +1,75 @@ +{ + "admin": { + "created": { + "date": "2021-09-23", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.511076.4" + ], + "preferred": "grid.511076.4", + "type": "grid" + }, + { + "all": [ + "100015250" + ], + "preferred": "100015250", + "type": "fundref" + } + ], + "id": "https://ror.org/02mtt1z51", + "links": [ + { + "type": "website", + "value": "https://www.bristolbrc.nihr.ac.uk/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "NIHR Bristol Biomedical Research Centre" + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + }, + { + "label": "University of Bristol", + "type": "parent", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02ndr3r66.json b/rc-v1.43-v2/updates/02ndr3r66.json new file mode 100644 index 000000000..7f0f4db1b --- /dev/null +++ b/rc-v1.43-v2/updates/02ndr3r66.json @@ -0,0 +1,57 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1895, + "external_ids": [ + { + "all": [ + "grid.414221.0" + ], + "preferred": "grid.414221.0", + "type": "grid" + } + ], + "id": "https://ror.org/02ndr3r66", + "links": [ + { + "type": "website", + "value": "http://www.hopitalmarielannelongue.fr/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.78889, + "lng": 2.27078, + "name": "Le Plessis-Robinson" + }, + "geonames_id": 3002650 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hôpital Marie Lannelongue" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02p4far57.json b/rc-v1.43-v2/updates/02p4far57.json new file mode 100644 index 000000000..e503aea48 --- /dev/null +++ b/rc-v1.43-v2/updates/02p4far57.json @@ -0,0 +1,114 @@ +{ + "locations": [ + { + "geonames_id": 4887398, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.85003, + "lng": -87.65005, + "name": "Chicago" + } + } + ], + "established": 1974, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0619 6876" + ], + "preferred": "0000 0004 0619 6876" + }, + { + "type": "fundref", + "all": [ + "100011249" + ], + "preferred": "100011249" + }, + { + "type": "wikidata", + "all": [ + "Q105710663" + ], + "preferred": "Q105710663" + } + ], + "id": "https://ror.org/02p4far57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cancer.northwestern.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Robert_H._Lurie_Comprehensive_Cancer_Center" + } + ], + "names": [ + { + "value": "Robert H. Lurie Comprehensive Cancer Center of Northwestern University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Robert H. Lurie Comprehensive Cancer Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Lurie Comprehensive Cancer Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Robert H. Lurie Cancer Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Lurie Cancer Center", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Northwestern Medicine", + "type": "parent", + "id": "https://ror.org/04fzwnh64" + }, + { + "label": "Northwestern University", + "type": "related", + "id": "https://ror.org/000e0be47" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02pg81z63.json b/rc-v1.43-v2/updates/02pg81z63.json new file mode 100644 index 000000000..75aade7bc --- /dev/null +++ b/rc-v1.43-v2/updates/02pg81z63.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9238 6887" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.428313.f" + ], + "preferred": "grid.428313.f" + } + ], + "id": "https://ror.org/02pg81z63", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.tauli.cat" + } + ], + "names": [ + { + "value": "Corporació Sanitària Parc Taulí", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Consorci Corporació Sanitària Parc Taulí", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Parc Taulí Sabadell Hospital Universitari", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Parc Taulí Hospital Universitari de Sabadell", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hospital de Sabadell–Parc Taulí", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Parc Taulí Hospital Universitari", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Corporación Sanitaria y Universitaria Parc Taulí", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "CSPT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02pkshz09.json b/rc-v1.43-v2/updates/02pkshz09.json new file mode 100644 index 000000000..45822efdb --- /dev/null +++ b/rc-v1.43-v2/updates/02pkshz09.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 706483, + "geonames_details": { + "country_code": "UA", + "country_name": "Ukraine", + "lat": 49.98081, + "lng": 36.25272, + "name": "Kharkiv" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8309 4515" + ], + "preferred": "0000 0004 8309 4515" + }, + { + "type": "grid", + "all": [ + "grid.445518.9" + ], + "preferred": "grid.445518.9" + }, + { + "type": "wikidata", + "all": [ + "Q4496336" + ], + "preferred": "Q4496336" + } + ], + "id": "https://ror.org/02pkshz09", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://univd.edu.ua" + } + ], + "names": [ + { + "value": "Kharkiv National University of Internal Affairs", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Харківський національний університет внутрішніх справ", + "types": [ + "label" + ], + "lang": "uk" + }, + { + "value": "KhNUIA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02qjttz75.json b/rc-v1.43-v2/updates/02qjttz75.json new file mode 100644 index 000000000..50995e007 --- /dev/null +++ b/rc-v1.43-v2/updates/02qjttz75.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432254.6" + ], + "preferred": "grid.432254.6" + } + ], + "id": "https://ror.org/02qjttz75", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.adexcop.com" + } + ], + "names": [ + { + "value": "Optimized Adaptive Control Systems", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Control Adaptativo Predictivo Experto", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "ADEX", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02qnnz951.json b/rc-v1.43-v2/updates/02qnnz951.json new file mode 100644 index 000000000..a9c83a6e5 --- /dev/null +++ b/rc-v1.43-v2/updates/02qnnz951.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2790869, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.45413, + "lng": 3.95229, + "name": "Mons" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2184 581X" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1742161" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.8364.9" + ], + "preferred": "grid.8364.9" + } + ], + "id": "https://ror.org/02qnnz951", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://web.umons.ac.be" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Mons" + } + ], + "names": [ + { + "value": "University of Mons", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Université de Mons", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02qz3vm75.json b/rc-v1.43-v2/updates/02qz3vm75.json new file mode 100644 index 000000000..3621bda98 --- /dev/null +++ b/rc-v1.43-v2/updates/02qz3vm75.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2886242, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.93333, + "lng": 6.95, + "name": "Cologne" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9125 6001" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q737480" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.414694.a" + ], + "preferred": "grid.414694.a" + } + ], + "id": "https://ror.org/02qz3vm75", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iqwig.de" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Institute_for_Quality_and_Efficiency_in_Health_Care" + } + ], + "names": [ + { + "value": "Institute for Quality and Efficiency in Health Care", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut für Qualität und Wirtschaftlichkeit im Gesundheitswesen", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "IQWiG", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02r839n55.json b/rc-v1.43-v2/updates/02r839n55.json new file mode 100644 index 000000000..f6cd0ed40 --- /dev/null +++ b/rc-v1.43-v2/updates/02r839n55.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1844, + "external_ids": [ + { + "all": [ + "grid.419426.c" + ], + "preferred": "grid.419426.c", + "type": "grid" + }, + { + "all": [ + "0000 0004 0445 8115" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7401824" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02r839n55", + "links": [ + { + "type": "website", + "value": "https://www.saintmarys.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Saint_Mary%27s_College_(Indiana)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.70019, + "lng": -86.23793, + "name": "Notre Dame" + }, + "geonames_id": 8469294 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Saint Mary's College" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02rc97e94.json b/rc-v1.43-v2/updates/02rc97e94.json new file mode 100644 index 000000000..34eef41bc --- /dev/null +++ b/rc-v1.43-v2/updates/02rc97e94.json @@ -0,0 +1,116 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1972, + "external_ids": [ + { + "all": [ + "501100007069" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.7778.f" + ], + "preferred": "grid.7778.f", + "type": "grid" + }, + { + "all": [ + "0000 0004 1937 0319" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1752540" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02rc97e94", + "links": [ + { + "type": "website", + "value": "http://www.unical.it/portale/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Calabria" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 39.33154, + "lng": 16.18041, + "name": "Rende" + }, + "geonames_id": 2523623 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNICAL" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Calabria" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Università della Calabria" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Universität Kalabrien" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de la calabre" + } + ], + "relationships": [ + { + "label": "INFN Gruppo Collegato di Cosenza", + "type": "related", + "id": "https://ror.org/039epzh36" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02rrdvm96.json b/rc-v1.43-v2/updates/02rrdvm96.json new file mode 100644 index 000000000..0d9a13180 --- /dev/null +++ b/rc-v1.43-v2/updates/02rrdvm96.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 1796236, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.22222, + "lng": 121.45806, + "name": "Shanghai" + } + } + ], + "established": 2000, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0061 254X" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.507739.f" + ], + "preferred": "grid.507739.f" + } + ], + "id": "https://ror.org/02rrdvm96", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://cemcs.cas.cn" + } + ], + "names": [ + { + "value": "Center for Excellence in Molecular Cell Science", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Biochemistry and Cell Biology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中科院分子细胞卓越创新中心", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "Chinese Academy of Sciences", + "type": "parent", + "id": "https://ror.org/034t30j35" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02rx3b187.json b/rc-v1.43-v2/updates/02rx3b187.json new file mode 100644 index 000000000..0c135f1b9 --- /dev/null +++ b/rc-v1.43-v2/updates/02rx3b187.json @@ -0,0 +1,306 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2016, + "external_ids": [ + { + "all": [ + "100012952", + "100013349" + ], + "preferred": "100012952", + "type": "fundref" + }, + { + "all": [ + "grid.450307.5" + ], + "preferred": "grid.450307.5", + "type": "grid" + }, + { + "all": [ + "Q945876" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02rx3b187", + "links": [ + { + "type": "website", + "value": "https://www.univ-grenoble-alpes.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Grenoble_Alpes_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.1787, + "lng": 5.76281, + "name": "Saint-Martin-d'Hères" + }, + "geonames_id": 2978317 + } + ], + "names": [ + { + "lang": "en", + "types": [ + "label" + ], + "value": "Grenoble Alpes University" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UGA" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Université Grenoble Alpes" + } + ], + "relationships": [ + { + "label": "Centre Interuniversitaire de MicroElectronique et Nanotechnologies", + "type": "child", + "id": "https://ror.org/000tdrn36" + }, + { + "label": "Grenoble Applied Economics Lab", + "type": "child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Grenoble Institute of Technology", + "type": "child", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Institut Néel", + "type": "child", + "id": "https://ror.org/04dbzz632" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institute of Environmental Geosciences", + "type": "child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Interdisciplinaire de Physique", + "type": "child", + "id": "https://ror.org/023n9q531" + }, + { + "label": "Laboratoire de Linguistique et Didactique des Langues Etrangères et Maternelles", + "type": "child", + "id": "https://ror.org/05588ks88" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Langages, Littératures, Sociétés. Études Transfrontalières et Internationales", + "type": "child", + "id": "https://ror.org/0157h5t87" + }, + { + "label": "Pierre Mendès-France University", + "type": "child", + "id": "https://ror.org/02f7wz369" + }, + { + "label": "Stendhal University", + "type": "child", + "id": "https://ror.org/03yppfm65" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "Institut Carnot PolyNat", + "type": "child", + "id": "https://ror.org/047p7mf25" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Laboratoire de Recherche sur les Apprentissages en Contexte", + "type": "child", + "id": "https://ror.org/05c99vk74" + }, + { + "label": "Département de Pharmacochimie Moléculaire", + "type": "child", + "id": "https://ror.org/04fhvpc68" + }, + { + "label": "Laboratoire Inter-universitaire de Psychologie: Personnalité, Cognition, Changement Social", + "type": "child", + "id": "https://ror.org/03jrb0276" + }, + { + "label": "PHotonique ELectronique et Ingénierie QuantiqueS", + "type": "child", + "id": "https://ror.org/01kbr1737" + }, + { + "label": "Laboratoire Modélisation et Exploration des Matériaux", + "type": "child", + "id": "https://ror.org/00ndvqf03" + }, + { + "label": "Maison des Sciences de l'Homme-Alpes", + "type": "child", + "id": "https://ror.org/0467x8h16" + }, + { + "label": "Agence pour les Mathématiques en Interaction avec l'Entreprise et la Société", + "type": "child", + "id": "https://ror.org/02cmt9z73" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "child", + "id": "https://ror.org/03949e763" + }, + { + "label": "Centre d'Etudes et de Recherche sur la diplomatie, l’Administration Publique et le Politique", + "type": "child", + "id": "https://ror.org/04ndt7n58" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Centre d'Etudes et de Recherches Appliquées à la Gestion", + "type": "child", + "id": "https://ror.org/0509qp208" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "child", + "id": "https://ror.org/03e044190" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Centre Hospitalier Universitaire de Grenoble", + "type": "related", + "id": "https://ror.org/041rhpw39" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "related", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "related", + "id": "https://ror.org/05v727m31" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02rxc7m23.json b/rc-v1.43-v2/updates/02rxc7m23.json new file mode 100644 index 000000000..3578716dd --- /dev/null +++ b/rc-v1.43-v2/updates/02rxc7m23.json @@ -0,0 +1,135 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1952, + "external_ids": [ + { + "all": [ + "501100004435", + "501100002832" + ], + "preferred": "501100004435", + "type": "fundref" + }, + { + "all": [ + "grid.5924.a" + ], + "preferred": "grid.5924.a", + "type": "grid" + }, + { + "all": [ + "0000 0004 1937 0271" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q926068" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02rxc7m23", + "links": [ + { + "type": "website", + "value": "https://www.unav.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Navarra" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.81687, + "lng": -1.64323, + "name": "Pamplona" + }, + "geonames_id": 3114472 + } + ], + "names": [ + { + "lang": "eu", + "types": [ + "label" + ], + "value": "Nafarroako Unibertsitatea" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNAV" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Universidad de Navarra" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "University of Navarra" + } + ], + "relationships": [ + { + "label": "Asociación de Amigos de la Universidad de Navarra", + "type": "child", + "id": "https://ror.org/00qy6se24" + }, + { + "label": "Fundación Universitaria de Navarra", + "type": "child", + "id": "https://ror.org/0226mqz95" + }, + { + "label": "Clinica Universidad de Navarra", + "type": "related", + "id": "https://ror.org/03phm3r45" + }, + { + "label": "Complejo Hospitalario de Navarra", + "type": "related", + "id": "https://ror.org/011787436" + }, + { + "label": "Navarre Institute of Health Research", + "type": "related", + "id": "https://ror.org/023d5h353" + }, + { + "label": "Fundación para la Investigación Médica Aplicada", + "type": "related", + "id": "https://ror.org/01qew8q20" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02st4q439.json b/rc-v1.43-v2/updates/02st4q439.json new file mode 100644 index 000000000..1d74604d9 --- /dev/null +++ b/rc-v1.43-v2/updates/02st4q439.json @@ -0,0 +1,100 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1959, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2286 3155" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2388377" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418214.a" + ], + "preferred": "grid.418214.a" + } + ], + "id": "https://ror.org/02st4q439", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://icsn.cnrs.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Institut_de_Chimie_des_Substances_Naturelles" + } + ], + "names": [ + { + "value": "Institut de Chimie des Substances Naturelles", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute for the chemistry of natural substances", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ICSN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02trgdk48.json b/rc-v1.43-v2/updates/02trgdk48.json new file mode 100644 index 000000000..eefdd88c8 --- /dev/null +++ b/rc-v1.43-v2/updates/02trgdk48.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3110044, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.31283, + "lng": -1.97499, + "name": "Donostia / San Sebastian" + } + } + ], + "established": 1983, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9388 0529" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.424978.4" + ], + "preferred": "grid.424978.4" + } + ], + "id": "https://ror.org/02trgdk48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gaia.es" + } + ], + "names": [ + { + "value": "Association of Electronic and Information Technologies", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Asociación Cluster de Telecomunicaciones", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "GAIA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02vjkv261.json b/rc-v1.43-v2/updates/02vjkv261.json new file mode 100644 index 000000000..2bb26efe4 --- /dev/null +++ b/rc-v1.43-v2/updates/02vjkv261.json @@ -0,0 +1,1324 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2186 6389" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100001677" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1474517" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.7429.8" + ], + "preferred": "grid.7429.8" + } + ], + "id": "https://ror.org/02vjkv261", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.inserm.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Inserm" + } + ], + "names": [ + { + "value": "Inserm", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "French Institute of Health and Medical Research", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Institut National de la Santé et de la Recherche Médicale", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "INSERM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Adaptateurs de Signalisation en Hématologie", + "type": "child", + "id": "https://ror.org/03837fc46" + }, + { + "label": "Adhesion and Inflammation Lab", + "type": "child", + "id": "https://ror.org/055ymkj32" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Cancer Research Center of Lyon", + "type": "child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Cancer Research Center of Toulouse", + "type": "child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Cancer Thematics Institute", + "type": "child", + "id": "https://ror.org/04zdwr798" + }, + { + "label": "Cell Biology, Development and Evolution", + "type": "child", + "id": "https://ror.org/024k3xe80" + }, + { + "label": "Center for Interdisciplinary Research in Biology", + "type": "child", + "id": "https://ror.org/01mvzn566" + }, + { + "label": "Center for Research and Interdisciplinarity", + "type": "child", + "id": "https://ror.org/00zbj9525" + }, + { + "label": "Center for Research in Medicine, Science, Health, Mental Health and Society", + "type": "child", + "id": "https://ror.org/02v2jyq75" + }, + { + "label": "Center for Research on Inflammation", + "type": "child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Centre Méditerranéen de Médecine Moléculaire", + "type": "child", + "id": "https://ror.org/029rfe283" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre de Biochimie Structurale", + "type": "child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre de Référence Déficits Immunitaires Héréditaires", + "type": "child", + "id": "https://ror.org/009p5nb11" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Cognition, Action, and Sensorimotor Plasticity", + "type": "child", + "id": "https://ror.org/03xe54902" + }, + { + "label": "Cognitive Neuroimaging Lab", + "type": "child", + "id": "https://ror.org/056wdpc91" + }, + { + "label": "Délégation Paris 11", + "type": "child", + "id": "https://ror.org/0589k3111" + }, + { + "label": "Délégation Paris 12", + "type": "child", + "id": "https://ror.org/00sbttv49" + }, + { + "label": "Délégation Paris 5", + "type": "child", + "id": "https://ror.org/02e0y6e06" + }, + { + "label": "Délégation Paris 6", + "type": "child", + "id": "https://ror.org/03rt48n94" + }, + { + "label": "Délégation Paris 7", + "type": "child", + "id": "https://ror.org/00bw5n526" + }, + { + "label": "Délégation Régionale Auvergne-Rhône-Alpes", + "type": "child", + "id": "https://ror.org/0530j9m17" + }, + { + "label": "Délégation Régionale Est", + "type": "child", + "id": "https://ror.org/04kv7c795" + }, + { + "label": "Délégation Régionale Grand Ouest", + "type": "child", + "id": "https://ror.org/01qa4rf46" + }, + { + "label": "Délégation Régionale Nord Ouest", + "type": "child", + "id": "https://ror.org/00jmxvy70" + }, + { + "label": "Délégation Régionale Nouvelle-Aquitaine", + "type": "child", + "id": "https://ror.org/044rb3f07" + }, + { + "label": "Délégation Régionale Occitanie Méditerranée", + "type": "child", + "id": "https://ror.org/01ddr6d46" + }, + { + "label": "Délégation Régionale Occitanie Pyrénées", + "type": "child", + "id": "https://ror.org/03xssrp53" + }, + { + "label": "Délégation Régionale Provence-Alpes-Côte d’Azur et Corse", + "type": "child", + "id": "https://ror.org/01s8rwd67" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Equipe Soutenue par la Région et par l'Inserm", + "type": "child", + "id": "https://ror.org/03e801006" + }, + { + "label": "Genetics, Genomics and Bioinformatics", + "type": "child", + "id": "https://ror.org/01rfstj90" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Hemostase Inflammation Thrombosis", + "type": "child", + "id": "https://ror.org/03ka94606" + }, + { + "label": "Imagine Institute for Genetic Diseases", + "type": "child", + "id": "https://ror.org/05rq3rb55" + }, + { + "label": "Imaging and Brain", + "type": "child", + "id": "https://ror.org/01eem7c55" + }, + { + "label": "Immunity and Cancer", + "type": "child", + "id": "https://ror.org/01zefvs55" + }, + { + "label": "Immunology, Inflammation, Infectiology and Microbiology", + "type": "child", + "id": "https://ror.org/00r454w59" + }, + { + "label": "Inserm Transfert", + "type": "child", + "id": "https://ror.org/01wftfc57" + }, + { + "label": "Institute for Advanced Biosciences", + "type": "child", + "id": "https://ror.org/05kwbf598" + }, + { + "label": "Institut Cochin", + "type": "child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Européen de Chimie et Biologie", + "type": "child", + "id": "https://ror.org/04agqs597" + }, + { + "label": "Institut Jacques Monod", + "type": "child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut NeuroMyoGène", + "type": "child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut d'Économie Publique", + "type": "child", + "id": "https://ror.org/014ycqe77" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Biologie de Lille", + "type": "child", + "id": "https://ror.org/05gd4yq49" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Neurobiologie de la Méditerranée", + "type": "child", + "id": "https://ror.org/02jthx987" + }, + { + "label": "Institut de Neurosciences des Systèmes", + "type": "child", + "id": "https://ror.org/019kqby73" + }, + { + "label": "Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux", + "type": "child", + "id": "https://ror.org/03xg8m734" + }, + { + "label": "Institut de Recherche en Santé, Environnement et Travail", + "type": "child", + "id": "https://ror.org/01p178v10" + }, + { + "label": "Institut du Cerveau", + "type": "child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Fer à Moulin", + "type": "child", + "id": "https://ror.org/03x9frp33" + }, + { + "label": "Institut du Thorax", + "type": "child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Institute for Regenerative Medicine & Biotherapy", + "type": "child", + "id": "https://ror.org/00b8mh310" + }, + { + "label": "Institute of Biology Valrose", + "type": "child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Institut de Myologie", + "type": "child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Institute of Research on Cancer and Aging in Nice", + "type": "child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "International Center for Infectiology Research", + "type": "child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire CarMeN", + "type": "child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratory for Optics & Biosciences", + "type": "child", + "id": "https://ror.org/000p29f53" + }, + { + "label": "Laboratory for Vascular Translational Science", + "type": "child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Institut Langevin", + "type": "child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Lipides, Nutrition, Cancer", + "type": "child", + "id": "https://ror.org/04d70nb60" + }, + { + "label": "Lyon Neuroscience Research Center", + "type": "child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Molecular and Structural Basis of Life Sciences", + "type": "child", + "id": "https://ror.org/00j5dj575" + }, + { + "label": "Mondor Institute of Biomedical Research", + "type": "child", + "id": "https://ror.org/04qe59j94" + }, + { + "label": "Neurosciences, Cognitive Sciences, Neurology and Psychiatry", + "type": "child", + "id": "https://ror.org/05e7p5n27" + }, + { + "label": "Nutrition Obesity & Risk of Thrombosis", + "type": "child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Oncogenesis Stress Signaling", + "type": "child", + "id": "https://ror.org/00bf6bf92" + }, + { + "label": "Paris Cardiovascular Research Center", + "type": "child", + "id": "https://ror.org/03gvnh520" + }, + { + "label": "Pathologie et Virologie Moléculaire", + "type": "child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "type": "child", + "id": "https://ror.org/01et6g203" + }, + { + "label": "Physiopathologie et Epidémiologie des Maladies Respiratoires", + "type": "child", + "id": "https://ror.org/04n8sc212" + }, + { + "label": "Physiopathology, metabolism and nutrition", + "type": "child", + "id": "https://ror.org/00cmmh940" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Public Health", + "type": "child", + "id": "https://ror.org/04wbsq162" + }, + { + "label": "Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète", + "type": "child", + "id": "https://ror.org/05xanhp90" + }, + { + "label": "Signalisation, Neurobiologie et Cancer", + "type": "child", + "id": "https://ror.org/01cmdpn82" + }, + { + "label": "Skin Research Center", + "type": "child", + "id": "https://ror.org/0579jh693" + }, + { + "label": "Stem-Cell and Brain Research Institute", + "type": "child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Structure et Instabilité des Génomes", + "type": "child", + "id": "https://ror.org/05pchb838" + }, + { + "label": "Theories and Approaches of Genomic Complexity", + "type": "child", + "id": "https://ror.org/025sfbe73" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Systèmes avancés de délivrance de principes actifs", + "type": "child", + "id": "https://ror.org/053ppfe96" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Investigation Clinique - Innovation Technologique de Lille", + "type": "child", + "id": "https://ror.org/04p4jgt68" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "IMPact de l'Environnement Chimique sur la Santé humaine", + "type": "child", + "id": "https://ror.org/0455vgw31" + }, + { + "label": "Institute for Translational Research in Inflammation", + "type": "child", + "id": "https://ror.org/03qy9z186" + }, + { + "label": "Lille Neurosciences & Cognition", + "type": "child", + "id": "https://ror.org/04p94ax69" + }, + { + "label": "Médicaments et Molécules pour Agir sur les Systèmes Vivants", + "type": "child", + "id": "https://ror.org/0086epd30" + }, + { + "label": "OncoThAI", + "type": "child", + "id": "https://ror.org/04q29nn62" + }, + { + "label": "Laboratoire de Physiologie Cellulaire", + "type": "child", + "id": "https://ror.org/05fjffm04" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Recherche translationnelle sur le diabète", + "type": "child", + "id": "https://ror.org/03pbmtd68" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Bacterial Regulatory RNAs & Medicine", + "type": "child", + "id": "https://ror.org/031y0x195" + }, + { + "label": "Microenvironment and B-cells: Immunopathology, Cell, Differentiation and Cancer", + "type": "child", + "id": "https://ror.org/05p7fmf80" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Fondation pour l'Innovation en Cardiométabolisme et Nutrition", + "type": "child", + "id": "https://ror.org/0045xgt95" + }, + { + "label": "Centre d’Investigation Clinique 1436", + "type": "child", + "id": "https://ror.org/033z83z59" + }, + { + "label": "Hypoxie et Poumon", + "type": "child", + "id": "https://ror.org/02mtpz628" + }, + { + "label": "Centre d'Investigation Clinique - Epidémiologie Clinique Saint-Etienne", + "type": "child", + "id": "https://ror.org/044dp1584" + }, + { + "label": "NeuroDiderot", + "type": "child", + "id": "https://ror.org/014ndnr76" + }, + { + "label": "Centre d'Investigation Clinique de Besançon", + "type": "child", + "id": "https://ror.org/04nk3ny21" + }, + { + "label": "Empenn", + "type": "child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Centre d'Investigation Clinique de Vaccinologie Cochin-Pasteur", + "type": "child", + "id": "https://ror.org/01c1p7750" + }, + { + "label": "Centre d'investigation clinique Quinze-Vingts", + "type": "child", + "id": "https://ror.org/01exas502" + }, + { + "label": "Institute for Translational Medicine and Liver Disease", + "type": "child", + "id": "https://ror.org/00jvqbw52" + }, + { + "label": "Physiologie et Physiopathlogie Endocriniennes", + "type": "child", + "id": "https://ror.org/05kz79f96" + }, + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Innovations Thérapeutiques en Hémostase", + "type": "child", + "id": "https://ror.org/02jp0cd74" + }, + { + "label": "Physiopathologie, cibles et thérapies de la polyarthrite rhumatoïde", + "type": "child", + "id": "https://ror.org/05vqkgf08" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "Biologie des maladies cardiovasculaires", + "type": "child", + "id": "https://ror.org/0463z7496" + }, + { + "label": "Nutrition, Diabète et Cerveau", + "type": "child", + "id": "https://ror.org/052yj6c27" + }, + { + "label": "Pharmacologie et Transplantation", + "type": "child", + "id": "https://ror.org/013dngs07" + }, + { + "label": "Pathologies Pulmonaires et Plasticité Cellulaire", + "type": "child", + "id": "https://ror.org/02w7ezv91" + }, + { + "label": "Physiopathologie, autoimmunité, maladies neuromusculaire et thérapie régénératrice", + "type": "child", + "id": "https://ror.org/034feyf26" + }, + { + "label": "Marseille Medical Genetics", + "type": "child", + "id": "https://ror.org/01e4wd589" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Centre d'Investigation Clinique Antilles Guyane", + "type": "child", + "id": "https://ror.org/029hdt144" + }, + { + "label": "Immunologie - Immunopathologie - Immunothérapie", + "type": "child", + "id": "https://ror.org/05dbe0t82" + }, + { + "label": "Cancer, Hétérogénéité, Instabilité et Plasticité", + "type": "child", + "id": "https://ror.org/03t4pc386" + }, + { + "label": "Génétique et biologie du développement", + "type": "child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "HIPI - Human Immunology, Pathophysiology and Immunotherapy", + "type": "child", + "id": "https://ror.org/008e1sp22" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Computationnelles", + "type": "child", + "id": "https://ror.org/01e8w0016" + }, + { + "label": "Institut Droit et Santé", + "type": "child", + "id": "https://ror.org/01ddqfh11" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "child", + "id": "https://ror.org/048qk7477" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Etude longitudinale française depuis l'enfance", + "type": "child", + "id": "https://ror.org/03cxgcr75" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Laboratory for the Bioengineering of Tissues", + "type": "child", + "id": "https://ror.org/012zmcc30" + }, + { + "label": "Bacterial Virulence and Chronic Infections", + "type": "child", + "id": "https://ror.org/044jxv425" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "TBM-Core", + "type": "child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Centre d’Investigation Clinique des Hôpitaux Universitaires de Strasbourg", + "type": "child", + "id": "https://ror.org/03zsnyg10" + }, + { + "label": "Bordeaux Imaging Center", + "type": "child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "child", + "id": "https://ror.org/034bena10" + }, + { + "label": "RMeS - Regenerative Medicine and Skeleton", + "type": "child", + "id": "https://ror.org/025agbr41" + }, + { + "label": "Pharmacologie des anti-infectieux et antibiorésistance", + "type": "child", + "id": "https://ror.org/041v99f68" + }, + { + "label": "Nutrition, Inflammation et axe Microbiote-Intestin-Cerveau", + "type": "child", + "id": "https://ror.org/040d87505" + }, + { + "label": "Ischémie Reperfusion, Métabolisme et Inflammation Stérile en Transplantation", + "type": "child", + "id": "https://ror.org/05kkw6065" + }, + { + "label": "Laboratoire de Neurosciences Expérimentales et Cliniques", + "type": "child", + "id": "https://ror.org/04rfxk768" + }, + { + "label": "Anti-infectieux : supports moléculaires des résistances et innovations thérapeutiques", + "type": "child", + "id": "https://ror.org/0458p8g61" + }, + { + "label": "Institut d’Epidémiologie et de Neurologie Tropicale", + "type": "child", + "id": "https://ror.org/023h4a821" + }, + { + "label": "Centre d'Étude des Pathologies Respiratoires", + "type": "child", + "id": "https://ror.org/01vxptj17" + }, + { + "label": "Groupe de Recherches sur l’Analyse Multimodale de la Fonction Cérébrale", + "type": "child", + "id": "https://ror.org/02a9mrq41" + }, + { + "label": "Plateforme d'information et de services pour les maladies rares et les médicaments orphelins", + "type": "child", + "id": "https://ror.org/05thj7870" + }, + { + "label": "Biopathologie de la myéline, neuroprotection et stratégies thérapeutiques", + "type": "child", + "id": "https://ror.org/000n1xh78" + }, + { + "label": "Optimisation Thérapeutique en Neuropsychopharmacologie", + "type": "child", + "id": "https://ror.org/05wzabs02" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Infection, Antimicrobials, Modelling, Evolution", + "type": "child", + "id": "https://ror.org/05hqep952" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "France Génomique", + "type": "child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Neurophysiologie respiratoire expérimentale et clinique", + "type": "child", + "id": "https://ror.org/0259td381" + }, + { + "label": "Genopolys", + "type": "child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Organisation Nucléaire et Oncogenèse", + "type": "child", + "id": "https://ror.org/05q8d3662" + }, + { + "label": "Physiopathogénèse et Traitement des Maladies du Foie", + "type": "child", + "id": "https://ror.org/01zrk7293" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "child", + "id": "https://ror.org/00p73bw06" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Pathogenèse des infections vasculaires", + "type": "child", + "id": "https://ror.org/00gjnk018" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Maladies Rares: Génétique et Métabolisme", + "type": "child", + "id": "https://ror.org/01wvg5605" + }, + { + "label": "Research on healthcare performance", + "type": "child", + "id": "https://ror.org/02ncy5p18" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Physiopathologie et imagerie des troubles neurologiques", + "type": "child", + "id": "https://ror.org/00vsvph51" + }, + { + "label": "Neuropsychologie et Imagerie de la Mémoire Humaine", + "type": "child", + "id": "https://ror.org/04f6tkx67" + }, + { + "label": "Mobilités: Vieillissement, Pathologie, Santé", + "type": "child", + "id": "https://ror.org/028rasm92" + }, + { + "label": "Imagerie Moléculaire et Stratégies Théranostiques", + "type": "child", + "id": "https://ror.org/03y61y350" + }, + { + "label": "Biologie et pharmacologie des plaquettes sanguines : hémostase, thrombose, transfusion", + "type": "child", + "id": "https://ror.org/03qge6j93" + }, + { + "label": "Physique pour la médecine Paris", + "type": "child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Laboratoire d'imagerie translationnelle en oncologie", + "type": "child", + "id": "https://ror.org/05qy9ka59" + }, + { + "label": "RESTORE", + "type": "child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Génomique fonctionnelle comparative", + "type": "child", + "id": "https://ror.org/016nv8j08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "L’Inserm dans Paris et l’Île-de-France Centre Nord", + "type": "child", + "id": "https://ror.org/00jyt4d57" + }, + { + "label": "Défaillance Cardiovasculaire Aiguë et Chronique", + "type": "child", + "id": "https://ror.org/05ft9wv42" + }, + { + "label": "Nutrition-Génétique et Exposition aux Risques Environnementaux", + "type": "child", + "id": "https://ror.org/053d03003" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "The Enteric Nervous System in Gut and Brain Disorders", + "type": "child", + "id": "https://ror.org/01kbkse74" + }, + { + "label": "UMS Phénotypage du petit animal", + "type": "child", + "id": "https://ror.org/05pm2xt51" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Fondation Voir & Entendre", + "type": "child", + "id": "https://ror.org/01ph0t361" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Maladies génétiques d’expression pédiatrique", + "type": "child", + "id": "https://ror.org/0387w4y93" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Production et analyse de données en sciences de la vie et en santé", + "type": "child", + "id": "https://ror.org/03p2d3k93" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénieurie des Connaissances en e-Santé", + "type": "child", + "id": "https://ror.org/01jr1v359" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Centre de Recherche en Myologie", + "type": "child", + "id": "https://ror.org/02e3eqz10" + }, + { + "label": "PremUP", + "type": "child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Nutrition et obésité : approches systémiques", + "type": "child", + "id": "https://ror.org/00qdphm77" + }, + { + "label": "Unité de recherche sur les maladies cardiovasculaires et métaboliques", + "type": "child", + "id": "https://ror.org/043y2tx42" + }, + { + "label": "Institut Pierre Louis d‘Épidémiologie et de Santé Publique", + "type": "child", + "id": "https://ror.org/02qqh1125" + }, + { + "label": "Maladies rénales fréquentes et rares : des mécanismes moléculaires à la médecine personnalisée", + "type": "child", + "id": "https://ror.org/01x3ydm75" + }, + { + "label": "Infection et inflammation", + "type": "child", + "id": "https://ror.org/021sh3243" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Laboratoire physiopathologie et pharmacologie clinique de la douleur", + "type": "child", + "id": "https://ror.org/02k243t26" + }, + { + "label": "Handicap neuromusculaire : Physiopathologie, Biothérapie et Pharmacologie appliquées", + "type": "child", + "id": "https://ror.org/02nxezb95" + }, + { + "label": "Neuropsychologie Cognitive et Physiopathologie de la Schizophrénie", + "type": "child", + "id": "https://ror.org/02zwf7d57" + }, + { + "label": "COMETE - Mobilités : Vieillissement, pathologie, santé", + "type": "child", + "id": "https://ror.org/018z38380" + }, + { + "label": "Endothélium, valvulopathies et insuffisance cardiaque", + "type": "child", + "id": "https://ror.org/017ed2k28" + }, + { + "label": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "type": "child", + "id": "https://ror.org/035gq6r08" + }, + { + "label": "Center for Research in Transplantation and Translational Immunology", + "type": "child", + "id": "https://ror.org/01165k395" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "methodS in Patient-centered outcomes and HEalth ResEarch", + "type": "child", + "id": "https://ror.org/013m8h627" + }, + { + "label": "Translational Research in Gene Therapy", + "type": "child", + "id": "https://ror.org/02tg88m31" + }, + { + "label": "Dynamique Microbienne associée aux Infections Urinaires et Respiratoires", + "type": "child", + "id": "https://ror.org/01a6c6c20" + }, + { + "label": "Génomique du cancer et du cerveau", + "type": "child", + "id": "https://ror.org/05k71g406" + }, + { + "label": "Unité de recherche interdisciplinaire pour la prévention et le traitement des cancers", + "type": "child", + "id": "https://ror.org/04b8tg719" + }, + { + "label": "Neuroendocrine, Endocrine and Germinal Differentiation Communication", + "type": "child", + "id": "https://ror.org/02yvdat18" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "child", + "id": "https://ror.org/05dy6wv04" + }, + { + "label": "Interactions Cellulaires et Physiopathologie Hépathique", + "type": "child", + "id": "https://ror.org/05dpfhh73" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "child", + "id": "https://ror.org/030przz70" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02wfhk785.json b/rc-v1.43-v2/updates/02wfhk785.json new file mode 100644 index 000000000..fbfa5a2ee --- /dev/null +++ b/rc-v1.43-v2/updates/02wfhk785.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 2772810, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.06833, + "lng": 16.35607, + "name": "Laxenburg" + } + } + ], + "established": 1972, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1955 9478" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100011859" + ], + "preferred": "501100011859" + }, + { + "type": "wikidata", + "all": [ + "Q212102" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.75276.31" + ], + "preferred": "grid.75276.31" + } + ], + "id": "https://ror.org/02wfhk785", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iiasa.ac.at" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/International_Institute_for_Applied_Systems_Analysis" + } + ], + "names": [ + { + "value": "International Institute for Applied Systems Analysis", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Internationales Institut Fuer Angewandte Systemanalyse", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IIASA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Complexity Science Hub Vienna", + "type": "related", + "id": "https://ror.org/023dz9m50" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02x3f7722.json b/rc-v1.43-v2/updates/02x3f7722.json new file mode 100644 index 000000000..4f037b8b3 --- /dev/null +++ b/rc-v1.43-v2/updates/02x3f7722.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 5008327, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.10976, + "lng": -86.48002, + "name": "Saint Joseph" + } + } + ], + "established": 1899, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0443 0139" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q22059525" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.490238.4" + ], + "preferred": "grid.490238.4" + } + ], + "id": "https://ror.org/02x3f7722", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.lakelandhealth.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Lakeland_Health" + } + ], + "names": [ + { + "value": "Lakeland Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "successor", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02x5c5y60.json b/rc-v1.43-v2/updates/02x5c5y60.json new file mode 100644 index 000000000..0082e3de2 --- /dev/null +++ b/rc-v1.43-v2/updates/02x5c5y60.json @@ -0,0 +1,93 @@ +{ + "locations": [ + { + "geonames_id": 3123921, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.30544, + "lng": -2.88116, + "name": "Derio" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0639 2420", + "0000 0004 0435 4789" + ], + "preferred": "0000 0004 0639 2420" + }, + { + "type": "grid", + "all": [ + "grid.420175.5" + ], + "preferred": "grid.420175.5" + }, + { + "type": "wikidata", + "all": [ + "Q30282406" + ], + "preferred": "Q30282406" + } + ], + "id": "https://ror.org/02x5c5y60", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cicbiogune.es/" + } + ], + "names": [ + { + "value": "CIC bioGUNE", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centro de Investigación Cooperativa en Biociencias", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Center for Cooperative Research in Biosciences", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Asociacion Centro De Investigacion Cooperativa En Biociencias", + "types": [ + "label" + ], + "lang": "pt" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02xe5ns62.json b/rc-v1.43-v2/updates/02xe5ns62.json new file mode 100644 index 000000000..8d073cbd1 --- /dev/null +++ b/rc-v1.43-v2/updates/02xe5ns62.json @@ -0,0 +1,117 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1906, + "external_ids": [ + { + "all": [ + "501100004024" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.258164.c" + ], + "preferred": "grid.258164.c", + "type": "grid" + }, + { + "all": [ + "0000 0004 1790 3548" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2687517" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02xe5ns62", + "links": [ + { + "type": "website", + "value": "https://english.jnu.edu.cn/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Jinan_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 23.11667, + "lng": 113.25, + "name": "Guangzhou" + }, + "geonames_id": 1809858 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "JNU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Jinan University" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "暨南大学" + } + ], + "relationships": [ + { + "label": "Guangdong-Hongkong-Macau Joint Laboratory of Collaborative Innovation for Environmental Quality", + "type": "child", + "id": "https://ror.org/02gwsx029" + }, + { + "label": "First Affiliated Hospital of Jinan University", + "type": "related", + "id": "https://ror.org/05d5vvz89" + }, + { + "label": "ShenZhen People’s Hospital", + "type": "related", + "id": "https://ror.org/01hcefx46" + }, + { + "label": "The Affiliated Shunde Hospital of Jinan University", + "type": "child", + "id": "https://ror.org/04x2nq985" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02xkjwb21.json b/rc-v1.43-v2/updates/02xkjwb21.json new file mode 100644 index 000000000..4d4e2caa0 --- /dev/null +++ b/rc-v1.43-v2/updates/02xkjwb21.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.434658.8" + ], + "preferred": "grid.434658.8" + } + ], + "id": "https://ror.org/02xkjwb21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fundacionconfemetal.com" + } + ], + "names": [ + { + "value": "Fundación Confemetal", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02xnnng09.json b/rc-v1.43-v2/updates/02xnnng09.json new file mode 100644 index 000000000..a1b532531 --- /dev/null +++ b/rc-v1.43-v2/updates/02xnnng09.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0390 3862" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30261615" + ], + "preferred": "Q30261615" + }, + { + "type": "grid", + "all": [ + "grid.462965.a" + ], + "preferred": "grid.462965.a" + } + ], + "id": "https://ror.org/02xnnng09", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.centralesupelec.fr/fr/geeps-group-electrical-engineering-paris" + } + ], + "names": [ + { + "value": "Laboratoire de Génie Électrique et Électronique de Paris", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Group of Electrical Engineering - Paris Laboratory", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Group of Electrical Engineering - Paris", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "GeePs", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "CentraleSupélec", + "type": "parent", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02y0cs367.json b/rc-v1.43-v2/updates/02y0cs367.json new file mode 100644 index 000000000..068838302 --- /dev/null +++ b/rc-v1.43-v2/updates/02y0cs367.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 9972834, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -33.83488, + "lng": 151.05703, + "name": "Newington" + } + } + ], + "established": 1926, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8855 3435" + ], + "preferred": "0000 0000 8855 3435" + }, + { + "type": "grid", + "all": [ + "grid.489063.0" + ], + "preferred": "grid.489063.0" + }, + { + "type": "wikidata", + "all": [ + "Q7279568" + ], + "preferred": "Q7279568" + } + ], + "id": "https://ror.org/02y0cs367", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fpnsw.org.au/" + } + ], + "names": [ + { + "value": "Family Planning NSW", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Family Planning Australia", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02y6dp041.json b/rc-v1.43-v2/updates/02y6dp041.json new file mode 100644 index 000000000..060dfc021 --- /dev/null +++ b/rc-v1.43-v2/updates/02y6dp041.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100016153" + ], + "preferred": "100016153" + } + ], + "id": "https://ror.org/02y6dp041", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.energy.gov/oe/office-electricity" + } + ], + "names": [ + { + "value": "Office of Electricity", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "United States Department of Energy Office of Electricity", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "U.S. Department of Energy Office of Electricity", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Office of Electricity Delivery and Energy Reliability", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Grid Systems and Components", + "type": "child", + "id": "https://ror.org/04bym8a28" + }, + { + "label": "Grid Controls and Communications Division", + "type": "child", + "id": "https://ror.org/04b1tq154" + }, + { + "label": "United States Department of Energy", + "type": "parent", + "id": "https://ror.org/01bj3aw27" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02ygek028.json b/rc-v1.43-v2/updates/02ygek028.json new file mode 100644 index 000000000..470da8e70 --- /dev/null +++ b/rc-v1.43-v2/updates/02ygek028.json @@ -0,0 +1,130 @@ +{ + "locations": [ + { + "geonames_id": 2800866, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + } + } + ], + "established": 1858, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0941 6203" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100008137" + ], + "preferred": "501100008137" + }, + { + "type": "wikidata", + "all": [ + "Q1391752" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434229.a" + ], + "preferred": "grid.434229.a" + } + ], + "id": "https://ror.org/02ygek028", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.usaintlouis.be/sl/1058.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Universit%C3%A9_Saint-Louis_Bruxelles" + } + ], + "names": [ + { + "value": "UCLouvain Saint-Louis Brussels", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Facultés Universitaires Saint-Louis", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université Saint-Louis - Bruxelles", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université Saint-Louis", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Saint-Louis University", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Facultés universitaires saint-louis", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "USLB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "UCLouvain", + "type": "parent", + "id": "https://ror.org/02495e989" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02yjyfs84.json b/rc-v1.43-v2/updates/02yjyfs84.json new file mode 100644 index 000000000..ed3f0fd2b --- /dev/null +++ b/rc-v1.43-v2/updates/02yjyfs84.json @@ -0,0 +1,73 @@ +{ + "locations": [ + { + "geonames_id": 2946447, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.73438, + "lng": 7.09549, + "name": "Bonn" + } + } + ], + "established": 2022, + "external_ids": [], + "id": "https://ror.org/02yjyfs84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mpinb.mpg.de" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Max-Planck-Institut_f%C3%BCr_Neurobiologie_des_Verhaltens_-_caesar" + } + ], + "names": [ + { + "value": "Max Planck Institute for Neurobiology of Behavior – caesar", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stiftung Caesar", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MPINB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Max Planck Society", + "type": "parent", + "id": "https://ror.org/01hhn8329" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02zms4m18.json b/rc-v1.43-v2/updates/02zms4m18.json new file mode 100644 index 000000000..96cd5c682 --- /dev/null +++ b/rc-v1.43-v2/updates/02zms4m18.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1988, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2191 9006" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434668.b" + ], + "preferred": "grid.434668.b" + } + ], + "id": "https://ror.org/02zms4m18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fundaciononce.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ONCE" + } + ], + "names": [ + { + "value": "Fundación ONCE", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fundación ONCE for Cooperation and Social Inclusion of Persons with Disabilities", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ONCE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/02zv3kp89.json b/rc-v1.43-v2/updates/02zv3kp89.json new file mode 100644 index 000000000..1023afd50 --- /dev/null +++ b/rc-v1.43-v2/updates/02zv3kp89.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2874545, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.12773, + "lng": 11.62916, + "name": "Magdeburg" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.494321.9" + ], + "preferred": "grid.494321.9" + }, + { + "type": "wikidata", + "all": [ + "Q123647955" + ], + "preferred": "Q123647955" + } + ], + "id": "https://ror.org/02zv3kp89", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mule.sachsen-anhalt.de" + } + ], + "names": [ + { + "value": "Ministerium für Umwelt, Landwirtschaft und Energie des Landes Sachsen-Anhalt", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry for the Environment, Agriculture and Energy of the State of Saxony-Anhalt", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MULE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0306aeb62.json b/rc-v1.43-v2/updates/0306aeb62.json new file mode 100644 index 000000000..08ca73447 --- /dev/null +++ b/rc-v1.43-v2/updates/0306aeb62.json @@ -0,0 +1,107 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-02-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1867, + "external_ids": [ + { + "all": [ + "100011958" + ], + "preferred": "100011958", + "type": "fundref" + }, + { + "all": [ + "grid.264262.6" + ], + "preferred": "grid.264262.6", + "type": "grid" + }, + { + "all": [ + "0000 0001 0725 9953" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7603617" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/0306aeb62", + "links": [ + { + "type": "website", + "value": "http://www.brockport.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Brockport" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.21367, + "lng": -77.93918, + "name": "Brockport" + }, + "geonames_id": 5110227 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "SUNY Brockport" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "State University of New York at Brockport" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "The College at Brockport: State University of New York" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/030d6wr93.json b/rc-v1.43-v2/updates/030d6wr93.json new file mode 100644 index 000000000..9e4a2225d --- /dev/null +++ b/rc-v1.43-v2/updates/030d6wr93.json @@ -0,0 +1,94 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": 2018, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q52607321" + ], + "preferred": "Q52607321" + } + ], + "id": "https://ror.org/030d6wr93", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://lima.unistra.fr" + } + ], + "names": [ + { + "value": "Laboratoire d'innovation moléculaire et applications", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire d’Innovation Moléculaire & Applications", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LIMA - Laboratoire d'innovation moléculaire et applications", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LIMA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Upper Alsace", + "type": "parent", + "id": "https://ror.org/04k8k6n84" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/030gd0911.json b/rc-v1.43-v2/updates/030gd0911.json new file mode 100644 index 000000000..cd21a5cf4 --- /dev/null +++ b/rc-v1.43-v2/updates/030gd0911.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2509954, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.47391, + "lng": -0.37966, + "name": "Valencia" + } + } + ], + "established": 1984, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1807 8930" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423830.e" + ], + "preferred": "grid.423830.e" + } + ], + "id": "https://ror.org/030gd0911", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.aidima.eu/" + } + ], + "names": [ + { + "value": "AIDIMA Technology Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AIDIMA - Instituto Tecnológico del Mueble", + "types": [ + "label" + ], + "lang": "es" + } + ], + "relationships": [ + { + "label": "Instituto Tecnológico Metalmecánico, Mueble, Madera, Embalaje y Afines", + "type": "successor", + "id": "https://ror.org/057f9wg13" + } + ], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/030przz70.json b/rc-v1.43-v2/updates/030przz70.json new file mode 100644 index 000000000..6f9492957 --- /dev/null +++ b/rc-v1.43-v2/updates/030przz70.json @@ -0,0 +1,120 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": 1980, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 3260" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.464078.9" + ], + "preferred": "grid.464078.9" + } + ], + "id": "https://ror.org/030przz70", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ibmc.cnrs.fr/laboratoire/m3i/" + } + ], + "names": [ + { + "value": "Modèles Insectes de l'Immunité Innée", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Immune Response and Development in Insects", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Réponse Immunitaire et Développement chez les Insectes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Insect Models of Innate Immunity", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "RIDI", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "M3I", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "parent", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/030tc8e27.json b/rc-v1.43-v2/updates/030tc8e27.json new file mode 100644 index 000000000..a9e5d5654 --- /dev/null +++ b/rc-v1.43-v2/updates/030tc8e27.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3996069, + "geonames_details": { + "country_code": "MX", + "country_name": "Mexico", + "lat": 32.62781, + "lng": -115.45446, + "name": "Mexicali" + } + } + ], + "established": 1982, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30293933" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.441602.5" + ], + "preferred": "grid.441602.5" + } + ], + "id": "https://ror.org/030tc8e27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ueepmxl.edu.mx" + } + ], + "names": [ + { + "value": "Universidad Estatal de Estudios Pedagógicos", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "UEEP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03126ng80.json b/rc-v1.43-v2/updates/03126ng80.json new file mode 100644 index 000000000..03a6e9e77 --- /dev/null +++ b/rc-v1.43-v2/updates/03126ng80.json @@ -0,0 +1,102 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2000, + "external_ids": [ + { + "all": [ + "grid.449020.b" + ], + "preferred": "grid.449020.b", + "type": "grid" + }, + { + "all": [ + "0000 0004 1792 5560" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2319621" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03126ng80", + "links": [ + { + "type": "website", + "value": "https://www.univda.it/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Aosta_Valley_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.73764, + "lng": 7.31722, + "name": "Aosta" + }, + "geonames_id": 3182997 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNIVDA" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Aosta Valley" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Università della Valle d'Aosta" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de la vallée d'aoste" + } + ], + "relationships": [ + { + "label": "NODES S.c.a.r.l", + "type": "related", + "id": "https://ror.org/04hp1ky92" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0315e5x55.json b/rc-v1.43-v2/updates/0315e5x55.json new file mode 100644 index 000000000..2cfb5dadd --- /dev/null +++ b/rc-v1.43-v2/updates/0315e5x55.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q18156000" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457355.5" + ], + "preferred": "grid.457355.5" + } + ], + "id": "https://ror.org/0315e5x55", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.inria.fr/en/centre/saclay" + } + ], + "names": [ + { + "value": "Inria Saclay - Île-de-France Research Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Inria Saclay - Île de France", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [ + { + "label": "French Institute for Research in Computer Science and Automation", + "type": "parent", + "id": "https://ror.org/02kvxyf05" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/031p4kj21.json b/rc-v1.43-v2/updates/031p4kj21.json new file mode 100644 index 000000000..14e8c71d1 --- /dev/null +++ b/rc-v1.43-v2/updates/031p4kj21.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1935, + "external_ids": [ + { + "all": [ + "0000 0004 0399 4514" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4969003" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.418482.3" + ], + "preferred": "grid.418482.3", + "type": "grid" + } + ], + "id": "https://ror.org/031p4kj21", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/bristol-royal-infirmary/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Bristol_Royal_Infirmary" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bristol Royal Infirmary" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BRI" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/031yjqj32.json b/rc-v1.43-v2/updates/031yjqj32.json new file mode 100644 index 000000000..5c2ce98fc --- /dev/null +++ b/rc-v1.43-v2/updates/031yjqj32.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6138495, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.30713, + "lng": -73.26259, + "name": "Saint-Jean-sur-Richelieu" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0392 8621" + ], + "preferred": "0000 0004 0392 8621" + }, + { + "type": "wikidata", + "all": [ + "Q3009991" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462162.5" + ], + "preferred": "grid.462162.5" + } + ], + "id": "https://ror.org/031yjqj32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cstjean.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/C%C3%A9gep_de_Saint-Jean-sur-Richelieu" + } + ], + "names": [ + { + "value": "Cégep Saint-Jean-sur-Richelieu", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0321g0743.json b/rc-v1.43-v2/updates/0321g0743.json new file mode 100644 index 000000000..c5901cf3d --- /dev/null +++ b/rc-v1.43-v2/updates/0321g0743.json @@ -0,0 +1,110 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1926, + "external_ids": [ + { + "all": [ + "0000 0001 2284 9388" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100008017" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q266227" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.14925.3b" + ], + "preferred": "grid.14925.3b", + "type": "grid" + } + ], + "id": "https://ror.org/0321g0743", + "links": [ + { + "type": "website", + "value": "http://www.gustaveroussy.fr/en" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Institut_Gustave_Roussy" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.7939, + "lng": 2.35992, + "name": "Villejuif" + }, + "geonames_id": 2968705 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institut Gustave Roussy" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Institut Gustave-Roussy" + } + ], + "relationships": [ + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "child", + "id": "https://ror.org/00p73bw06" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/032jk8892.json b/rc-v1.43-v2/updates/032jk8892.json new file mode 100644 index 000000000..fb631dc1e --- /dev/null +++ b/rc-v1.43-v2/updates/032jk8892.json @@ -0,0 +1,102 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1984, + "external_ids": [ + { + "all": [ + "501100009536" + ], + "preferred": "501100009536", + "type": "fundref" + }, + { + "all": [ + "grid.412423.2" + ], + "preferred": "grid.412423.2", + "type": "grid" + }, + { + "all": [ + "0000 0001 0369 3226" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7488784" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/032jk8892", + "links": [ + { + "type": "website", + "value": "http://www.sastra.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Shanmugha_Arts,_Science,_Technology_%26_Research_Academy" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 10.78523, + "lng": 79.13909, + "name": "Thanjavur" + }, + "geonames_id": 1254649 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "SASTRA University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Shanmugha Arts, Science, Technology & Research Academy" + }, + { + "lang": "ta", + "types": [ + "label" + ], + "value": "சண்முகா கலை, அறிவியல், தொழில்நுட்பம் மற்றும் ஆராய்ச்சி அகாதமி" + } + ], + "relationships": [ + { + "label": "Elite School of Optometry", + "type": "related", + "id": "https://ror.org/00vvz3k68" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/032mthd30.json b/rc-v1.43-v2/updates/032mthd30.json new file mode 100644 index 000000000..db03be70b --- /dev/null +++ b/rc-v1.43-v2/updates/032mthd30.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3118594, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.32718, + "lng": -3.7635, + "name": "Leganés" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.423614.6" + ], + "preferred": "grid.423614.6" + } + ], + "id": "https://ror.org/032mthd30", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.aitemin.es/index_e.php" + } + ], + "names": [ + { + "value": "Association for Research and Industrial Development of Natural Resources", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Asociación para Investigación y el Desarrollo Industrial de los Recursos Naturales", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "AITEMIN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/032qgrc76.json b/rc-v1.43-v2/updates/032qgrc76.json new file mode 100644 index 000000000..844d55d0f --- /dev/null +++ b/rc-v1.43-v2/updates/032qgrc76.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1816, + "external_ids": [ + { + "all": [ + "100010968" + ], + "preferred": "100010968", + "type": "fundref" + }, + { + "all": [ + "grid.264275.0" + ], + "preferred": "grid.264275.0", + "type": "grid" + }, + { + "all": [ + "0000 0000 9900 0190" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7603628" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/032qgrc76", + "links": [ + { + "type": "website", + "value": "http://www.potsdam.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/State_University_of_New_York_at_Potsdam" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.66978, + "lng": -74.98131, + "name": "Potsdam" + }, + "geonames_id": 5132103 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "SUNY Potsdam" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "State University of New York at Potsdam" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/033x0mt18.json b/rc-v1.43-v2/updates/033x0mt18.json new file mode 100644 index 000000000..ca5ed9916 --- /dev/null +++ b/rc-v1.43-v2/updates/033x0mt18.json @@ -0,0 +1,94 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2003, + "external_ids": [ + { + "all": [ + "Q51780120" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.503398.4" + ], + "preferred": "grid.503398.4", + "type": "grid" + } + ], + "id": "https://ror.org/033x0mt18", + "links": [ + { + "type": "website", + "value": "https://umr-system.cirad.fr/en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Tropical and Mediterranean Cropping System Functioning and Management" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "UMR System" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Fonctionnement et Conduite des Systèmes de Culture Tropicaux et Méditerranéens" + } + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/033zmj163.json b/rc-v1.43-v2/updates/033zmj163.json new file mode 100644 index 000000000..30913e8f6 --- /dev/null +++ b/rc-v1.43-v2/updates/033zmj163.json @@ -0,0 +1,105 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-04-12", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1889, + "external_ids": [ + { + "all": [ + "100007288" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.264274.1" + ], + "preferred": "grid.264274.1", + "type": "grid" + }, + { + "all": [ + "0000 0001 0724 5877" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7603626" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/033zmj163", + "links": [ + { + "type": "website", + "value": "http://www.plattsburgh.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Plattsburgh" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.69949, + "lng": -73.45291, + "name": "Plattsburgh" + }, + "geonames_id": 5131692 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Plattsburgh State" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "SUNY Plattsburgh" + } + ], + "relationships": [ + { + "label": "Lake Champlain Sea Grant", + "type": "child", + "id": "https://ror.org/05k70qf45" + }, + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/034dfs572.json b/rc-v1.43-v2/updates/034dfs572.json new file mode 100644 index 000000000..a6fe4d32a --- /dev/null +++ b/rc-v1.43-v2/updates/034dfs572.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.512209.d" + ], + "preferred": "grid.512209.d" + } + ], + "id": "https://ror.org/034dfs572", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ecopathinternational.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ecopath" + } + ], + "names": [ + { + "value": "Ecopath International Initiative", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "EII", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/034vb5t35.json b/rc-v1.43-v2/updates/034vb5t35.json new file mode 100644 index 000000000..f204ab5ac --- /dev/null +++ b/rc-v1.43-v2/updates/034vb5t35.json @@ -0,0 +1,115 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1851, + "external_ids": [ + { + "all": [ + "501100000650" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.424926.f" + ], + "preferred": "grid.424926.f", + "type": "grid" + }, + { + "all": [ + "0000 0004 0417 0461" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q50575536" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/034vb5t35", + "links": [ + { + "type": "website", + "value": "http://www.nhs.uk/Services/hospitals/Overview/DefaultView.aspx?id=1416" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Royal_Marsden_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "RM" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Royal Marsden Hospital" + } + ], + "relationships": [ + { + "label": "Royal Marsden NHS Foundation Trust", + "type": "parent", + "id": "https://ror.org/0008wzh48" + }, + { + "label": "Imperial College London", + "type": "related", + "id": "https://ror.org/041kmwe10" + }, + { + "label": "Institute of Cancer Research", + "type": "related", + "id": "https://ror.org/043jzw605" + }, + { + "label": "University of London", + "type": "related", + "id": "https://ror.org/04cw6st05" + }, + { + "label": "Royal Marsden Cancer Charity", + "type": "child", + "id": "https://ror.org/058ne9w36" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/035gq6r08.json b/rc-v1.43-v2/updates/035gq6r08.json new file mode 100644 index 000000000..c0514816b --- /dev/null +++ b/rc-v1.43-v2/updates/035gq6r08.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011879" + ], + "preferred": "501100011879" + }, + { + "type": "wikidata", + "all": [ + "Q124525851" + ], + "preferred": "Q124525851" + } + ], + "id": "https://ror.org/035gq6r08", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.labex-lermit.fr" + } + ], + "names": [ + { + "value": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "LabEx LERMIT", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Laboratory of Excellence in Research on Medication and Innovative Therapeutics", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LERMIT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0364rd617.json b/rc-v1.43-v2/updates/0364rd617.json new file mode 100644 index 000000000..f7b6eb7b9 --- /dev/null +++ b/rc-v1.43-v2/updates/0364rd617.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2509954, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.47391, + "lng": -0.37966, + "name": "Valencia" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2162 6430" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5917720" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.507092.9" + ], + "preferred": "grid.507092.9" + } + ], + "id": "https://ror.org/0364rd617", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://istas.net" + } + ], + "names": [ + { + "value": "Instituto Sindical de Trabajo Ambiente y Salud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ISTAS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/036dxts37.json b/rc-v1.43-v2/updates/036dxts37.json new file mode 100644 index 000000000..6014a0df0 --- /dev/null +++ b/rc-v1.43-v2/updates/036dxts37.json @@ -0,0 +1,108 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2008, + "external_ids": [ + { + "all": [ + "501100000811", + "100010686" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.453486.8" + ], + "preferred": "grid.453486.8", + "type": "grid" + }, + { + "all": [ + "0000 0001 2195 4661" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q993120" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/036dxts37", + "links": [ + { + "type": "website", + "value": "http://eit.europa.eu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/European_Institute_of_Innovation_and_Technology" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 47.49835, + "lng": 19.04045, + "name": "Budapest" + }, + "geonames_id": 3054643 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "EIT" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "European Institute of Innovation and Technology" + }, + { + "lang": "hu", + "types": [ + "label" + ], + "value": "Európai Innovációs és Technológiai Intézet" + } + ], + "relationships": [ + { + "label": "European Union", + "type": "parent", + "id": "https://ror.org/019w4f821" + }, + { + "label": "EIT Food", + "type": "child", + "id": "https://ror.org/01kde4v59" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/036mest28.json b/rc-v1.43-v2/updates/036mest28.json new file mode 100644 index 000000000..3a0bdddfe --- /dev/null +++ b/rc-v1.43-v2/updates/036mest28.json @@ -0,0 +1,87 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.463808.1" + ], + "preferred": "grid.463808.1" + } + ], + "id": "https://ror.org/036mest28", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www-archbac.u-psud.fr/" + } + ], + "names": [ + { + "value": "Biology of Extremophiles Laboratory", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire de Biologie Moleculaire du Gène chez les Extremophiles", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "BMGE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Délégation Ile-de-France Sud", + "type": "parent", + "id": "https://ror.org/01y8j9r24" + }, + { + "label": "Institute of Integrative Biology of the Cell", + "type": "parent", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "University of Paris-Sud", + "type": "parent", + "id": "https://ror.org/028rypz17" + } + ], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/037405308.json b/rc-v1.43-v2/updates/037405308.json new file mode 100644 index 000000000..9b6012735 --- /dev/null +++ b/rc-v1.43-v2/updates/037405308.json @@ -0,0 +1,172 @@ +{ + "locations": [ + { + "geonames_id": 2174003, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -27.46794, + "lng": 153.02809, + "name": "Brisbane" + } + } + ], + "established": 1859, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0380 0628" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100003550" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3112627" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.453171.5" + ], + "preferred": "grid.453171.5" + } + ], + "id": "https://ror.org/037405308", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.qld.gov.au" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Government_of_Queensland" + } + ], + "names": [ + { + "value": "Queensland Government", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Government of Queensland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State of Queensland", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Australian e-Health Research Centre", + "type": "child", + "id": "https://ror.org/04ywhbc61" + }, + { + "label": "Department of Agriculture and Fisheries", + "type": "child", + "id": "https://ror.org/05s5aag36" + }, + { + "label": "Department of Natural Resources, Mines and Energy", + "type": "child", + "id": "https://ror.org/007zyap28" + }, + { + "label": "Department of Transport and Main Roads", + "type": "child", + "id": "https://ror.org/024ws6f80" + }, + { + "label": "Department of the Premier and Cabinet", + "type": "child", + "id": "https://ror.org/05sz45x40" + }, + { + "label": "Queensland Academy of Sport", + "type": "child", + "id": "https://ror.org/04tnw9626" + }, + { + "label": "Queensland Curriculum and Assessment Authority", + "type": "child", + "id": "https://ror.org/05fvmm618" + }, + { + "label": "Queensland Department of Education", + "type": "child", + "id": "https://ror.org/043k84p27" + }, + { + "label": "Queensland Department of Environment and Science", + "type": "child", + "id": "https://ror.org/02wtcj248" + }, + { + "label": "Queensland Health", + "type": "child", + "id": "https://ror.org/00c1dt378" + }, + { + "label": "Queensland Police Service", + "type": "child", + "id": "https://ror.org/04p74nw72" + }, + { + "label": "Queensland Rail", + "type": "child", + "id": "https://ror.org/01fykd523" + }, + { + "label": "Seqwater", + "type": "child", + "id": "https://ror.org/01vz3ga16" + }, + { + "label": "Australian Tropical Herbarium", + "type": "related", + "id": "https://ror.org/02bjj9p45" + }, + { + "label": "Advance Queensland", + "type": "child", + "id": "https://ror.org/05fb23t53" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/037p13h95.json b/rc-v1.43-v2/updates/037p13h95.json new file mode 100644 index 000000000..998ea2303 --- /dev/null +++ b/rc-v1.43-v2/updates/037p13h95.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3674962, + "geonames_details": { + "country_code": "CO", + "country_name": "Colombia", + "lat": 6.25184, + "lng": -75.56359, + "name": "Medellín" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0812 5789" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100018005" + ], + "preferred": "100018005" + }, + { + "type": "grid", + "all": [ + "grid.411140.1" + ], + "preferred": "grid.411140.1" + }, + { + "type": "wikidata", + "all": [ + "Q6156377" + ], + "preferred": "Q6156377" + } + ], + "id": "https://ror.org/037p13h95", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ces.edu.co" + } + ], + "names": [ + { + "value": "CES University", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/037zgn354.json b/rc-v1.43-v2/updates/037zgn354.json new file mode 100644 index 000000000..b2fd2ff1e --- /dev/null +++ b/rc-v1.43-v2/updates/037zgn354.json @@ -0,0 +1,138 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1996, + "external_ids": [ + { + "all": [ + "grid.469474.c" + ], + "preferred": "grid.469474.c", + "type": "grid" + }, + { + "all": [ + "0000 0000 8617 4175", + "0000 0001 2150 6738" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q50363516" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/037zgn354", + "links": [ + { + "type": "website", + "value": "https://www.hopkinsmedicine.org" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + }, + "geonames_id": 4347778 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Johns Hopkins Medicine" + } + ], + "relationships": [ + { + "label": "Howard County General Hospital", + "type": "child", + "id": "https://ror.org/05mgsm482" + }, + { + "label": "Johns Hopkins All Children's Hospital", + "type": "child", + "id": "https://ror.org/013x5cp73" + }, + { + "label": "Johns Hopkins Bayview Medical Center", + "type": "child", + "id": "https://ror.org/04pwc8466" + }, + { + "label": "Johns Hopkins Hospital", + "type": "child", + "id": "https://ror.org/05cb1k848" + }, + { + "label": "Peninsula Regional Medical Center", + "type": "child", + "id": "https://ror.org/02tc4ww71" + }, + { + "label": "Saudi Aramco Medical Services Organization", + "type": "child", + "id": "https://ror.org/04k820v98" + }, + { + "label": "Sibley Memorial Hospital", + "type": "child", + "id": "https://ror.org/056jn9s46" + }, + { + "label": "Sidney Kimmel Comprehensive Cancer Center", + "type": "child", + "id": "https://ror.org/05m5b8x20" + }, + { + "label": "Suburban Hospital", + "type": "child", + "id": "https://ror.org/00jtwsb29" + }, + { + "label": "Neurofibromatosis Therapeutic Acceleration Program", + "type": "child", + "id": "https://ror.org/01359dk79" + }, + { + "label": "Johns Hopkins University School of Medicine", + "type": "predecessor", + "id": "https://ror.org/02nfzhn33" + }, + { + "label": "Johns Hopkins University", + "type": "related", + "id": "https://ror.org/00za53h95" + }, + { + "label": "Center for Innovative Medicine", + "type": "child", + "id": "https://ror.org/04d4pvt78" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/038e0dv78.json b/rc-v1.43-v2/updates/038e0dv78.json new file mode 100644 index 000000000..8fb8af427 --- /dev/null +++ b/rc-v1.43-v2/updates/038e0dv78.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1884, + "external_ids": [ + { + "all": [ + "grid.411318.e" + ], + "preferred": "grid.411318.e", + "type": "grid" + }, + { + "all": [ + "0000 0004 0369 9275" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7842344" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/038e0dv78", + "links": [ + { + "type": "website", + "value": "http://www.trine.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Trine_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.63477, + "lng": -84.99941, + "name": "Angola" + }, + "geonames_id": 4917614 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Tri-State University" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Trine University" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/038synb39.json b/rc-v1.43-v2/updates/038synb39.json new file mode 100644 index 000000000..97e83d3f3 --- /dev/null +++ b/rc-v1.43-v2/updates/038synb39.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.481813.7" + ], + "preferred": "grid.481813.7", + "type": "grid" + } + ], + "id": "https://ror.org/038synb39", + "links": [ + { + "type": "website", + "value": "http://www.brc.hu/biophysics.php?change_lang=en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 46.253, + "lng": 20.14824, + "name": "Szeged" + }, + "geonames_id": 715429 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute of Biophysics" + }, + { + "lang": "hu", + "types": [ + "label" + ], + "value": "Biofizikai Intézet Szegedi Biológiai Kutatóközpont" + } + ], + "relationships": [ + { + "label": "HUN-REN Szegedi Biológiai Kutatóközpont", + "type": "parent", + "id": "https://ror.org/016gb1631" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/039h1gd08.json b/rc-v1.43-v2/updates/039h1gd08.json new file mode 100644 index 000000000..2c5ef8ec9 --- /dev/null +++ b/rc-v1.43-v2/updates/039h1gd08.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.481816.2" + ], + "preferred": "grid.481816.2", + "type": "grid" + } + ], + "id": "https://ror.org/039h1gd08", + "links": [ + { + "type": "website", + "value": "http://www.brc.hu/plant_biology.php?change_lang=en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 46.253, + "lng": 20.14824, + "name": "Szeged" + }, + "geonames_id": 715429 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute of Plant Biology" + }, + { + "lang": "hu", + "types": [ + "label" + ], + "value": "Növénybiológiai Intézet Szegedi Biológiai Kutatóközpont Magyar Tudományos Akadémia" + } + ], + "relationships": [ + { + "label": "HUN-REN Szegedi Biológiai Kutatóközpont", + "type": "parent", + "id": "https://ror.org/016gb1631" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03a3nj982.json b/rc-v1.43-v2/updates/03a3nj982.json new file mode 100644 index 000000000..522e21870 --- /dev/null +++ b/rc-v1.43-v2/updates/03a3nj982.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432540.4" + ], + "preferred": "grid.432540.4" + } + ], + "id": "https://ror.org/03a3nj982", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ecoinstitut.coop" + } + ], + "names": [ + { + "value": "Ecoinstitut", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03ab0zs98.json b/rc-v1.43-v2/updates/03ab0zs98.json new file mode 100644 index 000000000..dbd779417 --- /dev/null +++ b/rc-v1.43-v2/updates/03ab0zs98.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0368 9704" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463900.8" + ], + "preferred": "grid.463900.8" + } + ], + "id": "https://ror.org/03ab0zs98", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.imo.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratoire de Mathématiques d'Orsay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire de Mathématiques d’Orsay", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Mathematics Laboratory of Orsay", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LMO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03artm726.json b/rc-v1.43-v2/updates/03artm726.json new file mode 100644 index 000000000..148cb2aac --- /dev/null +++ b/rc-v1.43-v2/updates/03artm726.json @@ -0,0 +1,96 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1955, + "external_ids": [ + { + "all": [ + "grid.417118.a" + ], + "preferred": "grid.417118.a", + "type": "grid" + }, + { + "all": [ + "0000 0004 0435 1924" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q30286651" + ], + "preferred": "Q30286651", + "type": "wikidata" + } + ], + "id": "https://ror.org/03artm726", + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/locations/beaumont-hospital-royal-oak" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.48948, + "lng": -83.14465, + "name": "Royal Oak" + }, + "geonames_id": 5007804 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Beaumont Hospital, Royal Oak" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "WBH" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "William Beaumont Hospital, Royal Oak" + } + ], + "relationships": [ + { + "label": "Oakland University", + "type": "related", + "id": "https://ror.org/01ythxj32" + }, + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03b21sh32.json b/rc-v1.43-v2/updates/03b21sh32.json new file mode 100644 index 000000000..6d0a092e8 --- /dev/null +++ b/rc-v1.43-v2/updates/03b21sh32.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3128026, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0467 2410" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100014371" + ], + "preferred": "501100014371" + }, + { + "type": "wikidata", + "all": [ + "Q4867846" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462072.5" + ], + "preferred": "grid.462072.5" + } + ], + "id": "https://ror.org/03b21sh32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bcamath.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Basque_Center_for_Applied_Mathematics" + } + ], + "names": [ + { + "value": "Basque Center for Applied Mathematics", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BCAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03bk8p931.json b/rc-v1.43-v2/updates/03bk8p931.json new file mode 100644 index 000000000..3e9ea84ba --- /dev/null +++ b/rc-v1.43-v2/updates/03bk8p931.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1970, + "external_ids": [ + { + "all": [ + "grid.413656.3" + ], + "preferred": "grid.413656.3", + "type": "grid" + }, + { + "all": [ + "0000 0004 0450 6121" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q14716129" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03bk8p931", + "links": [ + { + "type": "website", + "value": "http://www.helendevoschildrens.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Helen_DeVos_Children%27s_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.96336, + "lng": -85.66809, + "name": "Grand Rapids" + }, + "geonames_id": 4994358 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Helen DeVos Children's Hospital" + } + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03c4atk17.json b/rc-v1.43-v2/updates/03c4atk17.json new file mode 100644 index 000000000..e1e527f7f --- /dev/null +++ b/rc-v1.43-v2/updates/03c4atk17.json @@ -0,0 +1,132 @@ +{ + "locations": [ + { + "geonames_id": 2659836, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.01008, + "lng": 8.96004, + "name": "Lugano" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2203 2861" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q689617", + "Q27484979" + ], + "preferred": "Q689617" + }, + { + "type": "grid", + "all": [ + "grid.29078.34" + ], + "preferred": "grid.29078.34" + } + ], + "id": "https://ror.org/03c4atk17", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.usi.ch" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Universit%C3%A0_della_Svizzera_italiana" + } + ], + "names": [ + { + "value": "Università della Svizzera italiana", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Lugano", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Italian Switzerland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université de la Suisse italienne", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Southern Switzerland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "USI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institute of Oncology Research", + "type": "child", + "id": "https://ror.org/01dpyn972" + }, + { + "label": "Institute for Research in Biomedicine", + "type": "child", + "id": "https://ror.org/05gfswd81" + }, + { + "label": "Dalle Molle Institute for Artificial Intelligence Research", + "type": "child", + "id": "https://ror.org/013355g38" + }, + { + "label": "Facoltà di Teologia di Lugano", + "type": "child", + "id": "https://ror.org/02k3baz05" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03c7e3050.json b/rc-v1.43-v2/updates/03c7e3050.json new file mode 100644 index 000000000..62a17f6d0 --- /dev/null +++ b/rc-v1.43-v2/updates/03c7e3050.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4904 4581" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.477257.4" + ], + "preferred": "grid.477257.4" + } + ], + "id": "https://ror.org/03c7e3050", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uab.cat/web/fundacio-salut-i-envelliment-1345754058073.html" + } + ], + "names": [ + { + "value": "Fundació Salut i Envelliment UAB", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Universitat Autònoma de Barcelona", + "type": "related", + "id": "https://ror.org/052g8jq94" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03cebjr81.json b/rc-v1.43-v2/updates/03cebjr81.json new file mode 100644 index 000000000..49c3288a9 --- /dev/null +++ b/rc-v1.43-v2/updates/03cebjr81.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1917, + "external_ids": [ + { + "all": [ + "grid.422658.f" + ], + "preferred": "grid.422658.f", + "type": "grid" + }, + { + "all": [ + "0000 0004 0369 9160" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4754216" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03cebjr81", + "links": [ + { + "type": "website", + "value": "http://www.anderson.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Anderson_University_(Indiana)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.10532, + "lng": -85.68025, + "name": "Anderson" + }, + "geonames_id": 4917592 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Anderson University - Indiana" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03cmntr54.json b/rc-v1.43-v2/updates/03cmntr54.json new file mode 100644 index 000000000..a729df75a --- /dev/null +++ b/rc-v1.43-v2/updates/03cmntr54.json @@ -0,0 +1,108 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1975, + "external_ids": [ + { + "all": [ + "501100022432" + ], + "preferred": "501100022432", + "type": "fundref" + }, + { + "all": [ + "grid.17423.33" + ], + "preferred": "grid.17423.33", + "type": "grid" + }, + { + "all": [ + "0000 0004 1767 6621" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1583495" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03cmntr54", + "links": [ + { + "type": "website", + "value": "https://www.iac.es" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 28.46824, + "lng": -16.25462, + "name": "Tenerife" + }, + "geonames_id": 2511174 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IAC" + }, + { + "lang": "ca", + "types": [ + "label" + ], + "value": "Institut Astrofísic de les Illes Canàries" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Instituto de Astrofísica de Canarias" + } + ], + "relationships": [ + { + "label": "Isaac Newton Group", + "type": "child", + "id": "https://ror.org/054tmk179" + }, + { + "label": "Red Española de Supercomputación", + "type": "related", + "id": "https://ror.org/02x2fbb57" + }, + { + "label": "Universidad de La Laguna", + "type": "parent", + "id": "https://ror.org/01r9z8p25" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03cn98e27.json b/rc-v1.43-v2/updates/03cn98e27.json new file mode 100644 index 000000000..ceb503dc5 --- /dev/null +++ b/rc-v1.43-v2/updates/03cn98e27.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1945, + "external_ids": [ + { + "all": [ + "100001200" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.479950.6" + ], + "preferred": "grid.479950.6", + "type": "grid" + }, + { + "all": [ + "0000 0004 5906 4738" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/03cn98e27", + "links": [ + { + "type": "website", + "value": "http://www.jmkfund.org/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.71427, + "lng": -74.00597, + "name": "New York" + }, + "geonames_id": 5128581 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "J.M. Kaplan Fund" + } + ], + "relationships": [ + { + "label": "FURTHERMORE grants in publishing", + "type": "child", + "id": "https://ror.org/04vzm8988" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03csrq586.json b/rc-v1.43-v2/updates/03csrq586.json new file mode 100644 index 000000000..ebbb9dde4 --- /dev/null +++ b/rc-v1.43-v2/updates/03csrq586.json @@ -0,0 +1,102 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2007, + "external_ids": [ + { + "all": [ + "100012329" + ], + "preferred": "100012329", + "type": "fundref" + }, + { + "all": [ + "grid.484119.1" + ], + "preferred": "grid.484119.1", + "type": "grid" + }, + { + "all": [ + "0000 0004 6432 5234" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5324551" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03csrq586", + "links": [ + { + "type": "website", + "value": "https://www.euramet.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/EURAMET" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.26594, + "lng": 10.52673, + "name": "Braunschweig" + }, + "geonames_id": 2945024 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "EURAMET" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "EUROMET" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "European Association of National Metrology Institutes" + } + ], + "relationships": [ + { + "label": "European Metrology Programme for Innovation and Research", + "type": "child", + "id": "https://ror.org/042k5q325" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03cve4549.json b/rc-v1.43-v2/updates/03cve4549.json new file mode 100644 index 000000000..8cbd94991 --- /dev/null +++ b/rc-v1.43-v2/updates/03cve4549.json @@ -0,0 +1,189 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1911, + "external_ids": [ + { + "all": [ + "501100004147", + "501100004407", + "501100005150" + ], + "preferred": "501100004147", + "type": "fundref" + }, + { + "all": [ + "grid.12527.33" + ], + "preferred": "grid.12527.33", + "type": "grid" + }, + { + "all": [ + "0000 0001 0662 3178" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q16955" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03cve4549", + "links": [ + { + "type": "website", + "value": "https://www.tsinghua.edu.cn" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Tsinghua_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + }, + "geonames_id": 1816670 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "THU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Tsinghua University" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "清华大学" + } + ], + "relationships": [ + { + "label": "Center for Life Sciences", + "type": "child", + "id": "https://ror.org/05kje8j93" + }, + { + "label": "Collaborative Innovation Center of Quantum Matter", + "type": "child", + "id": "https://ror.org/03jn38r85" + }, + { + "label": "State Key Laboratory on Integrated Optoelectronics", + "type": "child", + "id": "https://ror.org/00g102351" + }, + { + "label": "The Synergetic Innovation Center for Advanced Materials", + "type": "child", + "id": "https://ror.org/05nzc1r88" + }, + { + "label": "Tsinghua–Berkeley Shenzhen Institute", + "type": "child", + "id": "https://ror.org/02hhwwz98" + }, + { + "label": "State Key Laboratory of Microwave and Digital Communication Technology", + "type": "child", + "id": "https://ror.org/00jxb4047" + }, + { + "label": "State Key Laboratory of Tribology", + "type": "child", + "id": "https://ror.org/03h33sq24" + }, + { + "label": "State Key Laboratory of Automobile Safety and Energy Conservation", + "type": "child", + "id": "https://ror.org/023ht6a36" + }, + { + "label": "State Key Laboratory of Water and Sediment Science and Water Conservancy and Hydropower Engineering", + "type": "child", + "id": "https://ror.org/01ekf5a72" + }, + { + "label": "State Key Laboratory of Precision Testing Technology and Instruments", + "type": "child", + "id": "https://ror.org/04r1ssz88" + }, + { + "label": "State Key Laboratory of New Ceramics and Fine Processing", + "type": "child", + "id": "https://ror.org/01t8xrx60" + }, + { + "label": "State Key Laboratory of Membrane Biology", + "type": "child", + "id": "https://ror.org/03mq8q210" + }, + { + "label": "State Key Laboratory of Low-Dimensional Quantum Physics", + "type": "child", + "id": "https://ror.org/016g9tg59" + }, + { + "label": "Beijing Hua Xin Hospital", + "type": "related", + "id": "https://ror.org/04k6zqn86" + }, + { + "label": "Beijing Tsinghua Chang Gung Hospital", + "type": "related", + "id": "https://ror.org/050nfgr37" + }, + { + "label": "Chinese Academy of Medical Sciences & Peking Union Medical College", + "type": "related", + "id": "https://ror.org/02drdmm93" + }, + { + "label": "Peking Union Medical College Hospital", + "type": "related", + "id": "https://ror.org/04jztag35" + }, + { + "label": "State Key Laboratory of Power System and Generation Equipment", + "type": "child", + "id": "https://ror.org/043evzg22" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03czfpz43.json b/rc-v1.43-v2/updates/03czfpz43.json new file mode 100644 index 000000000..47349257e --- /dev/null +++ b/rc-v1.43-v2/updates/03czfpz43.json @@ -0,0 +1,164 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1836, + "external_ids": [ + { + "all": [ + "100006939", + "100007814", + "100007623", + "100010416", + "100008374", + "100007667", + "100006786", + "100006529", + "100006528", + "100005833", + "100013116" + ], + "preferred": "100006939", + "type": "fundref" + }, + { + "all": [ + "grid.189967.8" + ], + "preferred": "grid.189967.8", + "type": "grid" + }, + { + "all": [ + "0000 0001 0941 6502", + "0000 0004 1936 7398" + ], + "preferred": "0000 0004 1936 7398", + "type": "isni" + }, + { + "all": [ + "Q621043" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03czfpz43", + "links": [ + { + "type": "website", + "value": "http://www.emory.edu/home/index.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Emory_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 33.749, + "lng": -84.38798, + "name": "Atlanta" + }, + "geonames_id": 4180439 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Emory University" + } + ], + "relationships": [ + { + "label": "Center for Translational Research in Neuroimaging and Data Science", + "type": "child", + "id": "https://ror.org/02qx6zf82" + }, + { + "label": "Emory Eye Center", + "type": "child", + "id": "https://ror.org/00hr6kp69" + }, + { + "label": "The Wallace H. Coulter Department of Biomedical Engineering", + "type": "child", + "id": "https://ror.org/02j15s898" + }, + { + "label": "Woodruff Health Sciences Center", + "type": "child", + "id": "https://ror.org/01xm4tt59" + }, + { + "label": "Emory Global Health Institute", + "type": "child", + "id": "https://ror.org/043s0sy92" + }, + { + "label": "Georgia Clinical and Translational Science Alliance", + "type": "child", + "id": "https://ror.org/034hw7m59" + }, + { + "label": "Atlanta VA Medical Center", + "type": "related", + "id": "https://ror.org/04z89xx32" + }, + { + "label": "Children's Healthcare of Atlanta", + "type": "related", + "id": "https://ror.org/050fhx250" + }, + { + "label": "Emory Rehabilitation Hospital", + "type": "related", + "id": "https://ror.org/02sfkc120" + }, + { + "label": "Emory University Hospital", + "type": "related", + "id": "https://ror.org/05dm4ck87" + }, + { + "label": "Emory University Hospital Midtown", + "type": "related", + "id": "https://ror.org/02aknh966" + }, + { + "label": "Grady Memorial Hospital", + "type": "related", + "id": "https://ror.org/009hj8759" + }, + { + "label": "Henrietta Egleston Hospital for Children", + "type": "related", + "id": "https://ror.org/002q1t780" + }, + { + "label": "Emory National Primate Research Center", + "type": "child", + "id": "https://ror.org/038kr2d80" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03eh3y714.json b/rc-v1.43-v2/updates/03eh3y714.json new file mode 100644 index 000000000..300974d8e --- /dev/null +++ b/rc-v1.43-v2/updates/03eh3y714.json @@ -0,0 +1,117 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-03-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1988, + "external_ids": [ + { + "all": [ + "501100004219" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.5991.4" + ], + "preferred": "grid.5991.4", + "type": "grid" + }, + { + "all": [ + "0000 0001 1090 7501" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q351857" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03eh3y714", + "links": [ + { + "type": "website", + "value": "http://www.psi.ch/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Paul_Scherrer_Institute" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 47.52682, + "lng": 8.21486, + "name": "Villigen" + }, + "geonames_id": 2658120 + } + ], + "names": [ + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Institut Paul Scherrer" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "PSI" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Paul Scherrer Institute" + } + ], + "relationships": [ + { + "label": "Lib4RI - Library for the Research Institutes within the ETH Domain: Eawag, Empa, PSI & WSL", + "type": "child", + "id": "https://ror.org/021f7p178" + }, + { + "label": "Swiss Light Source", + "type": "child", + "id": "https://ror.org/04xrb7c55" + }, + { + "label": "Board of the Swiss Federal Institutes of Technology", + "type": "parent", + "id": "https://ror.org/01rvn4p91" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03f6cng42.json b/rc-v1.43-v2/updates/03f6cng42.json new file mode 100644 index 000000000..4c355c95d --- /dev/null +++ b/rc-v1.43-v2/updates/03f6cng42.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9850 0097" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434693.f" + ], + "preferred": "grid.434693.f" + } + ], + "id": "https://ror.org/03f6cng42", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.opti.org" + } + ], + "names": [ + { + "value": "Observatorio de Prospectiva Tecnológica Industrial", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Observatory for Prospective Technological Industry", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "OPTI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03fdma228.json b/rc-v1.43-v2/updates/03fdma228.json new file mode 100644 index 000000000..dce66ff24 --- /dev/null +++ b/rc-v1.43-v2/updates/03fdma228.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8785 8261" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5871651" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434260.7" + ], + "preferred": "grid.434260.7" + } + ], + "id": "https://ror.org/03fdma228", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://fride.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/FRIDE" + } + ], + "names": [ + { + "value": "Fundación para las Relaciones Internacionales y el Diálogo Exterior", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Foundation for International Relations and Foreign Dialogue", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "FRIDE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03fpf5m04.json b/rc-v1.43-v2/updates/03fpf5m04.json new file mode 100644 index 000000000..0d3a56f23 --- /dev/null +++ b/rc-v1.43-v2/updates/03fpf5m04.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2634308, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.34603, + "lng": -2.97665, + "name": "Weston-super-Mare" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0484 4171" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.439741.c" + ], + "preferred": "grid.439741.c" + } + ], + "id": "https://ror.org/03fpf5m04", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.waht.nhs.uk/" + } + ], + "names": [ + { + "value": "Weston Area Health NHS Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Weston General Hospital", + "type": "child", + "id": "https://ror.org/03mc19e15" + }, + { + "label": "University Hospitals Bristol and Weston NHS Foundation Trust", + "type": "successor", + "id": "https://ror.org/03jzzxg14" + } + ], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03fte3n86.json b/rc-v1.43-v2/updates/03fte3n86.json new file mode 100644 index 000000000..7f082e4e7 --- /dev/null +++ b/rc-v1.43-v2/updates/03fte3n86.json @@ -0,0 +1,99 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1993, + "external_ids": [ + { + "all": [ + "0000 0004 0445 8166" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q51782228" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.503314.0" + ], + "preferred": "grid.503314.0", + "type": "grid" + } + ], + "id": "https://ror.org/03fte3n86", + "links": [ + { + "type": "website", + "value": "https://www6.montpellier.inra.fr/lepse" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Laboratoire d'Écophysiologie Moléculaire des Plantes sous Stress Environnementaux" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LEPSE" + } + ], + "relationships": [ + { + "label": "Agence Nationale de la Recherche", + "type": "parent", + "id": "https://ror.org/00rbzpz17" + }, + { + "label": "Centre Occitanie-Montpellier", + "type": "parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03g1q6c06.json b/rc-v1.43-v2/updates/03g1q6c06.json new file mode 100644 index 000000000..2534a74f5 --- /dev/null +++ b/rc-v1.43-v2/updates/03g1q6c06.json @@ -0,0 +1,121 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1871, + "external_ids": [ + { + "all": [ + "100008679" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.264269.d" + ], + "preferred": "grid.264269.d", + "type": "grid" + }, + { + "all": [ + "0000 0001 0151 0940" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q6149540" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03g1q6c06", + "links": [ + { + "type": "website", + "value": "http://www.geneseo.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Geneseo" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.7959, + "lng": -77.81695, + "name": "Geneseo" + }, + "geonames_id": 5118394 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "SUNY Geneseo" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "State University of New York at Geneseo" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "State University of New York-College at Geneseo" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal de Nueva York en Geneseo" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Wadsworth Normal and Training School" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03g5ew477.json b/rc-v1.43-v2/updates/03g5ew477.json new file mode 100644 index 000000000..ad3e1a7a7 --- /dev/null +++ b/rc-v1.43-v2/updates/03g5ew477.json @@ -0,0 +1,126 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1757 1854" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100017170" + ], + "preferred": "100017170" + }, + { + "type": "wikidata", + "all": [ + "Q3775506" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5853.b" + ], + "preferred": "grid.5853.b" + } + ], + "id": "https://ror.org/03g5ew477", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.icfo.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ICFO_%E2%80%93_The_Institute_of_Photonic_Sciences" + } + ], + "names": [ + { + "value": "Institute of Photonic Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto de Ciencias Fotónicas", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Institut de Ciències Fotòniques", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "ICFO", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "ICFO-CERCA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Barcelona Institute for Science and Technology", + "type": "parent", + "id": "https://ror.org/03kpps236" + }, + { + "label": "CERCA Institution", + "type": "parent", + "id": "https://ror.org/01bkbaq61" + }, + { + "label": "Universitat Politècnica de Catalunya", + "type": "parent", + "id": "https://ror.org/03mb6wj31" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03gbd4842.json b/rc-v1.43-v2/updates/03gbd4842.json new file mode 100644 index 000000000..d38d5ac8a --- /dev/null +++ b/rc-v1.43-v2/updates/03gbd4842.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1906, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q14715871" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.449497.3" + ], + "preferred": "grid.449497.3" + } + ], + "id": "https://ror.org/03gbd4842", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.suffolk.edu/madrid-campus" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Suffolk_University" + } + ], + "names": [ + { + "value": "Suffolk University Madrid", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Suffolk University Madrid Campus", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidad Suffolk Madrid", + "types": [ + "label" + ], + "lang": "es" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03gd0dm95.json b/rc-v1.43-v2/updates/03gd0dm95.json new file mode 100644 index 000000000..c6b2baaba --- /dev/null +++ b/rc-v1.43-v2/updates/03gd0dm95.json @@ -0,0 +1,122 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1983, + "external_ids": [ + { + "all": [ + "100007607" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.7147.5" + ], + "preferred": "grid.7147.5", + "type": "grid" + }, + { + "all": [ + "0000 0001 0633 6224" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4690953" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03gd0dm95", + "links": [ + { + "type": "website", + "value": "http://aku.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Aga_Khan_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PK", + "country_name": "Pakistan", + "lat": 24.8608, + "lng": 67.0104, + "name": "Karachi" + }, + "geonames_id": 1174872 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "AKU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Aga Khan University" + }, + { + "lang": "ur", + "types": [ + "label" + ], + "value": "آغا خان یونیورسٹی" + } + ], + "relationships": [ + { + "label": "Aga Khan Hospital for Women", + "type": "child", + "id": "https://ror.org/00d3ws365" + }, + { + "label": "Aga Khan University Hospital", + "type": "child", + "id": "https://ror.org/05xcx0k58" + }, + { + "label": "Aga Khan University Nairobi", + "type": "child", + "id": "https://ror.org/01zv98a09" + }, + { + "label": "Aga Khan Development Network", + "type": "parent", + "id": "https://ror.org/028mpsh75" + }, + { + "label": "The Aga Khan University (International) in the United Kingdom", + "type": "child", + "id": "https://ror.org/04m2z2476" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03gmkya61.json b/rc-v1.43-v2/updates/03gmkya61.json new file mode 100644 index 000000000..42d5e35ad --- /dev/null +++ b/rc-v1.43-v2/updates/03gmkya61.json @@ -0,0 +1,87 @@ +{ + "locations": [ + { + "geonames_id": 2995206, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.72692, + "lng": 2.28301, + "name": "Massy" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109621296" + ], + "preferred": "Q109621296" + } + ], + "id": "https://ror.org/03gmkya61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www6.versailles-grignon.inrae.fr/umr-sayfood/UMR-SayFood" + } + ], + "names": [ + { + "value": "SayFood - Food and Bioproduct Engineering", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SayFood", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Paris-saclay food and bioproduct engineering research unit", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03gna4510.json b/rc-v1.43-v2/updates/03gna4510.json new file mode 100644 index 000000000..db67f63a6 --- /dev/null +++ b/rc-v1.43-v2/updates/03gna4510.json @@ -0,0 +1,68 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [ + { + "all": [ + "grid.454367.7" + ], + "preferred": "grid.454367.7", + "type": "grid" + } + ], + "id": "https://ror.org/03gna4510", + "links": [ + { + "type": "website", + "value": "http://www.ukcrcexpmed.org.uk/BristolCVBRU/Pages/FacilityWelcome.aspx" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "NIHR Bristol Cardiovascular Biomedical Research Unit" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + }, + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03h4zjr91.json b/rc-v1.43-v2/updates/03h4zjr91.json new file mode 100644 index 000000000..830b42765 --- /dev/null +++ b/rc-v1.43-v2/updates/03h4zjr91.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 5381396, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 34.14778, + "lng": -118.14452, + "name": "Pasadena" + } + } + ], + "established": 1904, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0373 5870" + ], + "preferred": "0000 0004 0373 5870" + }, + { + "type": "grid", + "all": [ + "grid.432988.c" + ], + "preferred": "grid.432988.c" + }, + { + "type": "fundref", + "all": [ + "100029528" + ], + "preferred": "100029528" + } + ], + "id": "https://ror.org/03h4zjr91", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://obs.carnegiescience.edu/" + } + ], + "names": [ + { + "value": "Carnegie Observatories", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Carnegie Institution of Washington", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Carnegie Institution for Science", + "type": "parent", + "id": "https://ror.org/04jr01610" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03hpdk269.json b/rc-v1.43-v2/updates/03hpdk269.json new file mode 100644 index 000000000..311a9a4d1 --- /dev/null +++ b/rc-v1.43-v2/updates/03hpdk269.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3124569, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.35, + "lng": 2.08333, + "name": "Cornellà de Llobregat" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.8563.8" + ], + "preferred": "grid.8563.8" + } + ], + "id": "https://ror.org/03hpdk269", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cric.cat/" + } + ], + "names": [ + { + "value": "Catalonian Research and Innovation Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CRIC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ateknea Solutions (Spain)", + "type": "successor", + "id": "https://ror.org/01m260238" + } + ], + "status": "inactive", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03hv28176.json b/rc-v1.43-v2/updates/03hv28176.json new file mode 100644 index 000000000..8299d7c35 --- /dev/null +++ b/rc-v1.43-v2/updates/03hv28176.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2820860, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.52266, + "lng": 9.05222, + "name": "Tübingen" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0493 3318" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1813768" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418956.7" + ], + "preferred": "grid.418956.7" + } + ], + "id": "https://ror.org/03hv28176", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iwm-tuebingen.de" + } + ], + "names": [ + { + "value": "Leibniz-Institut für Wissensmedien", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stiftung „Medien in der Bildung“", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "IWM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03jdj4y14.json b/rc-v1.43-v2/updates/03jdj4y14.json new file mode 100644 index 000000000..1b39d774c --- /dev/null +++ b/rc-v1.43-v2/updates/03jdj4y14.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1993, + "external_ids": [ + { + "all": [ + "100007065" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.451133.1" + ], + "preferred": "grid.451133.1", + "type": "grid" + }, + { + "all": [ + "0000 0004 0458 4453" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q182477" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03jdj4y14", + "links": [ + { + "type": "website", + "value": "http://www.nvidia.com/page/home.html" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Nvidia" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.35411, + "lng": -121.95524, + "name": "Santa Clara" + }, + "geonames_id": 5393015 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "NVIDIA Corporation" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Nvidia (United States)" + } + ], + "relationships": [ + { + "label": "Nvidia (United Kingdom)", + "type": "child", + "id": "https://ror.org/02kr42612" + }, + { + "label": "NVIDIA (Italy)", + "type": "child", + "id": "https://ror.org/04z2hsy54" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03k4wdb90.json b/rc-v1.43-v2/updates/03k4wdb90.json new file mode 100644 index 000000000..a8f403952 --- /dev/null +++ b/rc-v1.43-v2/updates/03k4wdb90.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.476174.7" + ], + "preferred": "grid.476174.7" + }, + { + "type": "isni", + "all": [ + "0000 0004 7677 6809" + ], + "preferred": "0000 0004 7677 6809" + }, + { + "type": "wikidata", + "all": [ + "Q117405723" + ], + "preferred": "Q117405723" + } + ], + "id": "https://ror.org/03k4wdb90", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.barcelonabeta.org" + } + ], + "names": [ + { + "value": "Barcelonaβeta Brain Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Barcelonabeta Brain Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BBRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Pompeu Fabra University", + "type": "parent", + "id": "https://ror.org/04n0g0b29" + }, + { + "label": "Pasqual Maragall Foundation", + "type": "parent", + "id": "https://ror.org/01nry9c15" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03k8zj440.json b/rc-v1.43-v2/updates/03k8zj440.json new file mode 100644 index 000000000..045be61b3 --- /dev/null +++ b/rc-v1.43-v2/updates/03k8zj440.json @@ -0,0 +1,122 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 1530 8903" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "grid.426047.3" + ], + "preferred": "grid.426047.3", + "type": "grid" + } + ], + "id": "https://ror.org/03k8zj440", + "links": [ + { + "type": "website", + "value": "http://sescam.castillalamancha.es/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.8581, + "lng": -4.02263, + "name": "Toledo" + }, + "geonames_id": 2510409 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Servicio de Salud de Castilla La Mancha" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SESCAM" + } + ], + "relationships": [ + { + "label": "Complejo Hospitalario Universitario de Albacete", + "type": "child", + "id": "https://ror.org/04a5hr295" + }, + { + "label": "Complejo Hospitalario Universitario de Toledo", + "type": "child", + "id": "https://ror.org/04q4ppz72" + }, + { + "label": "Hospital General Nuestra Señora del Prado", + "type": "child", + "id": "https://ror.org/00k5pj069" + }, + { + "label": "Hospital General Universitario de Ciudad Real", + "type": "child", + "id": "https://ror.org/02f30ff69" + }, + { + "label": "Hospital General de Almansa", + "type": "child", + "id": "https://ror.org/01wc63152" + }, + { + "label": "Hospital General de Tomelloso", + "type": "child", + "id": "https://ror.org/01zbsrk34" + }, + { + "label": "Hospital Nacional de Parapléjicos", + "type": "child", + "id": "https://ror.org/04xzgfg07" + }, + { + "label": "Hospital Universitario de Guadalajara", + "type": "child", + "id": "https://ror.org/00jkz9152" + }, + { + "label": "Hospital Virgen de la Luz", + "type": "child", + "id": "https://ror.org/00k49k182" + }, + { + "label": "Hospital de Hellín", + "type": "child", + "id": "https://ror.org/01gaptw32" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03k9z2963.json b/rc-v1.43-v2/updates/03k9z2963.json new file mode 100644 index 000000000..4362fbffa --- /dev/null +++ b/rc-v1.43-v2/updates/03k9z2963.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0624 4946" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q51784704" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503142.1" + ], + "preferred": "grid.503142.1" + } + ], + "id": "https://ror.org/03k9z2963", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.math.ens.psl.eu" + } + ], + "names": [ + { + "value": "Département de mathématiques et applications", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Department of Mathematics and their Applications", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "DMA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "École Normale Supérieure - PSL", + "type": "parent", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03kbarg82.json b/rc-v1.43-v2/updates/03kbarg82.json new file mode 100644 index 000000000..e0f4a9205 --- /dev/null +++ b/rc-v1.43-v2/updates/03kbarg82.json @@ -0,0 +1,92 @@ +{ + "admin": { + "created": { + "date": "2023-08-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-08-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2003, + "external_ids": [ + { + "all": [ + "0000 0001 2191 6219" + ], + "preferred": "0000 0001 2191 6219", + "type": "isni" + }, + { + "all": [ + "Q51780451" + ], + "preferred": "Q51780451", + "type": "wikidata" + } + ], + "id": "https://ror.org/03kbarg82", + "links": [ + { + "type": "website", + "value": "http://lirdef.edu.umontpellier.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LIRDEF" + } + ], + "relationships": [ + { + "label": "École Nationale Supérieure de Formation de l’Enseignement Agricole", + "type": "parent", + "id": "https://ror.org/03ac68784" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Université Paul-Valéry Montpellier", + "type": "parent", + "id": "https://ror.org/00qhdy563" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03kevw840.json b/rc-v1.43-v2/updates/03kevw840.json new file mode 100644 index 000000000..791916bb8 --- /dev/null +++ b/rc-v1.43-v2/updates/03kevw840.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30290690" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.436359.e" + ], + "preferred": "grid.436359.e" + } + ], + "id": "https://ror.org/03kevw840", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.meta4.es/" + } + ], + "names": [ + { + "value": "Meta4 (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03kk7td41.json b/rc-v1.43-v2/updates/03kk7td41.json new file mode 100644 index 000000000..63b4dc330 --- /dev/null +++ b/rc-v1.43-v2/updates/03kk7td41.json @@ -0,0 +1,126 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-06-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1883, + "external_ids": [ + { + "all": [ + "501100008533", + "501100000866" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.5600.3" + ], + "preferred": "grid.5600.3", + "type": "grid" + }, + { + "all": [ + "0000 0001 0807 5670" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1035745" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03kk7td41", + "links": [ + { + "type": "website", + "value": "http://www.cardiff.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Cardiff_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.48, + "lng": -3.18, + "name": "Cardiff" + }, + "geonames_id": 2653822 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Cardiff University" + }, + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Prifysgol Caerdydd" + } + ], + "relationships": [ + { + "label": "Morriston Hospital", + "type": "related", + "id": "https://ror.org/01p830915" + }, + { + "label": "University Hospital of Wales", + "type": "related", + "id": "https://ror.org/04fgpet95" + }, + { + "label": "Whitchurch Hospital", + "type": "related", + "id": "https://ror.org/00xc08717" + }, + { + "label": "GW4 Facility for High-Resolution Electron Cryo-Microscopy", + "type": "related", + "id": "https://ror.org/022p86748" + }, + { + "label": "GW4", + "type": "related", + "id": "https://ror.org/000vekr11" + }, + { + "label": "Wales Centre for Public Policy", + "type": "related", + "id": "https://ror.org/03y0ymy78" + }, + { + "label": "Life Sciences Research Network Wales", + "type": "child", + "id": "https://ror.org/0526zh358" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03mc19e15.json b/rc-v1.43-v2/updates/03mc19e15.json new file mode 100644 index 000000000..bc5bc944d --- /dev/null +++ b/rc-v1.43-v2/updates/03mc19e15.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1986, + "external_ids": [ + { + "all": [ + "grid.417077.2" + ], + "preferred": "grid.417077.2", + "type": "grid" + }, + { + "all": [ + "0000 0004 0417 1843" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7989433" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03mc19e15", + "links": [ + { + "type": "website", + "value": "http://www.waht.nhs.uk/Childrens-Services/Childrens-Services1/Seashore-Centre-at-Weston-General-Hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Weston_General_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.34603, + "lng": -2.97665, + "name": "Weston-super-Mare" + }, + "geonames_id": 2634308 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Weston General Hospital" + } + ], + "relationships": [ + { + "label": "University Hospitals Bristol and Weston NHS Foundation Trust", + "type": "parent", + "id": "https://ror.org/03jzzxg14" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03mkjjy25.json b/rc-v1.43-v2/updates/03mkjjy25.json new file mode 100644 index 000000000..7144deca0 --- /dev/null +++ b/rc-v1.43-v2/updates/03mkjjy25.json @@ -0,0 +1,287 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1991, + "external_ids": [ + { + "all": [ + "0000 0001 2323 0229" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100020875" + ], + "preferred": "501100020875", + "type": "fundref" + }, + { + "all": [ + "Q186638" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.12832.3a" + ], + "preferred": "grid.12832.3a", + "type": "grid" + } + ], + "id": "https://ror.org/03mkjjy25", + "links": [ + { + "type": "website", + "value": "https://www.uvsq.fr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Versailles_Saint-Quentin-en-Yvelines_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.80359, + "lng": 2.13424, + "name": "Versailles" + }, + "geonames_id": 2969679 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Université de Versailles Saint-Quentin-en-Yvelines" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Versailles Saint-Quentin-en-Yvelines University" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UVSQ" + } + ], + "relationships": [ + { + "label": "Raymond Poincaré University Hospital", + "type": "related", + "id": "https://ror.org/03pef0w96" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre de Recherches Sociologiques sur le Droit et les Institutions Pénales", + "type": "child", + "id": "https://ror.org/01qm1tk92" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Groupe d’Étude de la Matière Condensée", + "type": "child", + "id": "https://ror.org/01wrng808" + }, + { + "label": "Handicap neuromusculaire : Physiopathologie, Biothérapie et Pharmacologie appliquées", + "type": "child", + "id": "https://ror.org/02nxezb95" + }, + { + "label": "Institut Lavoisier de Versailles", + "type": "child", + "id": "https://ror.org/05mzd8v39" + }, + { + "label": "Laboratoire Printemps", + "type": "child", + "id": "https://ror.org/00mdx2x22" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Maison de la Simulation", + "type": "child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Laboratoire de Mathématiques de Versailles", + "type": "child", + "id": "https://ror.org/04k5jw363" + }, + { + "label": "Soutenabilité et Résilence", + "type": "child", + "id": "https://ror.org/047rqcm40" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Laboratoire atmosphères, milieux, observations spatiales", + "type": "child", + "id": "https://ror.org/05ppf7q77" + }, + { + "label": "Infection et inflammation", + "type": "child", + "id": "https://ror.org/021sh3243" + }, + { + "label": "Biomarqueurs et essais cliniques en Cancérologie et Onco-Hématologie", + "type": "child", + "id": "https://ror.org/05r0mw364" + }, + { + "label": "Cultures, Environnements, Arctique, Représentations, Climat", + "type": "child", + "id": "https://ror.org/01bt3e159" + }, + { + "label": "Centre d’histoire culturelle des sociétés contemporaines", + "type": "child", + "id": "https://ror.org/0087n5v55" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Laboratoire de Droit des affaires et nouvelles technologies", + "type": "child", + "id": "https://ror.org/04ate5z57" + }, + { + "label": "Données et algorithmes pour une ville intelligente et durable", + "type": "child", + "id": "https://ror.org/01xta2p78" + }, + { + "label": "Dynamiques patrimoniales et culturelles", + "type": "child", + "id": "https://ror.org/00cw4qm30" + }, + { + "label": "Equipe de recherche paramédicale sur le handicap neuromoteur", + "type": "child", + "id": "https://ror.org/023bv6t84" + }, + { + "label": "Institut photonique d'analyse non-destructive européen des matériaux anciens", + "type": "child", + "id": "https://ror.org/04k0drf78" + }, + { + "label": "Institut de recherches arctiques Jean Malaurie", + "type": "child", + "id": "https://ror.org/008hxwy89" + }, + { + "label": "Laboratoire Anthropologie, Archéologie, Biologie", + "type": "child", + "id": "https://ror.org/023b2c435" + }, + { + "label": "Laboratoire de recherche en Management", + "type": "child", + "id": "https://ror.org/00s4fex77" + }, + { + "label": "Laboratoire de génétique et biologie cellulaire", + "type": "child", + "id": "https://ror.org/00edzht24" + }, + { + "label": "Laboratoire interdisciplinaire sur les mutations des espaces économiques et politiques - Paris Saclay", + "type": "child", + "id": "https://ror.org/01jdptv64" + }, + { + "label": "Laboratoire d’informatique Parallélisme Réseaux Algorithmes Distribués", + "type": "child", + "id": "https://ror.org/00qyswv14" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes de Versailles", + "type": "child", + "id": "https://ror.org/01hcc6p91" + }, + { + "label": "Laboratoire physiopathologie et pharmacologie clinique de la douleur", + "type": "child", + "id": "https://ror.org/02k243t26" + }, + { + "label": "Risques cliniques et sécurité en santé des femmes et en santé périnatale", + "type": "child", + "id": "https://ror.org/01wc6sh26" + }, + { + "label": "Centre de recherche Versailles Saint-Quentin Institutions Publiques", + "type": "child", + "id": "https://ror.org/042j26x71" + }, + { + "label": "Biologie de la Reproduction, Environnement, Epigénétique et Développement", + "type": "child", + "id": "https://ror.org/05mfwtg94" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03n15ch10.json b/rc-v1.43-v2/updates/03n15ch10.json new file mode 100644 index 000000000..c8c717606 --- /dev/null +++ b/rc-v1.43-v2/updates/03n15ch10.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.457334.2" + ], + "preferred": "grid.457334.2" + } + ], + "id": "https://ror.org/03n15ch10", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www-centre-saclay.cea.fr/fr" + } + ], + "names": [ + { + "value": "CEA Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Direction des énergies", + "type": "parent", + "id": "https://ror.org/03cwzta72" + }, + { + "label": "Laboratoire Interactions, Dynamiques et Lasers", + "type": "child", + "id": "https://ror.org/04dy97z61" + }, + { + "label": "Saclay Nuclear Research Centre", + "type": "child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Soleil Synchrotron", + "type": "child", + "id": "https://ror.org/01ydb3330" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03n8fv677.json b/rc-v1.43-v2/updates/03n8fv677.json new file mode 100644 index 000000000..81c3679d7 --- /dev/null +++ b/rc-v1.43-v2/updates/03n8fv677.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.491054.d" + ], + "preferred": "grid.491054.d" + } + ], + "id": "https://ror.org/03n8fv677", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pronokal.com" + } + ], + "names": [ + { + "value": "Fundación Pronokal", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03nr10290.json b/rc-v1.43-v2/updates/03nr10290.json new file mode 100644 index 000000000..4c0bd3c46 --- /dev/null +++ b/rc-v1.43-v2/updates/03nr10290.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 5007804, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.48948, + "lng": -83.14465, + "name": "Royal Oak" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.459348.7" + ], + "preferred": "grid.459348.7" + } + ], + "id": "https://ror.org/03nr10290", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/services/childrens" + } + ], + "names": [ + { + "value": "Corewell Health Children's", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Beaumont Children's", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03p40sz62.json b/rc-v1.43-v2/updates/03p40sz62.json new file mode 100644 index 000000000..c5225acfd --- /dev/null +++ b/rc-v1.43-v2/updates/03p40sz62.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5901 7165" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100008055" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.483886.9" + ], + "preferred": "grid.483886.9" + } + ], + "id": "https://ror.org/03p40sz62", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fundacioneugeniorodriguezpascual.es" + } + ], + "names": [ + { + "value": "Fundación Eugenio Rodríguez Pascual", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03pbpa834.json b/rc-v1.43-v2/updates/03pbpa834.json new file mode 100644 index 000000000..33b914bf5 --- /dev/null +++ b/rc-v1.43-v2/updates/03pbpa834.json @@ -0,0 +1,67 @@ +{ + "admin": { + "created": { + "date": "2022-06-16", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-06-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2017, + "external_ids": [], + "id": "https://ror.org/03pbpa834", + "links": [ + { + "type": "website", + "value": "https://www.genturis.eu" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + }, + "geonames_id": 2750053 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "ERN GENTURIS" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "European Reference Network on rare genetic tumour risk syndromes" + } + ], + "relationships": [ + { + "label": "ERN Board of Member States", + "type": "parent", + "id": "https://ror.org/00r7apq26" + }, + { + "label": "Radboud University Medical Center", + "type": "related", + "id": "https://ror.org/05wg1m734" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03prydq77.json b/rc-v1.43-v2/updates/03prydq77.json new file mode 100644 index 000000000..d3b59def8 --- /dev/null +++ b/rc-v1.43-v2/updates/03prydq77.json @@ -0,0 +1,133 @@ +{ + "locations": [ + { + "geonames_id": 2761369, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.20849, + "lng": 16.37208, + "name": "Vienna" + } + } + ], + "established": 1365, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2286 1424" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100003065", + "501100003066" + ], + "preferred": "501100003065" + }, + { + "type": "wikidata", + "all": [ + "Q165980", + "Q1362780" + ], + "preferred": "Q165980" + }, + { + "type": "grid", + "all": [ + "grid.10420.37" + ], + "preferred": "grid.10420.37" + } + ], + "id": "https://ror.org/03prydq77", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.univie.ac.at/en/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Vienna" + } + ], + "names": [ + { + "value": "University of Vienna", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universität Wien", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "Sveučilište u Beču", + "types": [ + "label" + ], + "lang": "hr" + }, + { + "value": "Bécsi Egyetem", + "types": [ + "label" + ], + "lang": "hu" + }, + { + "value": "Univerza na Dunaju", + "types": [ + "label" + ], + "lang": "sl" + } + ], + "relationships": [ + { + "label": "Vienna General Hospital", + "type": "related", + "id": "https://ror.org/05f0zr486" + }, + { + "label": "Christian Doppler Laboratory for Thermoelectricity", + "type": "child", + "id": "https://ror.org/01cbw5x35" + }, + { + "label": "Vienna Center for Quantum Science and Technology", + "type": "child", + "id": "https://ror.org/014cpn338" + }, + { + "label": "Vienna BioCenter Core Facilities", + "type": "child", + "id": "https://ror.org/01w64ht88" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03pvr2g57.json b/rc-v1.43-v2/updates/03pvr2g57.json new file mode 100644 index 000000000..a00127422 --- /dev/null +++ b/rc-v1.43-v2/updates/03pvr2g57.json @@ -0,0 +1,120 @@ +{ + "locations": [ + { + "geonames_id": 2805615, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.79391, + "lng": 9.95121, + "name": "Würzburg" + } + } + ], + "established": 1402, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1378 7891" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1784848" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.411760.5" + ], + "preferred": "grid.411760.5" + } + ], + "id": "https://ror.org/03pvr2g57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ukw.de" + } + ], + "names": [ + { + "value": "Universitätsklinikum Würzburg", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University Hospital Würzburg", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University Hospital of Wuerzburg", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universitaetsklinikum Wuerzburg - Klinikum Der Bayerischen Julius-Maximilians-Universitat", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UKW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Würzburg", + "type": "related", + "id": "https://ror.org/00fbnyb24" + }, + { + "label": "Augenklinik Universitätsklinikum Würzburg", + "type": "child", + "id": "https://ror.org/00rwpbm87" + }, + { + "label": "Comprehensive Cancer Center Mainfranken", + "type": "child", + "id": "https://ror.org/013tmk464" + }, + { + "label": "Universitäts-Kinderklinik Würzburg", + "type": "child", + "id": "https://ror.org/000ph9k36" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03q1qx424.json b/rc-v1.43-v2/updates/03q1qx424.json new file mode 100644 index 000000000..737aa40e6 --- /dev/null +++ b/rc-v1.43-v2/updates/03q1qx424.json @@ -0,0 +1,89 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2011, + "external_ids": [ + { + "all": [ + "Q61933021" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.503158.a" + ], + "preferred": "grid.503158.a", + "type": "grid" + } + ], + "id": "https://ror.org/03q1qx424", + "links": [ + { + "type": "website", + "value": "https://www6.montpellier.inra.fr/dgimi_eng/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Diversity, Genomes and Insects-Microorganisms Interactions" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Diversité, génomes et interactions micro-organismes-insectes" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DGIMI" + } + ], + "relationships": [ + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03q28x580.json b/rc-v1.43-v2/updates/03q28x580.json new file mode 100644 index 000000000..bf9c18f4e --- /dev/null +++ b/rc-v1.43-v2/updates/03q28x580.json @@ -0,0 +1,74 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1944, + "external_ids": [ + { + "all": [ + "grid.503035.0" + ], + "preferred": "grid.503035.0", + "type": "grid" + }, + { + "all": [ + "Q15243261" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03q28x580", + "links": [ + { + "type": "website", + "value": "https://www.maxiv.lu.se/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/MAX_IV_Laboratory" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "SE", + "country_name": "Sweden", + "lat": 55.70584, + "lng": 13.19321, + "name": "Lund" + }, + "geonames_id": 2693678 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "MAX IV Laboratory" + } + ], + "relationships": [ + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03rd4h240.json b/rc-v1.43-v2/updates/03rd4h240.json new file mode 100644 index 000000000..4d9cad3d7 --- /dev/null +++ b/rc-v1.43-v2/updates/03rd4h240.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100006130", + "100006172", + "100006149" + ], + "preferred": "100006130" + }, + { + "type": "wikidata", + "all": [ + "Q12064662" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.453355.1" + ], + "preferred": "grid.453355.1" + } + ], + "id": "https://ror.org/03rd4h240", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://energy.gov/oe/office-electricity-delivery-and-energy-reliability" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Office_of_Electricity_Delivery_and_Energy_Reliability" + } + ], + "names": [ + { + "value": "Office of Electricity Delivery and Energy Reliability", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "OE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United States Department of Energy", + "type": "parent", + "id": "https://ror.org/01bj3aw27" + }, + { + "label": "Office of Electricity", + "type": "successor", + "id": "https://ror.org/02y6dp041" + } + ], + "status": "withdrawn", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03rnk6m14.json b/rc-v1.43-v2/updates/03rnk6m14.json new file mode 100644 index 000000000..f3904f3a0 --- /dev/null +++ b/rc-v1.43-v2/updates/03rnk6m14.json @@ -0,0 +1,178 @@ +{ + "locations": [ + { + "geonames_id": 2992166, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + } + } + ], + "established": 1842, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2172 5332" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2945808" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434209.8" + ], + "preferred": "grid.434209.8" + } + ], + "id": "https://ror.org/03rnk6m14", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.institut-agro-montpellier.fr" + } + ], + "names": [ + { + "value": "Institut Agro Montpellier", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Montpellier SupAgro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SupAgro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Centre international d'études supérieures en sciences agronomiques", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [ + { + "label": "Languedoc-Roussillon Universities", + "type": "parent", + "id": "https://ror.org/04f6hmf16" + }, + { + "label": "Agropolymerpolymer Engineering and Emerging Technologies", + "type": "child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Diversity, Genomes and Insects-Microorganisms Interactions", + "type": "child", + "id": "https://ror.org/03q1qx424" + }, + { + "label": "Functional Ecology and Biogeochemistry of Soils and Agrosystems", + "type": "child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Laboratoire d'Écophysiologie Moléculaire des Plantes sous Stress Environnementaux", + "type": "child", + "id": "https://ror.org/03fte3n86" + }, + { + "label": "Laboratoire des Symbioses Tropicales et Méditerranéennes", + "type": "child", + "id": "https://ror.org/05q94pf14" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Mathématiques, Informatique et Statistique pour l'Environnement et l'Agronomie", + "type": "child", + "id": "https://ror.org/01pd2sz18" + }, + { + "label": "Sciences pour L’Œnologie", + "type": "child", + "id": "https://ror.org/04w07sc25" + }, + { + "label": "Tropical and Mediterranean Animal Production Systems", + "type": "child", + "id": "https://ror.org/05merjr74" + }, + { + "label": "Tropical and Mediterranean Cropping System Functioning and Management", + "type": "child", + "id": "https://ror.org/033x0mt18" + }, + { + "label": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation", + "type": "child", + "id": "https://ror.org/03kbarg82" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03rtqzj55.json b/rc-v1.43-v2/updates/03rtqzj55.json new file mode 100644 index 000000000..2e5fec25f --- /dev/null +++ b/rc-v1.43-v2/updates/03rtqzj55.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2510911, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 37.38283, + "lng": -5.97317, + "name": "Seville" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.425160.4" + ], + "preferred": "grid.425160.4" + } + ], + "id": "https://ror.org/03rtqzj55", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.inabensa.com/web/en/index.html" + } + ], + "names": [ + { + "value": "Inabensa (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instalaciones Inabensa, S.A.", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03rwgpn18.json b/rc-v1.43-v2/updates/03rwgpn18.json new file mode 100644 index 000000000..4f04b5114 --- /dev/null +++ b/rc-v1.43-v2/updates/03rwgpn18.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1896, + "external_ids": [ + { + "all": [ + "100009217", + "100006465", + "100009218" + ], + "preferred": "100009217", + "type": "fundref" + }, + { + "all": [ + "grid.254280.9" + ], + "preferred": "grid.254280.9", + "type": "grid" + }, + { + "all": [ + "0000 0001 0741 9486" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q931865" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03rwgpn18", + "links": [ + { + "type": "website", + "value": "http://www.clarkson.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Clarkson_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.66978, + "lng": -74.98131, + "name": "Potsdam" + }, + "geonames_id": 5132103 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Clarkson University" + } + ], + "relationships": [ + { + "label": "Union Graduate College", + "type": "child", + "id": "https://ror.org/05p9w4h97" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03s4khd80.json b/rc-v1.43-v2/updates/03s4khd80.json new file mode 100644 index 000000000..47cfeb3c3 --- /dev/null +++ b/rc-v1.43-v2/updates/03s4khd80.json @@ -0,0 +1,101 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1976, + "external_ids": [ + { + "all": [ + "501100005042", + "501100006587" + ], + "preferred": "501100005042", + "type": "fundref" + }, + { + "all": [ + "grid.48769.34" + ], + "preferred": "grid.48769.34", + "type": "grid" + }, + { + "all": [ + "0000 0004 0461 6320" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2979314" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03s4khd80", + "links": [ + { + "type": "website", + "value": "http://www.saintluc.be/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Cliniques_Universitaires_Saint-Luc" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + }, + "geonames_id": 2800866 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Cliniques Universitaires Saint-Luc" + }, + { + "lang": "nl", + "types": [ + "label" + ], + "value": "Universitair ziekenhuis Sint-Lambrechts-Woluwe" + } + ], + "relationships": [ + { + "label": "UCLouvain", + "type": "related", + "id": "https://ror.org/02495e989" + }, + { + "label": "Fondation Saint-Luc", + "type": "child", + "id": "https://ror.org/021354321" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03s92mv58.json b/rc-v1.43-v2/updates/03s92mv58.json new file mode 100644 index 000000000..82b52a2e0 --- /dev/null +++ b/rc-v1.43-v2/updates/03s92mv58.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.464121.4" + ], + "preferred": "grid.464121.4" + } + ], + "id": "https://ror.org/03s92mv58", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://geops.geol.u-psud.fr/" + } + ], + "names": [ + { + "value": "Geosciences Paris Sud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "GEOPS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "University of Paris-Sud", + "type": "parent", + "id": "https://ror.org/028rypz17" + } + ], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03sv46s19.json b/rc-v1.43-v2/updates/03sv46s19.json new file mode 100644 index 000000000..7b8d31a0e --- /dev/null +++ b/rc-v1.43-v2/updates/03sv46s19.json @@ -0,0 +1,93 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100010198" + ], + "preferred": "501100010198" + }, + { + "type": "wikidata", + "all": [ + "Q81886673" + ], + "preferred": "Q81886673" + } + ], + "id": "https://ror.org/03sv46s19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://portal.mineco.gob.es" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Ministerio_de_Asuntos_Econ%C3%B3micos_y_Transformaci%C3%B3n_Digital" + } + ], + "names": [ + { + "value": "Ministerio de Asuntos Económicos y Transformación Digital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Economic Affairs and Digital Transformation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "MINECO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ministry of Economy, Industry and Competitiveness", + "type": "predecessor", + "id": "https://ror.org/034900433" + }, + { + "label": "Ministerio para la Transformación Digital y de la Función Pública", + "type": "successor", + "id": "https://ror.org/01qh08519" + } + ], + "status": "inactive", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03sypqe31.json b/rc-v1.43-v2/updates/03sypqe31.json new file mode 100644 index 000000000..05baa3b23 --- /dev/null +++ b/rc-v1.43-v2/updates/03sypqe31.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 495X" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.464173.3" + ], + "preferred": "grid.464173.3" + } + ], + "id": "https://ror.org/03sypqe31", + "domains": [], + "links": [], + "names": [ + { + "value": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SMPSD", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Atomic Energy and Alternative Energies Commission", + "type": "parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03t61s708.json b/rc-v1.43-v2/updates/03t61s708.json new file mode 100644 index 000000000..d00fb0d3f --- /dev/null +++ b/rc-v1.43-v2/updates/03t61s708.json @@ -0,0 +1,108 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1707, + "external_ids": [ + { + "all": [ + "grid.451251.6" + ], + "preferred": "grid.451251.6", + "type": "grid" + }, + { + "all": [ + "0000 0001 2181 0086" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q11010", + "Q11007" + ], + "preferred": "Q11010", + "type": "wikidata" + } + ], + "id": "https://ror.org/03t61s708", + "links": [ + { + "type": "website", + "value": "http://www.parliament.uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Parliament_of_the_United_Kingdom" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "British Parliament" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Parliament of United Kingdom" + }, + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Tŷ'r Arglwyddi" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "UK Parliament" + } + ], + "relationships": [ + { + "label": "Parliamentary Office of Science and Technology", + "type": "child", + "id": "https://ror.org/02pvnr704" + }, + { + "label": "Scottish Home and Health Department", + "type": "child", + "id": "https://ror.org/043xqa828" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03tdnf746.json b/rc-v1.43-v2/updates/03tdnf746.json new file mode 100644 index 000000000..9ebd2db55 --- /dev/null +++ b/rc-v1.43-v2/updates/03tdnf746.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3117164, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.54211, + "lng": 2.4445, + "name": "Mataró" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q5065642" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.424852.d" + ], + "preferred": "grid.424852.d" + } + ], + "id": "https://ror.org/03tdnf746", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cetemmsa.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Cetemmsa" + } + ], + "names": [ + { + "value": "CETEMMSA Technological Centre (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fundación Privada CETEMMSA", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03tj80n37.json b/rc-v1.43-v2/updates/03tj80n37.json new file mode 100644 index 000000000..d5ddc9e6d --- /dev/null +++ b/rc-v1.43-v2/updates/03tj80n37.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1894, + "external_ids": [ + { + "all": [ + "grid.420452.5" + ], + "preferred": "grid.420452.5", + "type": "grid" + }, + { + "all": [ + "0000 0001 2108 2015" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1538540" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03tj80n37", + "links": [ + { + "type": "website", + "value": "https://www.goshen.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Goshen_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.58227, + "lng": -85.83444, + "name": "Goshen" + }, + "geonames_id": 4920808 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Elkhart Institute of Science, Industry and the Arts" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Goshen College" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03tkwyq76.json b/rc-v1.43-v2/updates/03tkwyq76.json new file mode 100644 index 000000000..4239dd7c6 --- /dev/null +++ b/rc-v1.43-v2/updates/03tkwyq76.json @@ -0,0 +1,79 @@ +{ + "admin": { + "created": { + "date": "2023-07-06", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2013, + "external_ids": [], + "id": "https://ror.org/03tkwyq76", + "links": [ + { + "type": "website", + "value": "https://www.ru.nl/felix/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + }, + "geonames_id": 2750053 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "FELIX" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "FELIX Laboratory" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Free Electron Lasers for Infrared eXperiments" + } + ], + "relationships": [ + { + "label": "Radboud University Nijmegen", + "type": "parent", + "id": "https://ror.org/016xsfp80" + }, + { + "label": "Dutch Research Council", + "type": "parent", + "id": "https://ror.org/04jsz6e67" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03tscbz39.json b/rc-v1.43-v2/updates/03tscbz39.json new file mode 100644 index 000000000..2104253a5 --- /dev/null +++ b/rc-v1.43-v2/updates/03tscbz39.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": 2007, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100009120" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423766.2" + ], + "preferred": "grid.423766.2" + }, + { + "type": "wikidata", + "all": [ + "Q30284524" + ], + "preferred": "Q30284524" + } + ], + "id": "https://ror.org/03tscbz39", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fondation-lehn.fr" + } + ], + "names": [ + { + "value": "Fondation Jean-Marie Lehn", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "International Center for Frontier Research in Chemistry", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Jean-Marie Lehn Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Centre international de recherche aux frontières de la chimie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Strasbourg Center for Frontier Research in Chemistry", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Le Centre International de Recherche aux Frontières de la Chimie", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "ICRFC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03v2nbx43.json b/rc-v1.43-v2/updates/03v2nbx43.json new file mode 100644 index 000000000..37d43e6d5 --- /dev/null +++ b/rc-v1.43-v2/updates/03v2nbx43.json @@ -0,0 +1,102 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1893, + "external_ids": [ + { + "all": [ + "501100003770" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.466503.2" + ], + "preferred": "grid.466503.2", + "type": "grid" + }, + { + "all": [ + "0000 0001 2296 4343" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q806176" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03v2nbx43", + "links": [ + { + "type": "website", + "value": "http://www.bancaditalia.it/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Banca_d%27Italia" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 41.89193, + "lng": 12.51133, + "name": "Rome" + }, + "geonames_id": 3169070 + } + ], + "names": [ + { + "lang": "it", + "types": [ + "label" + ], + "value": "Banca d'Italia" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bank of Italy" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bankitalia" + } + ], + "relationships": [ + { + "label": "Einaudi Institute for Economics and Finance", + "type": "related", + "id": "https://ror.org/04e874t64" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03v9efr22.json b/rc-v1.43-v2/updates/03v9efr22.json new file mode 100644 index 000000000..df9737b98 --- /dev/null +++ b/rc-v1.43-v2/updates/03v9efr22.json @@ -0,0 +1,93 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-02-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2007, + "external_ids": [ + { + "all": [ + "501100015686" + ], + "preferred": "501100015686", + "type": "fundref" + }, + { + "all": [ + "grid.412917.8" + ], + "preferred": "grid.412917.8", + "type": "grid" + }, + { + "all": [ + "0000 0004 0430 9259" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/03v9efr22", + "links": [ + { + "type": "website", + "value": "http://www.christie.nhs.uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Christie_NHS_Foundation_Trust" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.48095, + "lng": -2.23743, + "name": "Manchester" + }, + "geonames_id": 2643123 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Christie Hospital NHS Foundation Trust" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "The Christie NHS Foundation Trust" + } + ], + "relationships": [ + { + "label": "The Christie Hospital", + "type": "child", + "id": "https://ror.org/03nd63441" + }, + { + "label": "Cancer Research UK Manchester Centre", + "type": "child", + "id": "https://ror.org/033svsm10" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03vam5b06.json b/rc-v1.43-v2/updates/03vam5b06.json new file mode 100644 index 000000000..d49e418a1 --- /dev/null +++ b/rc-v1.43-v2/updates/03vam5b06.json @@ -0,0 +1,116 @@ +{ + "locations": [ + { + "geonames_id": 3029276, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.79632, + "lng": 2.33661, + "name": "Cachan" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0370 4273" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30262402" + ], + "preferred": "Q30262402" + }, + { + "type": "grid", + "all": [ + "grid.464043.1" + ], + "preferred": "grid.464043.1" + } + ], + "id": "https://ror.org/03vam5b06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://satie.ens-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory of Systems and Applications of Information and Energy Technologies", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "SATIE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "CY Cergy Paris University", + "type": "parent", + "id": "https://ror.org/043htjv09" + }, + { + "label": "Conservatoire National des Arts et Métiers", + "type": "parent", + "id": "https://ror.org/0175hh227" + }, + { + "label": "Université Gustave Eiffel", + "type": "parent", + "id": "https://ror.org/03x42jk29" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "parent", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03vek6s52.json b/rc-v1.43-v2/updates/03vek6s52.json new file mode 100644 index 000000000..fa4d5aa6e --- /dev/null +++ b/rc-v1.43-v2/updates/03vek6s52.json @@ -0,0 +1,329 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1636, + "external_ids": [ + { + "all": [ + "100007229", + "100010520", + "100009802", + "100009868", + "100008548", + "100008549", + "100005724", + "100005578", + "100009116", + "100008036", + "100009345", + "100005668", + "100010952", + "100008024", + "100005487", + "100005473", + "100005293", + "100006075", + "100005915", + "100005469", + "100005650", + "100005678", + "100005692", + "100005802", + "100005856", + "100005893", + "100005941", + "100006007", + "100006011", + "100006274", + "100007230", + "100007300", + "100007887", + "100008263", + "100005574", + "100007299", + "100006691", + "100007301", + "100019552" + ], + "preferred": "100007229", + "type": "fundref" + }, + { + "all": [ + "grid.38142.3c" + ], + "preferred": "grid.38142.3c", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 754X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q13371", + "Q5676556" + ], + "preferred": "Q13371", + "type": "wikidata" + } + ], + "id": "https://ror.org/03vek6s52", + "links": [ + { + "type": "website", + "value": "http://www.harvard.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Harvard_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.3751, + "lng": -71.10561, + "name": "Cambridge" + }, + "geonames_id": 4931972 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Harvard University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de Harvard" + } + ], + "relationships": [ + { + "label": "Athinoula A. Martinos Center for Biomedical Imaging", + "type": "child", + "id": "https://ror.org/032q5ym94" + }, + { + "label": "Berenson Allen Center for Noninvasive Brain Stimulation", + "type": "child", + "id": "https://ror.org/03hj6c016" + }, + { + "label": "Center for Astrophysics Harvard & Smithsonian", + "type": "child", + "id": "https://ror.org/03c3r2d17" + }, + { + "label": "Center for Systems Biology", + "type": "child", + "id": "https://ror.org/05r3dyn47" + }, + { + "label": "Center for Vascular Biology Research", + "type": "child", + "id": "https://ror.org/04wsv7966" + }, + { + "label": "Gordon Center for Medical Imaging", + "type": "child", + "id": "https://ror.org/004y4rj95" + }, + { + "label": "Harvard Stem Cell Institute", + "type": "child", + "id": "https://ror.org/04kj1hn59" + }, + { + "label": "Harvard University Press", + "type": "child", + "id": "https://ror.org/006v7bf86" + }, + { + "label": "MIT-Harvard Center for Ultracold Atoms", + "type": "child", + "id": "https://ror.org/053tmcn30" + }, + { + "label": "Ragon Institute of MGH, MIT and Harvard", + "type": "child", + "id": "https://ror.org/053r20n13" + }, + { + "label": "Sleep and Human Health Institute", + "type": "child", + "id": "https://ror.org/04r5ess67" + }, + { + "label": "The NSF AI Institute for Artificial Intelligence and Fundamental Interactions", + "type": "child", + "id": "https://ror.org/04pvzz946" + }, + { + "label": "Arnold Arboretum", + "type": "child", + "id": "https://ror.org/05xsxgs79" + }, + { + "label": "Harvard Forest Long Term Ecological Research", + "type": "child", + "id": "https://ror.org/059cpzx98" + }, + { + "label": "Wyss Institute for Biologically Inspired Engineering", + "type": "child", + "id": "https://ror.org/008cfmj78" + }, + { + "label": "Dana-Farber/Harvard Cancer Center", + "type": "child", + "id": "https://ror.org/03pvyf116" + }, + { + "label": "Beth Israel Deaconess Medical Center", + "type": "related", + "id": "https://ror.org/04drvxt59" + }, + { + "label": "Boston Children's Hospital", + "type": "related", + "id": "https://ror.org/00dvg7y05" + }, + { + "label": "Boston IVF", + "type": "related", + "id": "https://ror.org/05xckek43" + }, + { + "label": "Botswana Harvard AIDS Institute Partnership", + "type": "related", + "id": "https://ror.org/04rkbns44" + }, + { + "label": "Brigham and Women's Faulkner Hospital", + "type": "related", + "id": "https://ror.org/03w44ff23" + }, + { + "label": "Brigham and Women's Hospital", + "type": "related", + "id": "https://ror.org/04b6nzv94" + }, + { + "label": "Broad Institute", + "type": "related", + "id": "https://ror.org/05a0ya142" + }, + { + "label": "Cambridge Health Alliance", + "type": "related", + "id": "https://ror.org/059c3mv67" + }, + { + "label": "Dana-Farber Cancer Institute", + "type": "related", + "id": "https://ror.org/02jzgtq86" + }, + { + "label": "Harvard Pilgrim Health Care", + "type": "related", + "id": "https://ror.org/01zxdeg39" + }, + { + "label": "Harvard–MIT Division of Health Sciences and Technology", + "type": "related", + "id": "https://ror.org/00jjeh629" + }, + { + "label": "Hebrew SeniorLife", + "type": "related", + "id": "https://ror.org/02vptss42" + }, + { + "label": "IIT@Harvard", + "type": "related", + "id": "https://ror.org/044hpwe09" + }, + { + "label": "Joslin Diabetes Center", + "type": "related", + "id": "https://ror.org/0280a3n32" + }, + { + "label": "Judge Baker Children's Center", + "type": "related", + "id": "https://ror.org/05tby3y60" + }, + { + "label": "Lahey Hospital and Medical Center", + "type": "related", + "id": "https://ror.org/03mbq3y29" + }, + { + "label": "Massachusetts Eye and Ear Infirmary", + "type": "related", + "id": "https://ror.org/04g3dn724" + }, + { + "label": "Massachusetts General Hospital", + "type": "related", + "id": "https://ror.org/002pd6e78" + }, + { + "label": "Massachusetts Green High Performance Computing Center", + "type": "related", + "id": "https://ror.org/05par7p11" + }, + { + "label": "McLean Hospital", + "type": "related", + "id": "https://ror.org/01kta7d96" + }, + { + "label": "Newton Wellesley Hospital", + "type": "related", + "id": "https://ror.org/03hrxmf69" + }, + { + "label": "Somerville Hospital", + "type": "related", + "id": "https://ror.org/023pf5e38" + }, + { + "label": "Spaulding Rehabilitation Hospital", + "type": "related", + "id": "https://ror.org/011dvr318" + }, + { + "label": "Real Colegio Complutense", + "type": "child", + "id": "https://ror.org/05b0g2v72" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03x42jk29.json b/rc-v1.43-v2/updates/03x42jk29.json new file mode 100644 index 000000000..f46e8d997 --- /dev/null +++ b/rc-v1.43-v2/updates/03x42jk29.json @@ -0,0 +1,223 @@ +{ + "admin": { + "created": { + "date": "2020-12-21", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2020, + "external_ids": [ + { + "all": [ + "501100023359" + ], + "preferred": "501100023359", + "type": "fundref" + }, + { + "all": [ + "Q65153823" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.509737.f" + ], + "preferred": "grid.509737.f", + "type": "grid" + } + ], + "id": "https://ror.org/03x42jk29", + "links": [ + { + "type": "website", + "value": "https://www.univ-gustave-eiffel.fr/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Gustave_Eiffel_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85, + "lng": 2.6, + "name": "Champs-sur-Marne" + }, + "geonames_id": 3027014 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Université Gustave Eiffel" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Gustave Eiffel University" + } + ], + "relationships": [ + { + "label": "Biomechanics and Impact Mechanics Laboratory", + "type": "child", + "id": "https://ror.org/02awy7178" + }, + { + "label": "Fédération de Recherche FCLAB", + "type": "child", + "id": "https://ror.org/01kvxx237" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Laboratoire Modélisation et Simulation Multi-Echelle", + "type": "child", + "id": "https://ror.org/04rrzfd14" + }, + { + "label": "Laboratoire Navier", + "type": "child", + "id": "https://ror.org/029hkd614" + }, + { + "label": "Laboratoire Ville Mobilité Transport", + "type": "child", + "id": "https://ror.org/056vbnz12" + }, + { + "label": "Laboratoire d'Informatique Gaspard-Monge", + "type": "child", + "id": "https://ror.org/04t50yk91" + }, + { + "label": "Laboratoire d'Ingénierie Circulation Transports", + "type": "child", + "id": "https://ror.org/02ahzca76" + }, + { + "label": "Laboratoire d'Urbanisme", + "type": "child", + "id": "https://ror.org/017x69387" + }, + { + "label": "Laboratoire d’Analyse et de Mathématiques Appliquées", + "type": "child", + "id": "https://ror.org/0581g8849" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Équipe de Recherche sur l’Utilisation des Données Individuelles en Lien avec la Théorie Économique", + "type": "child", + "id": "https://ror.org/047egvh76" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "related", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "Dispositifs d'information et de communication à l'ère du numérique - Paris Ile-de-france", + "type": "child", + "id": "https://ror.org/05wrsh961" + }, + { + "label": "Institut de Recherche en Gestion", + "type": "child", + "id": "https://ror.org/0546daj73" + }, + { + "label": "Laboratoire d'électronique, systèmes de communication et microsystèmes", + "type": "child", + "id": "https://ror.org/01m83bk32" + }, + { + "label": "Unité Mixte de Recherche Epidémiologique et de Surveillance Transport Travail Environnement", + "type": "child", + "id": "https://ror.org/03vmza063" + }, + { + "label": "Laboratoire Interdisciplinaire d'étude du Politique Hannah Arendt", + "type": "child", + "id": "https://ror.org/03zffa955" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "Unité Mixte de Recherche en Acoustique Environnementale", + "type": "child", + "id": "https://ror.org/00tjzq647" + }, + { + "label": "Laboratoire de Psychologie et d’Ergonomie Appliquées", + "type": "child", + "id": "https://ror.org/0572pak88" + }, + { + "label": "ESIEE Paris", + "type": "child", + "id": "https://ror.org/04x383a88" + }, + { + "label": "Laboratoire Instrumentation, Simulation et Informatique Scientifique", + "type": "child", + "id": "https://ror.org/01q2bn656" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Ecole Nationale des Sciences Géographiques", + "type": "child", + "id": "https://ror.org/03r3n3715" + }, + { + "label": "Laboratoire Techniques, Territoires et Sociétés", + "type": "child", + "id": "https://ror.org/05fc1hn07" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03x4pp342.json b/rc-v1.43-v2/updates/03x4pp342.json new file mode 100644 index 000000000..e4f6630d2 --- /dev/null +++ b/rc-v1.43-v2/updates/03x4pp342.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 4990510, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.32226, + "lng": -83.17631, + "name": "Dearborn" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0394 7232" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.416675.7" + ], + "preferred": "grid.416675.7" + } + ], + "id": "https://ror.org/03x4pp342", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/locations/beaumont-hospital-dearborn" + } + ], + "names": [ + { + "value": "Beaumont Hospital, Dearborn", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Beaumont Hospital", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Oakwood Hospital - Dearborn", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03x94j517.json b/rc-v1.43-v2/updates/03x94j517.json new file mode 100644 index 000000000..77cb6fc54 --- /dev/null +++ b/rc-v1.43-v2/updates/03x94j517.json @@ -0,0 +1,290 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1913, + "external_ids": [ + { + "all": [ + "501100000265" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.14105.31" + ], + "preferred": "grid.14105.31", + "type": "grid" + }, + { + "all": [ + "0000 0001 2247 8951" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q746879" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03x94j517", + "links": [ + { + "type": "website", + "value": "https://www.ukri.org/councils/mrc/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Medical_Research_Council_%28United_Kingdom%29" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MRC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Medical Research Council" + } + ], + "relationships": [ + { + "label": "CRUK/MRC Oxford Institute for Radiation Oncology", + "type": "child", + "id": "https://ror.org/011hz4254" + }, + { + "label": "Centre for Inflammation Research", + "type": "child", + "id": "https://ror.org/05wcr1b38" + }, + { + "label": "Dementias Platform UK", + "type": "child", + "id": "https://ror.org/05p21nq18" + }, + { + "label": "Hutchison/MRC Research Centre", + "type": "child", + "id": "https://ror.org/01ajt3179" + }, + { + "label": "MRC Biostatistics Unit", + "type": "child", + "id": "https://ror.org/046vje122" + }, + { + "label": "MRC Brain Network Dynamics Unit", + "type": "child", + "id": "https://ror.org/01tfjyv98" + }, + { + "label": "MRC Cancer Unit", + "type": "child", + "id": "https://ror.org/015nth639" + }, + { + "label": "MRC Centre for Regenerative Medicine", + "type": "child", + "id": "https://ror.org/01x802g65" + }, + { + "label": "MRC Centre for Reproductive Health", + "type": "child", + "id": "https://ror.org/02f4tsf92" + }, + { + "label": "MRC Clinical Trials Unit at UCL", + "type": "child", + "id": "https://ror.org/001mm6w73" + }, + { + "label": "MRC Cognition and Brain Sciences Unit", + "type": "child", + "id": "https://ror.org/055bpw879" + }, + { + "label": "MRC Epidemiology Unit", + "type": "child", + "id": "https://ror.org/052578691" + }, + { + "label": "MRC Harwell Institute", + "type": "child", + "id": "https://ror.org/0001h1y25" + }, + { + "label": "MRC Human Immunology Unit", + "type": "child", + "id": "https://ror.org/02kcpr174" + }, + { + "label": "MRC Human Nutrition Research", + "type": "child", + "id": "https://ror.org/050pqs331" + }, + { + "label": "MRC Institute of Genetics and Molecular Medicine", + "type": "child", + "id": "https://ror.org/05hygey35" + }, + { + "label": "MRC Institute of Hearing Research", + "type": "child", + "id": "https://ror.org/04gycm791" + }, + { + "label": "MRC Laboratory for Molecular Cell Biology", + "type": "child", + "id": "https://ror.org/00fv61j67" + }, + { + "label": "MRC Laboratory of Molecular Biology", + "type": "child", + "id": "https://ror.org/00tw3jy02" + }, + { + "label": "MRC Lifecourse Epidemiology Unit", + "type": "child", + "id": "https://ror.org/04j4a6x59" + }, + { + "label": "MRC Mitochondrial Biology Unit", + "type": "child", + "id": "https://ror.org/01vdt8f48" + }, + { + "label": "MRC Prion Unit", + "type": "child", + "id": "https://ror.org/043j90n04" + }, + { + "label": "MRC Protein Phosphorylation and Ubiquitylation Unit", + "type": "child", + "id": "https://ror.org/01zg1tt02" + }, + { + "label": "MRC Toxicology Unit", + "type": "child", + "id": "https://ror.org/05362x394" + }, + { + "label": "MRC Unit for Lifelong Health and Ageing", + "type": "child", + "id": "https://ror.org/03kpvby98" + }, + { + "label": "MRC Unit the Gambia", + "type": "child", + "id": "https://ror.org/025wfj672" + }, + { + "label": "MRC University of Glasgow Centre for Virus Research", + "type": "child", + "id": "https://ror.org/03vaer060" + }, + { + "label": "MRC Weatherall Institute of Molecular Medicine", + "type": "child", + "id": "https://ror.org/01q496a73" + }, + { + "label": "MRC/CSO Social and Public Health Sciences Unit", + "type": "child", + "id": "https://ror.org/02v3sdn51" + }, + { + "label": "Scottish Collaboration for Public Health Research and Policy", + "type": "child", + "id": "https://ror.org/05x7p8987" + }, + { + "label": "Wellcome/MRC Cambridge Stem Cell Institute", + "type": "child", + "id": "https://ror.org/05nz0zp31" + }, + { + "label": "Wellcome/MRC Institute of Metabolic Science", + "type": "child", + "id": "https://ror.org/0264dxb48" + }, + { + "label": "MRC Human Genetics Unit", + "type": "child", + "id": "https://ror.org/011jsc803" + }, + { + "label": "MRC Integrative Epidemiology Unit", + "type": "child", + "id": "https://ror.org/030qtrs05" + }, + { + "label": "MRC Population Health Research Unit", + "type": "child", + "id": "https://ror.org/01p4s0142" + }, + { + "label": "MRC Molecular Haematology Unit", + "type": "child", + "id": "https://ror.org/02khxwt12" + }, + { + "label": "MRC Centre for Medical Mycology", + "type": "child", + "id": "https://ror.org/00vbzva31" + }, + { + "label": "MRC Metabolic Diseases Unit", + "type": "child", + "id": "https://ror.org/037a8w620" + }, + { + "label": "UK Research and Innovation", + "type": "parent", + "id": "https://ror.org/001aqnf71" + }, + { + "label": "MRC Centre for Environment and Health", + "type": "child", + "id": "https://ror.org/01vw4c203" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03xjwb503.json b/rc-v1.43-v2/updates/03xjwb503.json new file mode 100644 index 000000000..a7f6eb063 --- /dev/null +++ b/rc-v1.43-v2/updates/03xjwb503.json @@ -0,0 +1,569 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 6535" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100007241" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q109409389" + ], + "preferred": "Q109409389" + }, + { + "type": "grid", + "all": [ + "grid.460789.4" + ], + "preferred": "grid.460789.4" + } + ], + "id": "https://ror.org/03xjwb503", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.universite-paris-saclay.fr/fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Paris-Saclay" + } + ], + "names": [ + { + "value": "University of Paris-Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Université Paris-Saclay", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "Universitat París-Saclay", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Paris-Saclayko Unibertsitatea", + "types": [ + "label" + ], + "lang": "eu" + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "child", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Biologie de la Reproduction, Environnement, Epigénétique et Développement", + "type": "child", + "id": "https://ror.org/05mfwtg94" + }, + { + "label": "CentraleSupélec", + "type": "child", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Centre for Nanoscience and Nanotechnology", + "type": "child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Computer Science, Integrative Biology and Complex Systems", + "type": "child", + "id": "https://ror.org/01aqxgr98" + }, + { + "label": "Hautes Études Commerciales de Paris", + "type": "child", + "id": "https://ror.org/0423jsj19" + }, + { + "label": "Hemostase Inflammation Thrombosis", + "type": "child", + "id": "https://ror.org/03ka94606" + }, + { + "label": "Institut des Cellules Souches pour le Traitement et l'Étude des Maladies Monogéniques", + "type": "child", + "id": "https://ror.org/04g9rt435" + }, + { + "label": "Institut d’Optique Graduate School", + "type": "child", + "id": "https://ror.org/00d0rke27" + }, + { + "label": "Laboratoire Génie Industriel", + "type": "child", + "id": "https://ror.org/0455wwj08" + }, + { + "label": "Laboratoire de Physique des 2 Infinis Irène Joliot-Curie", + "type": "child", + "id": "https://ror.org/03gc1p724" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratory of Quantum and Molecular Photonics", + "type": "child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire Interactions, Dynamiques et Lasers", + "type": "child", + "id": "https://ror.org/04dy97z61" + }, + { + "label": "Leprince-Ringuet Laboratory", + "type": "child", + "id": "https://ror.org/058t6p923" + }, + { + "label": "Saclay Nuclear Research Centre", + "type": "child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "University of Évry Val d'Essonne", + "type": "child", + "id": "https://ror.org/00e96v939" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "child", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "École Nationale de la Statistique et de l'Administration Économique", + "type": "child", + "id": "https://ror.org/01fz7mn40" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "child", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "Laboratoire Universitaire de Recherche en Production Automatisée", + "type": "child", + "id": "https://ror.org/05wjc8a85" + }, + { + "label": "SADAPT Science Action Développement - Activités Produits Territoires", + "type": "child", + "id": "https://ror.org/01cmdgj85" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Mathématiques et Informatique pour la Complexité et les Systèmes", + "type": "child", + "id": "https://ror.org/03q29s414" + }, + { + "label": "Physiologie et Physiopathlogie Endocriniennes", + "type": "child", + "id": "https://ror.org/05kz79f96" + }, + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "child", + "id": "https://ror.org/048qk7477" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "child", + "id": "https://ror.org/00780az30" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Physiopathogénèse et Traitement des Maladies du Foie", + "type": "child", + "id": "https://ror.org/01zrk7293" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "child", + "id": "https://ror.org/00p73bw06" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "Laboratoire de Biologie de l'Exercice pour la Performance et la Santé", + "type": "child", + "id": "https://ror.org/0449rap84" + }, + { + "label": "Centre de Recherche en Design", + "type": "child", + "id": "https://ror.org/007y9b339" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Biomarqueurs et essais cliniques en Cancérologie et Onco-Hématologie", + "type": "child", + "id": "https://ror.org/05r0mw364" + }, + { + "label": "Centre d’histoire culturelle des sociétés contemporaines", + "type": "child", + "id": "https://ror.org/0087n5v55" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Equipe de recherche paramédicale sur le handicap neuromoteur", + "type": "child", + "id": "https://ror.org/023bv6t84" + }, + { + "label": "Institut de recherches arctiques Jean Malaurie", + "type": "child", + "id": "https://ror.org/008hxwy89" + }, + { + "label": "Laboratoire Anthropologie, Archéologie, Biologie", + "type": "child", + "id": "https://ror.org/023b2c435" + }, + { + "label": "Laboratoire interdisciplinaire sur les mutations des espaces économiques et politiques - Paris Saclay", + "type": "child", + "id": "https://ror.org/01jdptv64" + }, + { + "label": "Maison de la Simulation", + "type": "child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "CIRED", + "type": "child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Genome Integrity, RNA and Cancer", + "type": "child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "child", + "id": "https://ror.org/05dy6wv04" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "child", + "id": "https://ror.org/0211r2z47" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institute of Integrative Biology of the Cell", + "type": "child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Interactions Cellulaires et Physiopathologie Hépathique", + "type": "child", + "id": "https://ror.org/05dpfhh73" + }, + { + "label": "Laboratoire Aimé Cotton", + "type": "child", + "id": "https://ror.org/021xexe56" + }, + { + "label": "Complexité, Innovation et Activités Motrices et Sportives", + "type": "child", + "id": "https://ror.org/00k3ph542" + }, + { + "label": "Laboratoire de Chimie Physique", + "type": "child", + "id": "https://ror.org/016r2hq43" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire de physique des Solides", + "type": "child", + "id": "https://ror.org/02dyaew97" + }, + { + "label": "Laboratory of Theoretical Physics and Statistical Models", + "type": "child", + "id": "https://ror.org/00w67e447" + }, + { + "label": "Institut des Neurosciences Paris-Saclay", + "type": "child", + "id": "https://ror.org/002v40q27" + }, + { + "label": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "type": "child", + "id": "https://ror.org/01et6g203" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Albert Fert", + "type": "child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Agronomie", + "type": "child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "type": "child", + "id": "https://ror.org/035gq6r08" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03y3e3s17.json b/rc-v1.43-v2/updates/03y3e3s17.json new file mode 100644 index 000000000..4a779b529 --- /dev/null +++ b/rc-v1.43-v2/updates/03y3e3s17.json @@ -0,0 +1,109 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1902, + "external_ids": [ + { + "all": [ + "501100004311" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.163032.5" + ], + "preferred": "grid.163032.5", + "type": "grid" + }, + { + "all": [ + "0000 0004 1760 2008" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7489128" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03y3e3s17", + "links": [ + { + "type": "website", + "value": "http://english.sxu.edu.cn/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Shanxi_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 37.86944, + "lng": 112.56028, + "name": "Taiyuan" + }, + "geonames_id": 1793511 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SXU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Shanxi University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Shānxī Dàxué" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "山西大学" + } + ], + "relationships": [ + { + "label": "State Key Laboratory of Quantum Optics and Quantum Optics Devices", + "type": "child", + "id": "https://ror.org/035z18f46" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03yk4dt83.json b/rc-v1.43-v2/updates/03yk4dt83.json new file mode 100644 index 000000000..8f012904f --- /dev/null +++ b/rc-v1.43-v2/updates/03yk4dt83.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 2516345, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 38.99042, + "lng": -0.51852, + "name": "Xàtiva" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1768 2773" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.414979.6" + ], + "preferred": "grid.414979.6" + } + ], + "id": "https://ror.org/03yk4dt83", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://xativaontinyent.san.gva.es" + } + ], + "names": [ + { + "value": "Hospital Lluis Alcanyis", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Hospital Lluís Alcanyís", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hospital General d'Ontinyent", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hospital General de Ontinyent", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Departament de Salut Xàtiva Ontinyent", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Departamento de Salud Xàtiva Ontinyent", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/03yycdv57.json b/rc-v1.43-v2/updates/03yycdv57.json new file mode 100644 index 000000000..f88202245 --- /dev/null +++ b/rc-v1.43-v2/updates/03yycdv57.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1870, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0639 2930" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3137513" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.425204.5" + ], + "preferred": "grid.425204.5" + } + ], + "id": "https://ror.org/03yycdv57", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ign.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Instituto_Geogr%C3%A1fico_Nacional_(Spain)" + } + ], + "names": [ + { + "value": "Instituto Geográfico Nacional", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Geographic Institute", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "IGN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/041kmwe10.json b/rc-v1.43-v2/updates/041kmwe10.json new file mode 100644 index 000000000..ed6b7aae5 --- /dev/null +++ b/rc-v1.43-v2/updates/041kmwe10.json @@ -0,0 +1,183 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1907, + "external_ids": [ + { + "all": [ + "501100000761", + "501100000850" + ], + "preferred": "501100000761", + "type": "fundref" + }, + { + "all": [ + "grid.7445.2" + ], + "preferred": "grid.7445.2", + "type": "grid" + }, + { + "all": [ + "0000 0001 2113 8111" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q189022" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/041kmwe10", + "links": [ + { + "type": "website", + "value": "https://www.imperial.ac.uk" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Imperial_College_London" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Coleg Imperial Llundain" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Imperial College London" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Imperial College of Science, Technology and Medicine" + } + ], + "relationships": [ + { + "label": "MRC London Institute of Medical Sciences", + "type": "child", + "id": "https://ror.org/05p1n6x86" + }, + { + "label": "Charing Cross Hospital", + "type": "related", + "id": "https://ror.org/02gcp3110" + }, + { + "label": "Ealing Hospital", + "type": "related", + "id": "https://ror.org/05a90fj07" + }, + { + "label": "Hammersmith Hospital", + "type": "related", + "id": "https://ror.org/05jg8yp15" + }, + { + "label": "Harefield Hospital", + "type": "related", + "id": "https://ror.org/04fwa4t58" + }, + { + "label": "Hillingdon Hospital", + "type": "related", + "id": "https://ror.org/00jpae132" + }, + { + "label": "Mount Vernon Hospital", + "type": "related", + "id": "https://ror.org/04am5a125" + }, + { + "label": "NIHR Royal Brompton Cardiovascular Biomedical Research Unit", + "type": "related", + "id": "https://ror.org/01y4kmz24" + }, + { + "label": "NIHR Royal Brompton Respiratory Biomedical Research Unit", + "type": "related", + "id": "https://ror.org/02j3q7j55" + }, + { + "label": "Northwick Park Hospital", + "type": "related", + "id": "https://ror.org/030j6qm79" + }, + { + "label": "Royal Marsden Hospital", + "type": "related", + "id": "https://ror.org/034vb5t35" + }, + { + "label": "St Mark's Hospital", + "type": "related", + "id": "https://ror.org/05am5g719" + }, + { + "label": "St Mary's Hospital", + "type": "related", + "id": "https://ror.org/01aysdw42" + }, + { + "label": "St Peter's Hospital", + "type": "related", + "id": "https://ror.org/0159cmf83" + }, + { + "label": "West Middlesex University Hospital", + "type": "related", + "id": "https://ror.org/05vgg2c14" + }, + { + "label": "The George Institute for Global Health", + "type": "related", + "id": "https://ror.org/023331s46" + }, + { + "label": "MRC Centre for Environment and Health", + "type": "child", + "id": "https://ror.org/01vw4c203" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/041m9xr71.json b/rc-v1.43-v2/updates/041m9xr71.json new file mode 100644 index 000000000..3ce248881 --- /dev/null +++ b/rc-v1.43-v2/updates/041m9xr71.json @@ -0,0 +1,107 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1947, + "external_ids": [ + { + "all": [ + "0000 0001 0690 157X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100011659" + ], + "preferred": "100011659", + "type": "fundref" + }, + { + "all": [ + "Q4745875" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.451319.b" + ], + "preferred": "grid.451319.b", + "type": "grid" + } + ], + "id": "https://ror.org/041m9xr71", + "links": [ + { + "type": "website", + "value": "https://www.ameslab.gov/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ames_Laboratory" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.03471, + "lng": -93.61994, + "name": "Ames" + }, + "geonames_id": 4846834 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Ames National Laboratory" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Ames Laboratory" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Department of Energy Office of Science Ames National Laboratory" + } + ], + "relationships": [ + { + "label": "Iowa State University", + "type": "parent", + "id": "https://ror.org/04rswrd78" + }, + { + "label": "Office of Science", + "type": "parent", + "id": "https://ror.org/00mmn6b08" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/041yk2d64.json b/rc-v1.43-v2/updates/041yk2d64.json new file mode 100644 index 000000000..0d30a43bc --- /dev/null +++ b/rc-v1.43-v2/updates/041yk2d64.json @@ -0,0 +1,113 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1895, + "external_ids": [ + { + "all": [ + "501100004909", + "501100007184" + ], + "preferred": "501100004909", + "type": "fundref" + }, + { + "all": [ + "grid.8532.c" + ], + "preferred": "grid.8532.c", + "type": "grid" + }, + { + "all": [ + "0000 0001 2200 7498" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q766447" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/041yk2d64", + "links": [ + { + "type": "website", + "value": "http://www.ufrgs.br" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Universidade_Federal_do_Rio_Grande_do_Sul" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -30.03283, + "lng": -51.23019, + "name": "Porto Alegre" + }, + "geonames_id": 3452925 + } + ], + "names": [ + { + "lang": "en", + "types": [ + "label" + ], + "value": "Federal University of Rio Grande do Sul" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UFRGS" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Universidade Federal do Rio Grande do Sul" + } + ], + "relationships": [ + { + "label": "Hospital de Clínicas de Porto Alegre", + "type": "related", + "id": "https://ror.org/010we4y38" + }, + { + "label": "MapBiomas", + "type": "related", + "id": "https://ror.org/021203s31" + }, + { + "label": "Instituto Nacional de Ciência e Tecnologia Translacional em Medicina", + "type": "child", + "id": "https://ror.org/01vt9w950" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/042heps41.json b/rc-v1.43-v2/updates/042heps41.json new file mode 100644 index 000000000..442479425 --- /dev/null +++ b/rc-v1.43-v2/updates/042heps41.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 4832458, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.10369, + "lng": -69.10893, + "name": "Rockland" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4686 4007" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q7894639" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.461517.0" + ], + "preferred": "grid.461517.0" + } + ], + "id": "https://ror.org/042heps41", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://learn.maine.edu/rockland/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_College_at_Rockland" + } + ], + "names": [ + { + "value": "University College at Rockland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "URock", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Maine System", + "type": "parent", + "id": "https://ror.org/050qj5m48" + } + ], + "status": "withdrawn", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/042jh8155.json b/rc-v1.43-v2/updates/042jh8155.json new file mode 100644 index 000000000..d2717130a --- /dev/null +++ b/rc-v1.43-v2/updates/042jh8155.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2019-11-07", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1991, + "external_ids": [ + { + "all": [ + "grid.506565.5" + ], + "preferred": "grid.506565.5", + "type": "grid" + } + ], + "id": "https://ror.org/042jh8155", + "links": [ + { + "type": "website", + "value": "http://www.iple.de" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + }, + "geonames_id": 2950159 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute for Productive Learning in Europe" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Institut für Produktives Lernen in Europa" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IPLE" + } + ], + "relationships": [ + { + "label": "Alice-Salomon-Hochschule Berlin", + "type": "parent", + "id": "https://ror.org/04b404920" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04387x656.json b/rc-v1.43-v2/updates/04387x656.json new file mode 100644 index 000000000..a37415bb8 --- /dev/null +++ b/rc-v1.43-v2/updates/04387x656.json @@ -0,0 +1,119 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-08-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1998, + "external_ids": [ + { + "all": [ + "501100005699" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.16563.37" + ], + "preferred": "grid.16563.37", + "type": "grid" + }, + { + "all": [ + "0000 0001 2166 3741" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1235561" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/04387x656", + "links": [ + { + "type": "website", + "value": "http://www.unipmn.it/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Eastern_Piedmont" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.32163, + "lng": 8.41989, + "name": "Vercelli" + }, + "geonames_id": 3164565 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNIPMN" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Eastern Piedmont" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Eastern Piedmont Amadeo Avogadro" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Università degli Studi del Piemonte Orientale “Amedeo Avogadro”" + } + ], + "relationships": [ + { + "label": "INFN Sezione di Torino", + "type": "child", + "id": "https://ror.org/01vj6ck58" + }, + { + "label": "Azienda Ospedaliero Universitaria Maggiore della Carita", + "type": "related", + "id": "https://ror.org/02gp92p70" + }, + { + "label": "NODES S.c.a.r.l", + "type": "related", + "id": "https://ror.org/04hp1ky92" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/043htjv09.json b/rc-v1.43-v2/updates/043htjv09.json new file mode 100644 index 000000000..6e7c08816 --- /dev/null +++ b/rc-v1.43-v2/updates/043htjv09.json @@ -0,0 +1,131 @@ +{ + "admin": { + "created": { + "date": "2020-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2020, + "external_ids": [ + { + "all": [ + "Q74452784" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.507676.5" + ], + "preferred": "grid.507676.5", + "type": "grid" + } + ], + "id": "https://ror.org/043htjv09", + "links": [ + { + "type": "website", + "value": "https://www.u-cergy.fr/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/CY_Cergy_Paris_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.03894, + "lng": 2.07805, + "name": "Cergy-Pontoise" + }, + "geonames_id": 8555643 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "CY Cergy Paris University" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "CY Cergy Paris Université" + } + ], + "relationships": [ + { + "label": "Analyse, Géométrie et Modélisation", + "type": "child", + "id": "https://ror.org/03qgt2624" + }, + { + "label": "André Revuz Didactics Laboratory", + "type": "child", + "id": "https://ror.org/053p8kg34" + }, + { + "label": "Centre de Recherches Sociologiques sur le Droit et les Institutions Pénales", + "type": "child", + "id": "https://ror.org/01qm1tk92" + }, + { + "label": "Information Processing and System Research Lab", + "type": "child", + "id": "https://ror.org/0592ata02" + }, + { + "label": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "type": "child", + "id": "https://ror.org/00wwxk695" + }, + { + "label": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Théorie Économique, Modélisation et Applications", + "type": "child", + "id": "https://ror.org/00vctdx48" + }, + { + "label": "Laboratoire Paragraphe", + "type": "child", + "id": "https://ror.org/00mgd1d10" + }, + { + "label": "Laboratoire de Physique Théorique et Modélisation", + "type": "child", + "id": "https://ror.org/05nhcdk38" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0447fe631.json b/rc-v1.43-v2/updates/0447fe631.json new file mode 100644 index 000000000..e2349d259 --- /dev/null +++ b/rc-v1.43-v2/updates/0447fe631.json @@ -0,0 +1,233 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1947, + "external_ids": [ + { + "all": [ + "100000005", + "100006502", + "100006127", + "100007485", + "100014037", + "100014032" + ], + "preferred": "100000005", + "type": "fundref" + }, + { + "all": [ + "grid.420391.d" + ], + "preferred": "grid.420391.d", + "type": "grid" + }, + { + "all": [ + "0000 0004 0478 6223", + "0000 0001 2163 2208" + ], + "preferred": "0000 0004 0478 6223", + "type": "isni" + }, + { + "all": [ + "Q11209", + "Q1591470" + ], + "preferred": "Q11209", + "type": "wikidata" + } + ], + "id": "https://ror.org/0447fe631", + "links": [ + { + "type": "website", + "value": "http://www.defense.gov/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/United_States_Department_of_Defense" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + }, + "geonames_id": 4140963 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DOD" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Departamento de Defensa de los Estados Unidos" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Département de la Défense des États-Unis" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "US DOD" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "United States Department of Defense" + } + ], + "relationships": [ + { + "label": "Defense & Veterans Center for Integrative Pain Management", + "type": "child", + "id": "https://ror.org/03ytzg339" + }, + { + "label": "Defense Human Resources Activity", + "type": "child", + "id": "https://ror.org/009heah97" + }, + { + "label": "Defense Information School", + "type": "child", + "id": "https://ror.org/04t5yz624" + }, + { + "label": "Defense Information Systems Agency", + "type": "child", + "id": "https://ror.org/01xyx5098" + }, + { + "label": "Defense Intelligence Agency", + "type": "child", + "id": "https://ror.org/025nqct78" + }, + { + "label": "Defense Logistics Agency", + "type": "child", + "id": "https://ror.org/001yrmh12" + }, + { + "label": "Defense Security Cooperation Agency", + "type": "child", + "id": "https://ror.org/049zppa02" + }, + { + "label": "Defense Technical Information Center", + "type": "child", + "id": "https://ror.org/01zqyhk59" + }, + { + "label": "Defense Threat Reduction Agency", + "type": "child", + "id": "https://ror.org/04tz64554" + }, + { + "label": "Joint Interoperability Test Command", + "type": "child", + "id": "https://ror.org/05jr0p734" + }, + { + "label": "Military Health System", + "type": "child", + "id": "https://ror.org/03b7pda13" + }, + { + "label": "Missile Defense Agency", + "type": "child", + "id": "https://ror.org/024z17f57" + }, + { + "label": "National Geospatial-Intelligence Agency", + "type": "child", + "id": "https://ror.org/02k4pxv54" + }, + { + "label": "National Security Agency", + "type": "child", + "id": "https://ror.org/0047bvr32" + }, + { + "label": "Office of the Secretary of Defense", + "type": "child", + "id": "https://ror.org/00q4sx826" + }, + { + "label": "United States Department of the Air Force", + "type": "child", + "id": "https://ror.org/01973x930" + }, + { + "label": "United States Department of the Army", + "type": "child", + "id": "https://ror.org/035w1gb98" + }, + { + "label": "United States Department of the Navy", + "type": "child", + "id": "https://ror.org/03ar0mv07" + }, + { + "label": "United States Military Entrance Processing Command", + "type": "child", + "id": "https://ror.org/05c5e7249" + }, + { + "label": "Walter Reed National Military Medical Center", + "type": "child", + "id": "https://ror.org/025cem651" + }, + { + "label": "Government of the United States of America", + "type": "parent", + "id": "https://ror.org/02rcrvv70" + }, + { + "label": "Defense Equal Opportunity Management Institute", + "type": "related", + "id": "https://ror.org/03fpx5n61" + }, + { + "label": "Strategic Environmental Research and Development Program", + "type": "child", + "id": "https://ror.org/00ew61678" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0453rg493.json b/rc-v1.43-v2/updates/0453rg493.json new file mode 100644 index 000000000..0f517301b --- /dev/null +++ b/rc-v1.43-v2/updates/0453rg493.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1885, + "external_ids": [ + { + "all": [ + "grid.431190.e" + ], + "preferred": "grid.431190.e", + "type": "grid" + }, + { + "all": [ + "0000 0004 0446 4566" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7073984" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/0453rg493", + "links": [ + { + "type": "website", + "value": "http://www.oak.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Oakland_City_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.33866, + "lng": -87.34501, + "name": "Oakland City" + }, + "geonames_id": 4262425 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "OCU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Oakland City University" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/045jby416.json b/rc-v1.43-v2/updates/045jby416.json new file mode 100644 index 000000000..b8deb5068 --- /dev/null +++ b/rc-v1.43-v2/updates/045jby416.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1840, + "external_ids": [ + { + "all": [ + "grid.431499.2" + ], + "preferred": "grid.431499.2", + "type": "grid" + }, + { + "all": [ + "0000 0000 8597 0516" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7401849" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/045jby416", + "links": [ + { + "type": "website", + "value": "http://www.smwc.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Saint_Mary-of-the-Woods_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.4667, + "lng": -87.41391, + "name": "Terre Haute" + }, + "geonames_id": 4265737 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SMWC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Saint Mary-of-the-Woods College" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/047448m94.json b/rc-v1.43-v2/updates/047448m94.json new file mode 100644 index 000000000..ada9946ae --- /dev/null +++ b/rc-v1.43-v2/updates/047448m94.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2220957, + "geonames_details": { + "country_code": "CM", + "country_name": "Cameroon", + "lat": 3.86667, + "lng": 11.51667, + "name": "Yaoundé" + } + } + ], + "established": 1965, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9212 1336" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463347.1" + ], + "preferred": "grid.463347.1" + }, + { + "type": "wikidata", + "all": [ + "Q30261846" + ], + "preferred": "Q30261846" + } + ], + "id": "https://ror.org/047448m94", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://impm-cm.org" + } + ], + "names": [ + { + "value": "Institut de Recherches Médicales et d’Etudes des Plantes Médicinales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Research Medical and Medicinal Plants Studies", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "IMPM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/047xxvg44.json b/rc-v1.43-v2/updates/047xxvg44.json new file mode 100644 index 000000000..3a3e5b40e --- /dev/null +++ b/rc-v1.43-v2/updates/047xxvg44.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2740637, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 40.20564, + "lng": -8.41955, + "name": "Coimbra" + } + } + ], + "established": 1927, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0631 0608" + ], + "preferred": "0000 0004 0631 0608" + }, + { + "type": "grid", + "all": [ + "grid.435541.2" + ], + "preferred": "grid.435541.2" + }, + { + "type": "wikidata", + "all": [ + "Q107279716" + ], + "preferred": "Q107279716" + } + ], + "id": "https://ror.org/047xxvg44", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ipocoimbra.min-saude.pt" + } + ], + "names": [ + { + "value": "Instituto Português de Oncologia de Coimbra Francisco Gentil", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Francisco Gentil Portuguese Institute for Oncology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IPOCFG", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/047yj9455.json b/rc-v1.43-v2/updates/047yj9455.json new file mode 100644 index 000000000..3ca25b235 --- /dev/null +++ b/rc-v1.43-v2/updates/047yj9455.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1783 3287" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q8242526" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.16388.34" + ], + "preferred": "grid.16388.34" + } + ], + "id": "https://ror.org/047yj9455", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.barcelonamedia.org/" + } + ], + "names": [ + { + "value": "Barcelona Media", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0483fn738.json b/rc-v1.43-v2/updates/0483fn738.json new file mode 100644 index 000000000..b4b1dcf37 --- /dev/null +++ b/rc-v1.43-v2/updates/0483fn738.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 8358544, + "geonames_details": { + "country_code": "GR", + "country_name": "Greece", + "lat": 37.97574, + "lng": 23.76911, + "name": "Zografos" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.435146.1" + ], + "preferred": "grid.435146.1" + }, + { + "type": "wikidata", + "all": [ + "Q30289833" + ], + "preferred": "Q30289833" + } + ], + "id": "https://ror.org/0483fn738", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iccs.gr" + } + ], + "names": [ + { + "value": "Institute of Communication and Computer Systems", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Communication & Computer Systems “ICCS”", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Erevnitiko Panepistimiako Institouto Systimaton Epikoinonion Kai Ypologiston", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ICCS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Technical University of Athens", + "type": "related", + "id": "https://ror.org/03cx6bg69" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/048tbm396.json b/rc-v1.43-v2/updates/048tbm396.json new file mode 100644 index 000000000..07a08b64b --- /dev/null +++ b/rc-v1.43-v2/updates/048tbm396.json @@ -0,0 +1,143 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-08-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1404, + "external_ids": [ + { + "all": [ + "501100006692" + ], + "preferred": "501100006692", + "type": "fundref" + }, + { + "all": [ + "grid.7605.4" + ], + "preferred": "grid.7605.4", + "type": "grid" + }, + { + "all": [ + "0000 0001 2336 6580" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q499911" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/048tbm396", + "links": [ + { + "type": "website", + "value": "http://en.unito.it/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Turin" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.07049, + "lng": 7.68682, + "name": "Turin" + }, + "geonames_id": 3165524 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNITO" + }, + { + "lang": "ca", + "types": [ + "label" + ], + "value": "Universitat de Torí" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Turin" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Università degli Studi di Torino" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Universität Turin" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Turin" + } + ], + "relationships": [ + { + "label": "Multi-Modal Molecular Imaging Italian Node", + "type": "child", + "id": "https://ror.org/0573ty638" + }, + { + "label": "Azienda Ospedaliera Citta' della Salute e della Scienza di Torino", + "type": "related", + "id": "https://ror.org/001f7a930" + }, + { + "label": "Azienda Ospedaliero Universitaria San Giovanni Battista", + "type": "related", + "id": "https://ror.org/00nrtez23" + }, + { + "label": "CTO Hospital", + "type": "related", + "id": "https://ror.org/05ph11m41" + }, + { + "label": "NODES S.c.a.r.l", + "type": "related", + "id": "https://ror.org/04hp1ky92" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04988re48.json b/rc-v1.43-v2/updates/04988re48.json new file mode 100644 index 000000000..f6ae4d292 --- /dev/null +++ b/rc-v1.43-v2/updates/04988re48.json @@ -0,0 +1,103 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1985, + "external_ids": [ + { + "all": [ + "501100007157" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.410926.8" + ], + "preferred": "grid.410926.8", + "type": "grid" + }, + { + "all": [ + "0000 0001 2191 8636" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4348556", + "Q3152860" + ], + "preferred": "Q4348556", + "type": "wikidata" + } + ], + "id": "https://ror.org/04988re48", + "links": [ + { + "type": "website", + "value": "https://www.ipp.pt/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Polytechnic_Institute_of_Porto" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 41.14961, + "lng": -8.61099, + "name": "Porto" + }, + "geonames_id": 2735943 + } + ], + "names": [ + { + "lang": "pt", + "types": [ + "label" + ], + "value": "Instituto Politécnico do Porto" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Polytechnic Institute of Porto" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Porto Polytechnic" + } + ], + "relationships": [ + { + "label": "Instituto Superior de Engenharia do Porto", + "type": "child", + "id": "https://ror.org/04h7zpy51" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/049s0rh22.json b/rc-v1.43-v2/updates/049s0rh22.json new file mode 100644 index 000000000..ca9d5f608 --- /dev/null +++ b/rc-v1.43-v2/updates/049s0rh22.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1769, + "external_ids": [ + { + "all": [ + "100008299", + "100009231", + "100008300" + ], + "preferred": "100008299", + "type": "fundref" + }, + { + "all": [ + "grid.254880.3" + ], + "preferred": "grid.254880.3", + "type": "grid" + }, + { + "all": [ + "0000 0001 2179 2404" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q49116" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/049s0rh22", + "links": [ + { + "type": "website", + "value": "https://dartmouth.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Dartmouth_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.70229, + "lng": -72.28954, + "name": "Hanover" + }, + "geonames_id": 5087168 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Dartmouth College" + } + ], + "relationships": [ + { + "label": "Dartmouth Health", + "type": "child", + "id": "https://ror.org/01pa9ed26" + }, + { + "label": "Hubbard Brook Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/00mkh7345" + }, + { + "label": "Center for Open Neuroscience", + "type": "related", + "id": "https://ror.org/04tfhh831" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04b404920.json b/rc-v1.43-v2/updates/04b404920.json new file mode 100644 index 000000000..c0b7af64b --- /dev/null +++ b/rc-v1.43-v2/updates/04b404920.json @@ -0,0 +1,123 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": 1899, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0144 8833" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2646956" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.448744.f" + ], + "preferred": "grid.448744.f" + } + ], + "id": "https://ror.org/04b404920", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ash-berlin.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Alice_Salomon_University_of_Applied_Sciences_Berlin" + } + ], + "names": [ + { + "value": "Alice-Salomon-Hochschule Berlin", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Alice Salomon University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Alice Salomon Hochschule Berlin University of Applied Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ASH Berlin", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Alice Salomon University of Applied Sciences Berlin", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Alice Salomon Hochschule Berlin", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "ASH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institute for Productive Learning in Europe", + "type": "child", + "id": "https://ror.org/042jh8155" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04b6nzv94.json b/rc-v1.43-v2/updates/04b6nzv94.json new file mode 100644 index 000000000..bcd7e2b12 --- /dev/null +++ b/rc-v1.43-v2/updates/04b6nzv94.json @@ -0,0 +1,148 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-06-22", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1980, + "external_ids": [ + { + "all": [ + "100005292", + "100008552" + ], + "preferred": "100005292", + "type": "fundref" + }, + { + "all": [ + "grid.62560.37" + ], + "preferred": "grid.62560.37", + "type": "grid" + }, + { + "all": [ + "0000 0004 0378 8294" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2900977" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/04b6nzv94", + "links": [ + { + "type": "website", + "value": "http://www.brighamandwomens.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Brigham_and_Women%27s_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.35843, + "lng": -71.05977, + "name": "Boston" + }, + "geonames_id": 4930956 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BWH" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Brigham and Women's Hospital" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "The Brigham" + } + ], + "relationships": [ + { + "label": "Center for Neuro-Oncology", + "type": "child", + "id": "https://ror.org/00z2tp793" + }, + { + "label": "Dana-Farber Brigham Cancer Center", + "type": "child", + "id": "https://ror.org/05rgrbr06" + }, + { + "label": "Harvard Affiliated Emergency Medicine Residency", + "type": "child", + "id": "https://ror.org/005m2at17" + }, + { + "label": "Mass General Brigham", + "type": "parent", + "id": "https://ror.org/04py2rh25" + }, + { + "label": "Broad Institute", + "type": "related", + "id": "https://ror.org/05a0ya142" + }, + { + "label": "Cape Cod Hospital", + "type": "related", + "id": "https://ror.org/04yd6pw26" + }, + { + "label": "Harvard University", + "type": "related", + "id": "https://ror.org/03vek6s52" + }, + { + "label": "VA Boston Healthcare System", + "type": "related", + "id": "https://ror.org/04v00sg98" + }, + { + "label": "Wyss Institute for Biologically Inspired Engineering", + "type": "related", + "id": "https://ror.org/008cfmj78" + }, + { + "label": "Osher Center for Integrative Medicine", + "type": "child", + "id": "https://ror.org/00wtrxf04" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04b8d7j46.json b/rc-v1.43-v2/updates/04b8d7j46.json new file mode 100644 index 000000000..a2731e435 --- /dev/null +++ b/rc-v1.43-v2/updates/04b8d7j46.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1958, + "external_ids": [ + { + "all": [ + "grid.431274.7" + ], + "preferred": "grid.431274.7", + "type": "grid" + }, + { + "all": [ + "0000 0001 0719 9428" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4750556" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/04b8d7j46", + "links": [ + { + "type": "website", + "value": "http://www.ambs.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Anabaptist_Mennonite_Biblical_Seminary" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.68199, + "lng": -85.97667, + "name": "Elkhart" + }, + "geonames_id": 4919987 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "AMBS" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Anabaptist Mennonite Biblical Seminary" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Associated Mennonite Biblical Seminary" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04bdqq221.json b/rc-v1.43-v2/updates/04bdqq221.json new file mode 100644 index 000000000..dcbc328e3 --- /dev/null +++ b/rc-v1.43-v2/updates/04bdqq221.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 3125287, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.67019, + "lng": -7.41013, + "name": "Cervo" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.466596.e" + ], + "preferred": "grid.466596.e" + } + ], + "id": "https://ror.org/04bdqq221", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.concellodecervo.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Cervo,_Lugo" + } + ], + "names": [ + { + "value": "Concello de Cervo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ayuntamiento de Cervo", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04bgjpg77.json b/rc-v1.43-v2/updates/04bgjpg77.json new file mode 100644 index 000000000..eee309a99 --- /dev/null +++ b/rc-v1.43-v2/updates/04bgjpg77.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9792 877X" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30261542" + ], + "preferred": "Q30261542" + }, + { + "type": "grid", + "all": [ + "grid.462744.7" + ], + "preferred": "grid.462744.7" + } + ], + "id": "https://ror.org/04bgjpg77", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lpgp.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratoire de Physique des Gaz et des Plasmas", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory of Gas and Plasma Physics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LPGP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04bkzce69.json b/rc-v1.43-v2/updates/04bkzce69.json new file mode 100644 index 000000000..2c9d4e018 --- /dev/null +++ b/rc-v1.43-v2/updates/04bkzce69.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.464070.1" + ], + "preferred": "grid.464070.1", + "type": "grid" + } + ], + "id": "https://ror.org/04bkzce69", + "links": [ + { + "type": "website", + "value": "http://inserm-u769.cep.u-psud.fr/index.php?lang=en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.76507, + "lng": 2.26655, + "name": "Châtenay-Malabry" + }, + "geonames_id": 3026108 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Laboratory Signaling and Cardiovascular Pathophysiology" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Singnalisation et physiopathologie cardiaque" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SCP" + } + ], + "relationships": [ + { + "label": "Délégation Paris 11", + "type": "parent", + "id": "https://ror.org/0589k3111" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04cwfse38.json b/rc-v1.43-v2/updates/04cwfse38.json new file mode 100644 index 000000000..707a494e2 --- /dev/null +++ b/rc-v1.43-v2/updates/04cwfse38.json @@ -0,0 +1,127 @@ +{ + "locations": [ + { + "geonames_id": 2110683, + "geonames_details": { + "country_code": "JP", + "country_name": "Japan", + "lat": 36.2, + "lng": 140.1, + "name": "Tsukuba" + } + } + ], + "established": 1963, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2151 1625" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006328" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.450301.3" + ], + "preferred": "grid.450301.3" + }, + { + "type": "wikidata", + "all": [ + "Q11657051" + ], + "preferred": "Q11657051" + } + ], + "id": "https://ror.org/04cwfse38", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bosai.go.jp" + } + ], + "names": [ + { + "value": "National Research Institute for Earth Science and Disaster Resilience", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Research Institute for Earth Science and Disaster Prevention", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ぼうさいかがくぎじゅつけんきゅうしょ", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ボウサイカガクギジュツケンキュウショ", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Bōsai Kagaku Gijutsu Kenkyūsho", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Bousai Kagaku Gijutsu Kenkyuusho", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "国立研究開発法人防災科学技術研究所", + "types": [ + "label" + ], + "lang": "ja" + }, + { + "value": "NIED", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04e582786.json b/rc-v1.43-v2/updates/04e582786.json new file mode 100644 index 000000000..a987865fd --- /dev/null +++ b/rc-v1.43-v2/updates/04e582786.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30279561" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.34966.3e" + ], + "preferred": "grid.34966.3e" + } + ], + "id": "https://ror.org/04e582786", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iuee.eu/" + } + ], + "names": [ + { + "value": "Institut Universitari D'Estudis Europeus", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04e874t64.json b/rc-v1.43-v2/updates/04e874t64.json new file mode 100644 index 000000000..02e03efc0 --- /dev/null +++ b/rc-v1.43-v2/updates/04e874t64.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 3169070, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 41.89193, + "lng": 12.51133, + "name": "Rome" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1758 1809" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100004808" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q16249630" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.467365.5" + ], + "preferred": "grid.467365.5" + } + ], + "id": "https://ror.org/04e874t64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.eief.it/eief/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Einaudi_Institute_for_Economics_and_Finance" + } + ], + "names": [ + { + "value": "Einaudi Institute for Economics and Finance", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Istituto Einaudi per l'Economia e la Finanza", + "types": [ + "label" + ], + "lang": "it" + }, + { + "value": "EIEF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Bank of Italy", + "type": "related", + "id": "https://ror.org/03v2nbx43" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04ebbpp93.json b/rc-v1.43-v2/updates/04ebbpp93.json new file mode 100644 index 000000000..5218f850b --- /dev/null +++ b/rc-v1.43-v2/updates/04ebbpp93.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3173435, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + } + } + ], + "established": 1941, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8865 1297" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.433325.0" + ], + "preferred": "grid.433325.0" + }, + { + "type": "wikidata", + "all": [ + "Q30255830" + ], + "preferred": "Q30255830" + } + ], + "id": "https://ror.org/04ebbpp93", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.istitutospallanzani.it" + } + ], + "names": [ + { + "value": "Istituto Sperimentale Italiano Lazzaro Spallanzani", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Italian Experimental Institute Lazzaro Spallanzani", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04emwm605.json b/rc-v1.43-v2/updates/04emwm605.json new file mode 100644 index 000000000..b33eee8d5 --- /dev/null +++ b/rc-v1.43-v2/updates/04emwm605.json @@ -0,0 +1,163 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2000, + "external_ids": [ + { + "all": [ + "0000 0004 1754 8494" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100007034" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q1161666" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.410363.3" + ], + "preferred": "grid.410363.3", + "type": "grid" + } + ], + "id": "https://ror.org/04emwm605", + "links": [ + { + "type": "website", + "value": "https://www.thalesgroup.com/en" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Thales_Group" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Thales (France)" + } + ], + "relationships": [ + { + "label": "Gemalto (Netherlands)", + "type": "child", + "id": "https://ror.org/006sbr164" + }, + { + "label": "Thales (Australia)", + "type": "child", + "id": "https://ror.org/00f7vya03" + }, + { + "label": "Thales (Austria)", + "type": "child", + "id": "https://ror.org/02cs9t297" + }, + { + "label": "Thales (Belgium)", + "type": "child", + "id": "https://ror.org/017056r72" + }, + { + "label": "Thales (Brazil)", + "type": "child", + "id": "https://ror.org/03sss6f31" + }, + { + "label": "Thales (Canada)", + "type": "child", + "id": "https://ror.org/00nnd3206" + }, + { + "label": "Thales (Germany)", + "type": "child", + "id": "https://ror.org/031xjr712" + }, + { + "label": "Thales (Italy)", + "type": "child", + "id": "https://ror.org/00rwwx648" + }, + { + "label": "Thales (Netherlands)", + "type": "child", + "id": "https://ror.org/032tp7158" + }, + { + "label": "Thales (Norway)", + "type": "child", + "id": "https://ror.org/05gey1s27" + }, + { + "label": "Thales (Portugal)", + "type": "child", + "id": "https://ror.org/051w1mx35" + }, + { + "label": "Thales (Spain)", + "type": "child", + "id": "https://ror.org/03340ra78" + }, + { + "label": "Thales (United Kingdom)", + "type": "child", + "id": "https://ror.org/00r8j9489" + }, + { + "label": "Thales (United States)", + "type": "child", + "id": "https://ror.org/00ysvtr77" + }, + { + "label": "Laboratoire Albert Fert", + "type": "child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04eq6rh16.json b/rc-v1.43-v2/updates/04eq6rh16.json new file mode 100644 index 000000000..c16e8efac --- /dev/null +++ b/rc-v1.43-v2/updates/04eq6rh16.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1963, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q67201734" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.510867.d" + ], + "preferred": "grid.510867.d" + } + ], + "id": "https://ror.org/04eq6rh16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://sebbm.es" + } + ], + "names": [ + { + "value": "Spanish Society of Biochemistry and Molecular Biology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Sociedad Española de Bioquímica y Biología Molecular", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "SEBBM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04ews3245.json b/rc-v1.43-v2/updates/04ews3245.json new file mode 100644 index 000000000..0f5d9757f --- /dev/null +++ b/rc-v1.43-v2/updates/04ews3245.json @@ -0,0 +1,131 @@ +{ + "locations": [ + { + "geonames_id": 2934246, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.22172, + "lng": 6.77616, + "name": "Düsseldorf" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0492 602X" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.429051.b" + ], + "preferred": "grid.429051.b" + }, + { + "type": "wikidata", + "all": [ + "Q1205596" + ], + "preferred": "Q1205596" + } + ], + "id": "https://ror.org/04ews3245", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ddz.de" + } + ], + "names": [ + { + "value": "Deutsches Diabetes-Zentrum e.V.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Leibniz-Zentrum für Diabetes-Forschung an der Heinrich-Heine-Universität Düsseldorf", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Leibniz Center for Diabetes Research at the Heinrich Heine University Düsseldorf", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "German Diabetes Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DDFG e.V.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DDZ German Diabetes Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Deutsches Diabetes-Zentrum", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "DDZ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Heinrich Heine University Düsseldorf", + "type": "parent", + "id": "https://ror.org/024z2rq82" + }, + { + "label": "Leibniz Association", + "type": "parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04f6hmf16.json b/rc-v1.43-v2/updates/04f6hmf16.json new file mode 100644 index 000000000..b5bf7dea2 --- /dev/null +++ b/rc-v1.43-v2/updates/04f6hmf16.json @@ -0,0 +1,121 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2013, + "external_ids": [ + { + "all": [ + "Q2476558" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.468967.2" + ], + "preferred": "grid.468967.2", + "type": "grid" + } + ], + "id": "https://ror.org/04f6hmf16", + "links": [ + { + "type": "website", + "value": "http://www.languedoc-roussillon-universites.fr/index.php" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Languedoc-Roussillon_Universities" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Languedoc-Roussillon Universities" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "COMUE Languedoc-Roussillon Universités" + } + ], + "relationships": [ + { + "label": "National School of Architecture of Montpellier", + "type": "related", + "id": "https://ror.org/008axfh28" + }, + { + "label": "IMT Mines Alès", + "type": "related", + "id": "https://ror.org/03e8rf594" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "child", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Agro Montpellier", + "type": "child", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "University of Montpellier", + "type": "child", + "id": "https://ror.org/051escj72" + }, + { + "label": "University of Nîmes", + "type": "child", + "id": "https://ror.org/044t4x544" + }, + { + "label": "University of Perpignan", + "type": "child", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Université Paul-Valéry Montpellier", + "type": "child", + "id": "https://ror.org/00qhdy563" + }, + { + "label": "École Nationale Supérieure de Chimie de Montpellier", + "type": "child", + "id": "https://ror.org/03sgyqj04" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04f7h3b65.json b/rc-v1.43-v2/updates/04f7h3b65.json new file mode 100644 index 000000000..106137886 --- /dev/null +++ b/rc-v1.43-v2/updates/04f7h3b65.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 3427500, + "geonames_details": { + "country_code": "AR", + "country_name": "Argentina", + "lat": -34.45505, + "lng": -58.54614, + "name": "Victoria" + } + } + ], + "established": 1988, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2325 2241" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5242548" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.441741.3" + ], + "preferred": "grid.441741.3" + } + ], + "id": "https://ror.org/04f7h3b65", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.udesa.edu.ar/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_San_Andr%C3%A9s" + } + ], + "names": [ + { + "value": "University of San Andrés", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidad de San Andrés", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Université de san andrés", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "UDESA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04feqxb79.json b/rc-v1.43-v2/updates/04feqxb79.json new file mode 100644 index 000000000..e29bf52c0 --- /dev/null +++ b/rc-v1.43-v2/updates/04feqxb79.json @@ -0,0 +1,102 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1974, + "external_ids": [ + { + "all": [ + "501100010604" + ], + "preferred": "501100010604", + "type": "fundref" + }, + { + "all": [ + "grid.459846.2" + ], + "preferred": "grid.459846.2", + "type": "grid" + }, + { + "all": [ + "0000 0004 0611 7306" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1672389" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/04feqxb79", + "links": [ + { + "type": "website", + "value": "http://www.aeoi.org.ir/Portal/Home/Default.aspx?CategoryID=3fe2bc57-c1a6-47dc-9d1d-e1290fe3ad77" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Atomic_Energy_Organization_of_Iran" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IR", + "country_name": "Iran", + "lat": 35.69439, + "lng": 51.42151, + "name": "Tehran" + }, + "geonames_id": 112931 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "AEOI" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Atomic Energy Organization of Iran" + }, + { + "lang": "fa", + "types": [ + "label" + ], + "value": "سازمان انرژی اتمی ایران" + } + ], + "relationships": [ + { + "label": "Nuclear Science and Technology Research Institute", + "type": "child", + "id": "https://ror.org/05cebxq10" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04fpz9t23.json b/rc-v1.43-v2/updates/04fpz9t23.json new file mode 100644 index 000000000..f67e12721 --- /dev/null +++ b/rc-v1.43-v2/updates/04fpz9t23.json @@ -0,0 +1,66 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5901 7034" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100005141" + ], + "preferred": "501100005141" + }, + { + "type": "grid", + "all": [ + "grid.469326.c" + ], + "preferred": "grid.469326.c" + } + ], + "id": "https://ror.org/04fpz9t23", + "domains": [], + "links": [], + "names": [ + { + "value": "BabelFamily", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04frf8n21.json b/rc-v1.43-v2/updates/04frf8n21.json new file mode 100644 index 000000000..19a88690a --- /dev/null +++ b/rc-v1.43-v2/updates/04frf8n21.json @@ -0,0 +1,117 @@ +{ + "locations": [ + { + "geonames_id": 1528675, + "geonames_details": { + "country_code": "KG", + "country_name": "Kyrgyzstan", + "lat": 42.87, + "lng": 74.59, + "name": "Bishkek" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 4627" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q52669993" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.444269.9" + ], + "preferred": "grid.444269.9" + } + ], + "id": "https://ror.org/04frf8n21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://manas.edu.kg" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Manas_University" + } + ], + "names": [ + { + "value": "Kyrgyz-Türkish Manas Üniversity", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Manas University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Kyrgyz-Turkish Manas University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Kırgızistan-Türkiye Manas Üniversitesi", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Кыргыз-Түрк «Манас» университети", + "types": [ + "label" + ], + "lang": "ky" + }, + { + "value": "Кыргызско-Турецкий университет «Манас»", + "types": [ + "label" + ], + "lang": "ru" + }, + { + "value": "KTMU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04frvgs13.json b/rc-v1.43-v2/updates/04frvgs13.json new file mode 100644 index 000000000..93030f781 --- /dev/null +++ b/rc-v1.43-v2/updates/04frvgs13.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2024-02-13", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1862, + "external_ids": [ + { + "all": [ + "100014116" + ], + "preferred": "100014116", + "type": "fundref" + }, + { + "all": [ + "0000 0001 2167 9954" + ], + "preferred": "0000 0001 2167 9954", + "type": "isni" + }, + { + "all": [ + "Q7094936" + ], + "preferred": "Q7094936", + "type": "wikidata" + } + ], + "id": "https://ror.org/04frvgs13", + "links": [ + { + "type": "website", + "value": "https://ovc.uoguelph.ca" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ontario_Veterinary_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.54594, + "lng": -80.25599, + "name": "Guelph" + }, + "geonames_id": 5967629 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "OVC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Ontario Veterinary College" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Guelph Ontario Veterinary College" + } + ], + "relationships": [ + { + "label": "University of Guelph", + "type": "parent", + "id": "https://ror.org/01r7awg59" + }, + { + "label": "OVC Pet Trust", + "type": "child", + "id": "https://ror.org/02stdqb15" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04fzwnh64.json b/rc-v1.43-v2/updates/04fzwnh64.json new file mode 100644 index 000000000..16edf2acf --- /dev/null +++ b/rc-v1.43-v2/updates/04fzwnh64.json @@ -0,0 +1,114 @@ +{ + "locations": [ + { + "geonames_id": 4887398, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.85003, + "lng": -87.65005, + "name": "Chicago" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4683 9645" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.490348.2" + ], + "preferred": "grid.490348.2" + }, + { + "type": "wikidata", + "all": [ + "Q50036890" + ], + "preferred": "Q50036890" + } + ], + "id": "https://ror.org/04fzwnh64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nm.org/" + } + ], + "names": [ + { + "value": "Northwestern Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Northwestern Memorial HealthCare", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Central DuPage Hospital", + "type": "child", + "id": "https://ror.org/00g1rc256" + }, + { + "label": "LivingWell Cancer Resource Center", + "type": "child", + "id": "https://ror.org/007nfvg13" + }, + { + "label": "Marianjoy Rehabilitation Hospital", + "type": "child", + "id": "https://ror.org/03m5bv793" + }, + { + "label": "Northwestern Medicine Lake Forest Hospital", + "type": "child", + "id": "https://ror.org/03fhrtz10" + }, + { + "label": "Northwestern Memorial Hospital", + "type": "child", + "id": "https://ror.org/009543z50" + }, + { + "label": "Robert H. Lurie Comprehensive Cancer Center of Northwestern University", + "type": "child", + "id": "https://ror.org/02p4far57" + }, + { + "label": "Northwestern University", + "type": "related", + "id": "https://ror.org/000e0be47" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04jhswv08.json b/rc-v1.43-v2/updates/04jhswv08.json new file mode 100644 index 000000000..f56776563 --- /dev/null +++ b/rc-v1.43-v2/updates/04jhswv08.json @@ -0,0 +1,108 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1900, + "external_ids": [ + { + "all": [ + "0000 0001 0723 0931" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100006507", + "501100006508" + ], + "preferred": "501100006507", + "type": "fundref" + }, + { + "all": [ + "Q2474815" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.418068.3" + ], + "preferred": "grid.418068.3", + "type": "grid" + } + ], + "id": "https://ror.org/04jhswv08", + "links": [ + { + "type": "website", + "value": "https://portal.fiocruz.br" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Oswaldo_Cruz_Foundation" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -22.90642, + "lng": -43.18223, + "name": "Rio de Janeiro" + }, + "geonames_id": 3451190 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Fundação Oswaldo Cruz" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Oswaldo Cruz Foundation" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "FIOCRUZ" + } + ], + "relationships": [ + { + "label": "Escola Nacional de Saúde Pública", + "type": "child", + "id": "https://ror.org/02xm1d907" + }, + { + "label": "Plataforma Internacional para Ciência, Tecnologia e Inovação em Saúde", + "type": "related", + "id": "https://ror.org/014fbxn93" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04k1qv985.json b/rc-v1.43-v2/updates/04k1qv985.json new file mode 100644 index 000000000..33dee1033 --- /dev/null +++ b/rc-v1.43-v2/updates/04k1qv985.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1987, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6096 8320" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.509567.8" + ], + "preferred": "grid.509567.8" + } + ], + "id": "https://ror.org/04k1qv985", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lipotec.com/" + } + ], + "names": [ + { + "value": "Lipotec (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Lubrizol Life Science Health (United States)", + "type": "successor", + "id": "https://ror.org/03kp1tb17" + } + ], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04k8k6n84.json b/rc-v1.43-v2/updates/04k8k6n84.json new file mode 100644 index 000000000..a9615de54 --- /dev/null +++ b/rc-v1.43-v2/updates/04k8k6n84.json @@ -0,0 +1,135 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1975, + "external_ids": [ + { + "all": [ + "0000 0004 0473 5039" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q280183" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.9156.b" + ], + "preferred": "grid.9156.b", + "type": "grid" + } + ], + "id": "https://ror.org/04k8k6n84", + "links": [ + { + "type": "website", + "value": "http://www.serfa.fr/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Upper_Alsace" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 47.75205, + "lng": 7.32866, + "name": "Mulhouse" + }, + "geonames_id": 2991214 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Upper Alsace" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Haute-Alsace" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UHA" + } + ], + "relationships": [ + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Institut de Sciences des Matériaux de Mulhouse", + "type": "child", + "id": "https://ror.org/012wxdw12" + }, + { + "label": "Laboratoire de Photochimie et d'Ingénierie Macromoléculaire", + "type": "child", + "id": "https://ror.org/02t1cke57" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Laboratoire Interuniversitaire des Sciences de l'Education et de la Communication", + "type": "child", + "id": "https://ror.org/04n2vwk08" + }, + { + "label": "Centre de REcherche En Gestion des Organisations", + "type": "child", + "id": "https://ror.org/0292fgv83" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04kdfz702.json b/rc-v1.43-v2/updates/04kdfz702.json new file mode 100644 index 000000000..470248a09 --- /dev/null +++ b/rc-v1.43-v2/updates/04kdfz702.json @@ -0,0 +1,379 @@ +{ + "locations": [ + { + "geonames_id": 2978179, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.79395, + "lng": 2.49323, + "name": "Saint-Maur-des-Fossés" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2154 1736" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100004617" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.452348.c" + ], + "preferred": "grid.452348.c" + } + ], + "id": "https://ror.org/04kdfz702", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.insu.cnrs.fr/en" + } + ], + "names": [ + { + "value": "Institut National des Sciences de l'Univers", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INSU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "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": "Géoazur", + "type": "child", + "id": "https://ror.org/05xtktk35" + }, + { + "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 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 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": "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": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratory of Astrophysics of Bordeaux", + "type": "child", + "id": "https://ror.org/00yee3n23" + }, + { + "label": "Laboratoire d'Océanographie Microbienne", + "type": "child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratoire d’études spatiales et d’instrumentation en astrophysique", + "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 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": "Systèmes de Référence Temps-Espace", + "type": "child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Laboratoire d’Océanographie de Villefranche", + "type": "child", + "id": "https://ror.org/05r5y6641" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "child", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "École & Observatoire des Sciences de la Terre", + "type": "child", + "id": "https://ror.org/030qxve40" + }, + { + "label": "Institut Terre & Environnement de Strasbourg", + "type": "child", + "id": "https://ror.org/0530qwm02" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04ma29860.json b/rc-v1.43-v2/updates/04ma29860.json new file mode 100644 index 000000000..317047e5f --- /dev/null +++ b/rc-v1.43-v2/updates/04ma29860.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2964574, + "geonames_details": { + "country_code": "IE", + "country_name": "Ireland", + "lat": 53.33306, + "lng": -6.24889, + "name": "Dublin" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0510 4503" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.494077.9" + ], + "preferred": "grid.494077.9" + } + ], + "id": "https://ror.org/04ma29860", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.fishinginireland.info/" + } + ], + "names": [ + { + "value": "Fishing in Ireland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Central Fisheries Board", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inland Fisheries Ireland", + "type": "successor", + "id": "https://ror.org/022rydv31" + } + ], + "status": "inactive", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04marky29.json b/rc-v1.43-v2/updates/04marky29.json new file mode 100644 index 000000000..72d226594 --- /dev/null +++ b/rc-v1.43-v2/updates/04marky29.json @@ -0,0 +1,133 @@ +{ + "locations": [ + { + "geonames_id": 2761369, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.20849, + "lng": 16.37208, + "name": "Vienna" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0515 0868", + "0000 0005 1089 9897" + ], + "preferred": "0000 0005 1089 9897" + }, + { + "type": "fundref", + "all": [ + "501100004956", + "100018774" + ], + "preferred": "100018774" + }, + { + "type": "wikidata", + "all": [ + "Q871765" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.454185.9" + ], + "preferred": "grid.454185.9" + } + ], + "id": "https://ror.org/04marky29", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://bmk.gv.at" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Transport_(Austria)" + } + ], + "names": [ + { + "value": "Bundesministerium für Klimaschutz, Umwelt, Energie, Mobilität, Innovation und Technologie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Transport", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Federal Ministry for Climate Action, Environment, Energy, Mobility, Innovation and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Austrian Ministry of Climate Action, Environment, Energy, Mobility, Innovation and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Federal Ministry for Transport, Innovation and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Bundesministerium für Verkehr, Innovation und Technologie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Climate Action, Environment, Energy, Mobility, Innovation and Technology", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "BMVIT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04mb62065.json b/rc-v1.43-v2/updates/04mb62065.json new file mode 100644 index 000000000..88a88d9fa --- /dev/null +++ b/rc-v1.43-v2/updates/04mb62065.json @@ -0,0 +1,80 @@ +{ + "locations": [ + { + "geonames_id": 1625822, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -7.24917, + "lng": 112.75083, + "name": "Surabaya" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100016139", + "501100014823" + ], + "preferred": "501100016139" + } + ], + "id": "https://ror.org/04mb62065", + "domains": [], + "links": [], + "names": [ + { + "value": "Direktorat Riset Dan Pengabdian Kepada Masyarakat", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DRPM – Kemenristekdikti", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Directorate of Research and Community Service – Ministry of Research, Technology and Higher Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DRPM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Research and Innovation Agency", + "type": "parent", + "id": "https://ror.org/02hmjzt55" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04n0g0b29.json b/rc-v1.43-v2/updates/04n0g0b29.json new file mode 100644 index 000000000..c93cf3007 --- /dev/null +++ b/rc-v1.43-v2/updates/04n0g0b29.json @@ -0,0 +1,186 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2172 2676" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100018967" + ], + "preferred": "100018967" + }, + { + "type": "wikidata", + "all": [ + "Q24543" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5612.0" + ], + "preferred": "grid.5612.0" + } + ], + "id": "https://ror.org/04n0g0b29", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.upf.edu/en/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Pompeu_Fabra_University" + } + ], + "names": [ + { + "value": "Pompeu Fabra University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universitat Pompeu Fabra, Barcelona", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universitat Pompeu Fabra", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Universidad Pompeu Fabra", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "UPF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut de Biologia Evolutiva", + "type": "child", + "id": "https://ror.org/044mj7r89" + }, + { + "label": "Barcelona School of Economics", + "type": "related", + "id": "https://ror.org/02k09n368" + }, + { + "label": "Centre de Recerca en Economia Internacional", + "type": "related", + "id": "https://ror.org/0241avf06" + }, + { + "label": "Centre for Genomic Regulation", + "type": "related", + "id": "https://ror.org/03wyzt892" + }, + { + "label": "Institut Barcelona d'Estudis Internacionals", + "type": "related", + "id": "https://ror.org/05rke5d69" + }, + { + "label": "Barcelona Institute for Global Health", + "type": "related", + "id": "https://ror.org/03hjgt059" + }, + { + "label": "Hospital del Mar Research Institute", + "type": "related", + "id": "https://ror.org/042nkmz09" + }, + { + "label": "Barcelona Biomedical Research Park", + "type": "related", + "id": "https://ror.org/05sajct49" + }, + { + "label": "Institut de Política Econòmica i Governança", + "type": "child", + "id": "https://ror.org/03wbt1f24" + }, + { + "label": "Escola Superior de Comerç Internacional", + "type": "child", + "id": "https://ror.org/033m8p353" + }, + { + "label": "Escola Superior d'Infermeria del Mar", + "type": "child", + "id": "https://ror.org/04jp88086" + }, + { + "label": "BIST Dolors Aleu Graduate Centre", + "type": "child", + "id": "https://ror.org/037tawy03" + }, + { + "label": "UPF Barcelona School of Management", + "type": "child", + "id": "https://ror.org/04m3cqq68" + }, + { + "label": "TecnoCampus", + "type": "child", + "id": "https://ror.org/05193xx52" + }, + { + "label": "Barcelonaβeta Brain Research Center", + "type": "child", + "id": "https://ror.org/03k4wdb90" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04nm1cv11.json b/rc-v1.43-v2/updates/04nm1cv11.json new file mode 100644 index 000000000..efa8d42d3 --- /dev/null +++ b/rc-v1.43-v2/updates/04nm1cv11.json @@ -0,0 +1,138 @@ +{ + "locations": [ + { + "geonames_id": 2654675, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0380 7336" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100012141" + ], + "preferred": "100012141" + }, + { + "type": "wikidata", + "all": [ + "Q17028004" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.410421.2" + ], + "preferred": "grid.410421.2" + } + ], + "id": "https://ror.org/04nm1cv11", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_Hospitals_Bristol_NHS_Foundation_Trust" + } + ], + "names": [ + { + "value": "University Hospitals Bristol NHS Foundation Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Bristol Eye Hospital", + "type": "child", + "id": "https://ror.org/01w151e64" + }, + { + "label": "Bristol General Hospital", + "type": "child", + "id": "https://ror.org/00h3hwc05" + }, + { + "label": "Bristol Royal Hospital for Children", + "type": "child", + "id": "https://ror.org/01qgecw57" + }, + { + "label": "Bristol Royal Infirmary", + "type": "child", + "id": "https://ror.org/031p4kj21" + }, + { + "label": "NIHR Bristol Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/02mtt1z51" + }, + { + "label": "NIHR Bristol Cardiovascular Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/03gna4510" + }, + { + "label": "NIHR Bristol Nutrition Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/019rf7x86" + }, + { + "label": "South Bristol Community Hospital", + "type": "child", + "id": "https://ror.org/00pa9y269" + }, + { + "label": "St Michael's Hospital", + "type": "child", + "id": "https://ror.org/02hqqna27" + }, + { + "label": "University Of Bristol Dental Hospital", + "type": "child", + "id": "https://ror.org/027a33v57" + }, + { + "label": "University Hospitals Bristol and Weston NHS Foundation Trust", + "type": "successor", + "id": "https://ror.org/03jzzxg14" + } + ], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04nqtfa57.json b/rc-v1.43-v2/updates/04nqtfa57.json new file mode 100644 index 000000000..600ae506f --- /dev/null +++ b/rc-v1.43-v2/updates/04nqtfa57.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.494474.e" + ], + "preferred": "grid.494474.e" + } + ], + "id": "https://ror.org/04nqtfa57", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sts-e.com/index.php?lang=en" + } + ], + "names": [ + { + "value": "Technical Services and Supplies (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Servicios Técnicos y Suministros", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "STS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04nwt4928.json b/rc-v1.43-v2/updates/04nwt4928.json new file mode 100644 index 000000000..b64138aab --- /dev/null +++ b/rc-v1.43-v2/updates/04nwt4928.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3106672, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.65518, + "lng": -4.72372, + "name": "Valladolid" + } + } + ], + "established": 1908, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1789 4151" + ], + "preferred": "0000 0004 1789 4151" + }, + { + "type": "grid", + "all": [ + "grid.423855.d" + ], + "preferred": "grid.423855.d" + } + ], + "id": "https://ror.org/04nwt4928", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.valladolid.es" + } + ], + "names": [ + { + "value": "Ayuntamiento de Valladolid", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04q4ppz72.json b/rc-v1.43-v2/updates/04q4ppz72.json new file mode 100644 index 000000000..cade1b907 --- /dev/null +++ b/rc-v1.43-v2/updates/04q4ppz72.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2510409, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.8581, + "lng": -4.02263, + "name": "Toledo" + } + } + ], + "established": 1966, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1766 1075" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418888.5" + ], + "preferred": "grid.418888.5" + } + ], + "id": "https://ror.org/04q4ppz72", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://toledo.sanidad.castillalamancha.es" + } + ], + "names": [ + { + "value": "Complejo Hospitalario Universitario de Toledo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Complejo Hospitalario de Toledo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CHT", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CHUT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Servicio de Salud de Castilla La Mancha", + "type": "parent", + "id": "https://ror.org/03k8zj440" + }, + { + "label": "Hospital Virgen del Valle", + "type": "child", + "id": "https://ror.org/00kxqbw45" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04qxsrb28.json b/rc-v1.43-v2/updates/04qxsrb28.json new file mode 100644 index 000000000..eb12b6248 --- /dev/null +++ b/rc-v1.43-v2/updates/04qxsrb28.json @@ -0,0 +1,120 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1928, + "external_ids": [ + { + "all": [ + "501100002913", + "501100011878" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.453158.e" + ], + "preferred": "grid.453158.e", + "type": "grid" + }, + { + "all": [ + "0000 0001 2174 3776" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1186029" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/04qxsrb28", + "links": [ + { + "type": "website", + "value": "http://www.flanders.be/en" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Flemish_Government" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + }, + "geonames_id": 2800866 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Flemish Government" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Flämische Regierung" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Gouvernement flamand" + }, + { + "lang": "nl", + "types": [ + "label" + ], + "value": "Vlaamse Overheid" + } + ], + "relationships": [ + { + "label": "Flanders Environment Agency", + "type": "child", + "id": "https://ror.org/04f41jv37" + }, + { + "label": "Departement Omgeving", + "type": "child", + "id": "https://ror.org/0558ewf28" + }, + { + "label": "Departement Economie, Wetenschap & Innovatie", + "type": "child", + "id": "https://ror.org/01g94x362" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04rzqnw97.json b/rc-v1.43-v2/updates/04rzqnw97.json new file mode 100644 index 000000000..491069685 --- /dev/null +++ b/rc-v1.43-v2/updates/04rzqnw97.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q47457486" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.501550.4" + ], + "preferred": "grid.501550.4" + } + ], + "id": "https://ror.org/04rzqnw97", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.conservatorioteresaberganza.com/" + } + ], + "names": [ + { + "value": "Conservatorio Profesional de Música “Teresa Berganza”", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Conservatorio de Música Teresa Berganza", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04sk0bj73.json b/rc-v1.43-v2/updates/04sk0bj73.json new file mode 100644 index 000000000..e6ab2bfcb --- /dev/null +++ b/rc-v1.43-v2/updates/04sk0bj73.json @@ -0,0 +1,79 @@ +{ + "locations": [ + { + "geonames_id": 2953436, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.22683, + "lng": 8.61816, + "name": "Bad Homburg" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q650259" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.415062.4" + ], + "preferred": "grid.415062.4" + } + ], + "id": "https://ror.org/04sk0bj73", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.freseniusmedicalcare.us/en/home/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Fresenius_Medical_Care" + } + ], + "names": [ + { + "value": "Fresenius Medical Care (Germany)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Fresenius Medical Care North America (United States)", + "type": "child", + "id": "https://ror.org/05rs7tq63" + }, + { + "label": "Fresenius (Germany)", + "type": "related", + "id": "https://ror.org/01v376g59" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04sqh8108.json b/rc-v1.43-v2/updates/04sqh8108.json new file mode 100644 index 000000000..c31643b50 --- /dev/null +++ b/rc-v1.43-v2/updates/04sqh8108.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2519139, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.65675, + "lng": 2.94953, + "name": "Costitx" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q357639" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.440324.5" + ], + "preferred": "grid.440324.5" + } + ], + "id": "https://ror.org/04sqh8108", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.oam.es/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Astronomical_Observatory_of_Mallorca" + } + ], + "names": [ + { + "value": "Astronomical Observatory of Mallorca", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "OAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04t0gwh46.json b/rc-v1.43-v2/updates/04t0gwh46.json new file mode 100644 index 000000000..4835e1355 --- /dev/null +++ b/rc-v1.43-v2/updates/04t0gwh46.json @@ -0,0 +1,170 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1909, + "external_ids": [ + { + "all": [ + "0000 0004 0639 6384" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100010463" + ], + "preferred": "501100010463", + "type": "fundref" + }, + { + "all": [ + "Q2451973" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.418596.7" + ], + "preferred": "grid.418596.7", + "type": "grid" + } + ], + "id": "https://ror.org/04t0gwh46", + "links": [ + { + "type": "website", + "value": "http://www.institut-curie.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Curie_Institute_(Paris)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute Curie" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Institut Curie" + } + ], + "relationships": [ + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Genome Integrity, RNA and Cancer", + "type": "child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Immunity and Cancer", + "type": "child", + "id": "https://ror.org/01zefvs55" + }, + { + "label": "Dynamique du noyau", + "type": "child", + "id": "https://ror.org/04team556" + }, + { + "label": "Physico-chimie Curie", + "type": "child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "Signalisation, Neurobiologie et Cancer", + "type": "child", + "id": "https://ror.org/01cmdpn82" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Musée Curie", + "type": "child", + "id": "https://ror.org/00tf8ca96" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Cancer, Hétérogénéité, Instabilité et Plasticité", + "type": "child", + "id": "https://ror.org/03t4pc386" + }, + { + "label": "Génétique et biologie du développement", + "type": "child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Laboratoire d'imagerie translationnelle en oncologie", + "type": "child", + "id": "https://ror.org/05qy9ka59" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04t4b6y41.json b/rc-v1.43-v2/updates/04t4b6y41.json new file mode 100644 index 000000000..fd40ade6d --- /dev/null +++ b/rc-v1.43-v2/updates/04t4b6y41.json @@ -0,0 +1,66 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1978, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8497 6529" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.417198.2" + ], + "preferred": "grid.417198.2" + } + ], + "id": "https://ror.org/04t4b6y41", + "domains": [], + "links": [], + "names": [ + { + "value": "Instituto Nacional de la Salud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INSALUD", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04tfzc498.json b/rc-v1.43-v2/updates/04tfzc498.json new file mode 100644 index 000000000..fd2c30d0d --- /dev/null +++ b/rc-v1.43-v2/updates/04tfzc498.json @@ -0,0 +1,300 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-03-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2003, + "external_ids": [ + { + "all": [ + "grid.414603.4" + ], + "preferred": "grid.414603.4", + "type": "grid" + } + ], + "id": "https://ror.org/04tfzc498", + "links": [ + { + "type": "website", + "value": "http://www.salute.gov.it/portale/temi/p2_6.jsp?lingua=italiano&id=794&area=Ricerca%20sanitaria&menu=ssn" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 41.89193, + "lng": 12.51133, + "name": "Rome" + }, + "geonames_id": 3169070 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Istituti di Ricovero e Cura a Carattere Scientifico" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IRCCS" + } + ], + "relationships": [ + { + "label": "Bambino Gesù Children's Hospital", + "type": "child", + "id": "https://ror.org/02sy42d13" + }, + { + "label": "Candiolo Cancer Institute", + "type": "child", + "id": "https://ror.org/04wadq306" + }, + { + "label": "Casa Sollievo della Sofferenza", + "type": "child", + "id": "https://ror.org/00md77g41" + }, + { + "label": "Centro Cardiologico Monzino", + "type": "child", + "id": "https://ror.org/006pq9r08" + }, + { + "label": "Centro Neurolesi Bonino Pulejo", + "type": "child", + "id": "https://ror.org/05tzq2c96" + }, + { + "label": "Centro San Giovanni di Dio Fatebenefratelli", + "type": "child", + "id": "https://ror.org/02davtb12" + }, + { + "label": "Centro di Riferimento Oncologico", + "type": "child", + "id": "https://ror.org/03ks1vk59" + }, + { + "label": "Centro di Riferimento Oncologico della Basilicata", + "type": "child", + "id": "https://ror.org/00n6jcj93" + }, + { + "label": "European Institute of Oncology", + "type": "child", + "id": "https://ror.org/02vr0ne26" + }, + { + "label": "Fatebenefratelli Hospital", + "type": "child", + "id": "https://ror.org/01x9zv505" + }, + { + "label": "Fondazione G.B. Bietti", + "type": "child", + "id": "https://ror.org/012khpt30" + }, + { + "label": "Fondazione IRCCS Ca' Granda Ospedale Maggiore Policlinico", + "type": "child", + "id": "https://ror.org/016zn0y21" + }, + { + "label": "Fondazione IRCCS Istituto Nazionale dei Tumori", + "type": "child", + "id": "https://ror.org/05dwj7825" + }, + { + "label": "Fondazione Istituto Neurologico Nazionale Casimiro Mondino", + "type": "child", + "id": "https://ror.org/009h0v784" + }, + { + "label": "Fondazione Salvatore Maugeri", + "type": "child", + "id": "https://ror.org/01e8tvg28" + }, + { + "label": "Fondazione Santa Lucia", + "type": "child", + "id": "https://ror.org/05rcxtd95" + }, + { + "label": "Fondazione Stella Maris", + "type": "child", + "id": "https://ror.org/02w8ez808" + }, + { + "label": "Gastroenterology Hospital \"Saverio de Bellis\"", + "type": "child", + "id": "https://ror.org/05pfy5w65" + }, + { + "label": "IRCCS Eugenio Medea", + "type": "child", + "id": "https://ror.org/05ynr3m75" + }, + { + "label": "IRCCS Humanitas Research Hospital", + "type": "child", + "id": "https://ror.org/05d538656" + }, + { + "label": "IRCCS Materno Infantile Burlo Garofolo", + "type": "child", + "id": "https://ror.org/03t1jzs40" + }, + { + "label": "IRCCS Ospedale San Raffaele", + "type": "child", + "id": "https://ror.org/039zxt351" + }, + { + "label": "IRCCS Policlinico San Donato", + "type": "child", + "id": "https://ror.org/01220jp31" + }, + { + "label": "Istituti Fisioterapici Ospitalieri", + "type": "child", + "id": "https://ror.org/04j6jb515" + }, + { + "label": "Istituto Auxologico Italiano", + "type": "child", + "id": "https://ror.org/033qpss18" + }, + { + "label": "Istituto Dermopatico dell'Immacolata", + "type": "child", + "id": "https://ror.org/02b5mfy68" + }, + { + "label": "Istituto Giannina Gaslini", + "type": "child", + "id": "https://ror.org/0424g0k78" + }, + { + "label": "Istituto Nazionale Tumori IRCCS \"Fondazione G. Pascale\"", + "type": "child", + "id": "https://ror.org/0506y2b23" + }, + { + "label": "Istituto Nazionale per le Malattie Infettive Lazzaro Spallanzani", + "type": "child", + "id": "https://ror.org/00kv87w35" + }, + { + "label": "Fondazione IRCCS Istituto Neurologico Carlo Besta", + "type": "child", + "id": "https://ror.org/05rbx8m02" + }, + { + "label": "Istituto Neurologico Mediterraneo", + "type": "child", + "id": "https://ror.org/00cpb6264" + }, + { + "label": "Istituto Oncologico Veneto", + "type": "child", + "id": "https://ror.org/01xcjmy57" + }, + { + "label": "Istituto Ortopedico Galeazzi", + "type": "child", + "id": "https://ror.org/01vyrje42" + }, + { + "label": "Istituto Ortopedico Rizzoli", + "type": "child", + "id": "https://ror.org/02ycyys66" + }, + { + "label": "Istituto Scientifico Romagnolo per lo Studio e la Cura dei Tumori", + "type": "child", + "id": "https://ror.org/013wkc921" + }, + { + "label": "Istituto Tumori Bari", + "type": "child", + "id": "https://ror.org/03jxkz251" + }, + { + "label": "Istituto delle Scienze Neurologiche di Bologna", + "type": "child", + "id": "https://ror.org/02mgzgr95" + }, + { + "label": "Mario Negri Institute for Pharmacological Research", + "type": "child", + "id": "https://ror.org/05aspc753" + }, + { + "label": "MultiMedica", + "type": "child", + "id": "https://ror.org/01h8ey223" + }, + { + "label": "Oasi Maria SS", + "type": "child", + "id": "https://ror.org/00dqmaq38" + }, + { + "label": "Ospedale Maggiore Carlo Alberto Pizzardi", + "type": "child", + "id": "https://ror.org/010tmdc88" + }, + { + "label": "Ospedale Policlinico San Martino", + "type": "child", + "id": "https://ror.org/04d7es448" + }, + { + "label": "San Camillo IRCCS di Venezia", + "type": "child", + "id": "https://ror.org/03njebb69" + }, + { + "label": "Policlinico San Matteo Fondazione", + "type": "child", + "id": "https://ror.org/05w1q1c88" + }, + { + "label": "Istituto Nazionale di Riposo e Cura per Anziani", + "type": "child", + "id": "https://ror.org/057aq1y25" + }, + { + "label": "Instituto Nazionale Tumori Regina Elena", + "type": "child", + "id": "https://ror.org/04mgfev69" + }, + { + "label": "Istituto di Ricovero e Cura a Carattere Scientifico San Raffaele", + "type": "child", + "id": "https://ror.org/006x48140" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04tj63d06.json b/rc-v1.43-v2/updates/04tj63d06.json new file mode 100644 index 000000000..34c42f80d --- /dev/null +++ b/rc-v1.43-v2/updates/04tj63d06.json @@ -0,0 +1,157 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1887, + "external_ids": [ + { + "all": [ + "100007703", + "100005904", + "100006446", + "100010541", + "100009591", + "100003203", + "100002260", + "100005568", + "100011490" + ], + "preferred": "100007703", + "type": "fundref" + }, + { + "all": [ + "grid.40803.3f" + ], + "preferred": "grid.40803.3f", + "type": "grid" + }, + { + "all": [ + "0000 0001 2173 6074" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1132346" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/04tj63d06", + "links": [ + { + "type": "website", + "value": "https://www.ncsu.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/North_Carolina_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 35.7721, + "lng": -78.63861, + "name": "Raleigh" + }, + "geonames_id": 4487042 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NCSU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "North Carolina State University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal de Carolina del Norte" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État de caroline du nord" + } + ], + "relationships": [ + { + "label": "Center for Dielectrics & Piezoelectrics", + "type": "child", + "id": "https://ror.org/04nv7tt16" + }, + { + "label": "North Carolina Sea Grant", + "type": "child", + "id": "https://ror.org/01kgxxx41" + }, + { + "label": "North Carolina Space Grant Consortium", + "type": "child", + "id": "https://ror.org/058465397" + }, + { + "label": "UNC/NCSU Joint Department of Biomedical Engineering", + "type": "child", + "id": "https://ror.org/03hakdk41" + }, + { + "label": "Triangle Center for Evolutionary Medicine", + "type": "child", + "id": "https://ror.org/02yjqwr70" + }, + { + "label": "Southeast Climate Adaptation Science Center", + "type": "child", + "id": "https://ror.org/009hmnr85" + }, + { + "label": "Renaissance Computing Institute", + "type": "child", + "id": "https://ror.org/01s91ey96" + }, + { + "label": "University of North Carolina System", + "type": "parent", + "id": "https://ror.org/0566a8c54" + }, + { + "label": "The Nonwovens Institute", + "type": "child", + "id": "https://ror.org/0568g2481" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04tjemt46.json b/rc-v1.43-v2/updates/04tjemt46.json new file mode 100644 index 000000000..cf803cc7e --- /dev/null +++ b/rc-v1.43-v2/updates/04tjemt46.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.481815.1" + ], + "preferred": "grid.481815.1", + "type": "grid" + } + ], + "id": "https://ror.org/04tjemt46", + "links": [ + { + "type": "website", + "value": "http://www.brc.hu/genetics.php?change_lang=en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 46.253, + "lng": 20.14824, + "name": "Szeged" + }, + "geonames_id": 715429 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute of Genetics" + }, + { + "lang": "hu", + "types": [ + "label" + ], + "value": "Genetikai Intézet Szegedi Biológiai Kutatóközpont Magyar Tudományos Akadémia" + } + ], + "relationships": [ + { + "label": "HUN-REN Szegedi Biológiai Kutatóközpont", + "type": "parent", + "id": "https://ror.org/016gb1631" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04v2q5t19.json b/rc-v1.43-v2/updates/04v2q5t19.json new file mode 100644 index 000000000..09a66c54c --- /dev/null +++ b/rc-v1.43-v2/updates/04v2q5t19.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424747.6" + ], + "preferred": "grid.424747.6" + } + ], + "id": "https://ror.org/04v2q5t19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bcndigital.org" + } + ], + "names": [ + { + "value": "Barcelona Digital Centro Tecnológico", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BDigital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04w07sc25.json b/rc-v1.43-v2/updates/04w07sc25.json new file mode 100644 index 000000000..39739b798 --- /dev/null +++ b/rc-v1.43-v2/updates/04w07sc25.json @@ -0,0 +1,94 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1999, + "external_ids": [ + { + "all": [ + "0000 0004 0445 8043" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q51780435" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.503407.5" + ], + "preferred": "grid.503407.5", + "type": "grid" + } + ], + "id": "https://ror.org/04w07sc25", + "links": [ + { + "type": "website", + "value": "https://www6.montpellier.inra.fr/spo/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Sciences pour L’Œnologie" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SPO" + } + ], + "relationships": [ + { + "label": "Centre Occitanie-Montpellier", + "type": "parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04w30w390.json b/rc-v1.43-v2/updates/04w30w390.json new file mode 100644 index 000000000..0518ba6e6 --- /dev/null +++ b/rc-v1.43-v2/updates/04w30w390.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.476529.b" + ], + "preferred": "grid.476529.b" + } + ], + "id": "https://ror.org/04w30w390", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.biomendi.com/" + } + ], + "names": [ + { + "value": "Biomendi (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratorios Biomendi SAU", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04x05p558.json b/rc-v1.43-v2/updates/04x05p558.json new file mode 100644 index 000000000..a3fc3ef49 --- /dev/null +++ b/rc-v1.43-v2/updates/04x05p558.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2518559, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 38.26218, + "lng": -0.70107, + "name": "Elche" + } + } + ], + "established": 1988, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.431984.3" + ], + "preferred": "grid.431984.3" + } + ], + "id": "https://ror.org/04x05p558", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://elche.avanzagrupo.com" + } + ], + "names": [ + { + "value": "Autobuses Urbanos Elche", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AUESA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04xcq9q51.json b/rc-v1.43-v2/updates/04xcq9q51.json new file mode 100644 index 000000000..ec9157a9a --- /dev/null +++ b/rc-v1.43-v2/updates/04xcq9q51.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 5006946, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.87502, + "lng": -85.51005, + "name": "Reed City" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0450 5807" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.490520.a" + ], + "preferred": "grid.490520.a" + } + ], + "id": "https://ror.org/04xcq9q51", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.spectrumhealth.org/locations/spectrum-health-reed-city-hospital" + } + ], + "names": [ + { + "value": "Corewell Health Reed City Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spectrum Health Reed City Hospital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04xk0dc21.json b/rc-v1.43-v2/updates/04xk0dc21.json new file mode 100644 index 000000000..94688afab --- /dev/null +++ b/rc-v1.43-v2/updates/04xk0dc21.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 320392, + "geonames_details": { + "country_code": "TR", + "country_name": "Türkiye", + "lat": 37.72028, + "lng": 30.29083, + "name": "Burdur" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0386 420X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100016210" + ], + "preferred": "501100016210" + }, + { + "type": "wikidata", + "all": [ + "Q924465" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.411761.4" + ], + "preferred": "grid.411761.4" + } + ], + "id": "https://ror.org/04xk0dc21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.mehmetakif.edu.tr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Mehmet_Akif_Ersoy_University" + } + ], + "names": [ + { + "value": "Burdur Mehmet Akif Ersoy Üniversitesi", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Mehmet Akif Ersoy Üniversitesi", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Mehmet Akif Ersoy University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Burdur Mehmet Akif Ersoy University", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04yyy0y35.json b/rc-v1.43-v2/updates/04yyy0y35.json new file mode 100644 index 000000000..e66ebd1fc --- /dev/null +++ b/rc-v1.43-v2/updates/04yyy0y35.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2024-02-13", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1986, + "external_ids": [ + { + "all": [ + "0000 0000 8803 7203" + ], + "preferred": "0000 0000 8803 7203", + "type": "isni" + }, + { + "all": [ + "Q568642" + ], + "preferred": "Q568642", + "type": "wikidata" + } + ], + "id": "https://ror.org/04yyy0y35", + "links": [ + { + "type": "website", + "value": "https://www.bloomsbury.com/uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Bloomsbury_Publishing" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bloomsbury Publishing" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bloomsbury Publishing (United Kingdom)" + } + ], + "relationships": [ + { + "label": "Bloomsbury (United States)", + "type": "child", + "id": "https://ror.org/042vxm455" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04yznqr36.json b/rc-v1.43-v2/updates/04yznqr36.json new file mode 100644 index 000000000..10b85d40c --- /dev/null +++ b/rc-v1.43-v2/updates/04yznqr36.json @@ -0,0 +1,218 @@ +{ + "locations": [ + { + "geonames_id": 2980291, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.43389, + "lng": 4.39, + "name": "Saint-Etienne" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2158 1682" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q623154" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.6279.a" + ], + "preferred": "grid.6279.a" + } + ], + "id": "https://ror.org/04yznqr36", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://portail.univ-st-etienne.fr/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Jean_Monnet_University" + } + ], + "names": [ + { + "value": "Jean Monnet University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Université Jean Monnet", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [ + { + "label": "Laboratoire Interuniversitaire de Biologie de la Motricité", + "type": "related", + "id": "https://ror.org/03sc1p174" + }, + { + "label": "Université de Lyon", + "type": "parent", + "id": "https://ror.org/01rk35k63" + }, + { + "label": "Biologie, Ingénierie et Imagerie de la Greffe de Cornée", + "type": "child", + "id": "https://ror.org/037b3he73" + }, + { + "label": "Centre Max Weber", + "type": "child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre de Recherches Critiques sur le Droit", + "type": "child", + "id": "https://ror.org/01rzzcx32" + }, + { + "label": "Conception de l'Action en Situation", + "type": "child", + "id": "https://ror.org/0476zq753" + }, + { + "label": "Education, Cultures, Politiques", + "type": "child", + "id": "https://ror.org/037xc1874" + }, + { + "label": "Environment, City, Society", + "type": "child", + "id": "https://ror.org/0256r1e04" + }, + { + "label": "Groupe d'Analyse et de Théorie Economique Lyon St Etienne", + "type": "child", + "id": "https://ror.org/042fmc481" + }, + { + "label": "Histoire et Sources des Mondes Antiques", + "type": "child", + "id": "https://ror.org/01yx7av22" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Laboratoire Hubert Curien", + "type": "child", + "id": "https://ror.org/0028p8r67" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire d'études sur les monothéismes", + "type": "child", + "id": "https://ror.org/02m0hy518" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Biotechnologies Végétales Appliquées aux Plantes Aromatiques et Médicinales", + "type": "child", + "id": "https://ror.org/01j6cta96" + }, + { + "label": "Laboratoire de Mécanique des Fluides et d'Acoustique", + "type": "child", + "id": "https://ror.org/04dxeze48" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratory of Polymer Materials Engineering", + "type": "child", + "id": "https://ror.org/02160my55" + }, + { + "label": "Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles", + "type": "child", + "id": "https://ror.org/04rkh0096" + }, + { + "label": "Lyon Neuroscience Research Center", + "type": "child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Triangle", + "type": "child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Centre d'Investigation Clinique - Epidémiologie Clinique Saint-Etienne", + "type": "child", + "id": "https://ror.org/044dp1584" + }, + { + "label": "Research on healthcare performance", + "type": "child", + "id": "https://ror.org/02ncy5p18" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04z22qz54.json b/rc-v1.43-v2/updates/04z22qz54.json new file mode 100644 index 000000000..5219b4d2b --- /dev/null +++ b/rc-v1.43-v2/updates/04z22qz54.json @@ -0,0 +1,246 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 1581" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100017211" + ], + "preferred": "501100017211" + }, + { + "type": "wikidata", + "all": [ + "Q24935922" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457015.2" + ], + "preferred": "grid.457015.2" + } + ], + "id": "https://ror.org/04z22qz54", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/ins2i/" + } + ], + "names": [ + { + "value": "Institut des Sciences de l'Information et de leurs Interactions", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INS2I", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Laboratoire d'Informatique de Paris-Nord", + "type": "child", + "id": "https://ror.org/05g1zjw44" + }, + { + "label": "Computer Science Laboratory of the École Polytechnique", + "type": "child", + "id": "https://ror.org/04afed728" + }, + { + "label": "Département d'Informatique", + "type": "child", + "id": "https://ror.org/05y6rqs46" + }, + { + "label": "Grenoble Computer Science Laboratory", + "type": "child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "GREYC", + "type": "child", + "id": "https://ror.org/043749971" + }, + { + "label": "Heuristics and Diagnostics for Complex Systems", + "type": "child", + "id": "https://ror.org/0075hvk77" + }, + { + "label": "Information Processing and System Research Lab", + "type": "child", + "id": "https://ror.org/0592ata02" + }, + { + "label": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "type": "child", + "id": "https://ror.org/00myn0z94" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Laboratoire Bordelais de Recherche en Informatique", + "type": "child", + "id": "https://ror.org/03adqg323" + }, + { + "label": "Laboratoire d'Informatique Gaspard-Monge", + "type": "child", + "id": "https://ror.org/04t50yk91" + }, + { + "label": "Laboratoire d'Informatique, Signaux et Systèmes de Sophia Antipolis", + "type": "child", + "id": "https://ror.org/01215r597" + }, + { + "label": "Laboratoire de Recherche en Informatique de Paris 6", + "type": "child", + "id": "https://ror.org/05krcen59" + }, + { + "label": "Laboratoire de l'Informatique du Parallélisme", + "type": "child", + "id": "https://ror.org/04msnz457" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratoire des Sciences et Techniques de l’Information de la Communication et de la Connaissance", + "type": "child", + "id": "https://ror.org/0266kfd37" + }, + { + "label": "Laboratoire des Sciences pour la Conception, l'Optimisation et la Production", + "type": "child", + "id": "https://ror.org/00rv5x925" + }, + { + "label": "Laboratory Preuves, Programmes et Systèmes", + "type": "child", + "id": "https://ror.org/046p9e825" + }, + { + "label": "Laboratory for Analysis and Architecture of Systems", + "type": "child", + "id": "https://ror.org/03vcm6439" + }, + { + "label": "Laboratory of Computing, Modelling and Optimization of the Systems", + "type": "child", + "id": "https://ror.org/00t3fpp34" + }, + { + "label": "Laboratory of Industrial and Human Automation Control, Mechanical Engineering and Computer Science", + "type": "child", + "id": "https://ror.org/006z7v557" + }, + { + "label": "Lamsade", + "type": "child", + "id": "https://ror.org/03pnp1a74" + }, + { + "label": "Lorraine Research Laboratory in Computer Science and its Applications", + "type": "child", + "id": "https://ror.org/02vnf0c38" + }, + { + "label": "Maison de la Simulation", + "type": "child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Montpellier Laboratory of Informatics, Robotics and Microelectronics", + "type": "child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Research Center for Automatic Control of Nancy", + "type": "child", + "id": "https://ror.org/022r5hc56" + }, + { + "label": "Techniques for Biomedical Engineering and Complexity Management–Informatics, Mathematics and Applications Grenoble", + "type": "child", + "id": "https://ror.org/03985kf35" + }, + { + "label": "Techniques of Informatics and Microelectronics for Integrated Systems Architecture", + "type": "child", + "id": "https://ror.org/000063q30" + }, + { + "label": "Verimag", + "type": "child", + "id": "https://ror.org/05afmzm11" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04z8k9a98.json b/rc-v1.43-v2/updates/04z8k9a98.json new file mode 100644 index 000000000..1b4520836 --- /dev/null +++ b/rc-v1.43-v2/updates/04z8k9a98.json @@ -0,0 +1,121 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1290, + "external_ids": [ + { + "all": [ + "501100005727", + "501100007474" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.8051.c" + ], + "preferred": "grid.8051.c", + "type": "grid" + }, + { + "all": [ + "0000 0000 9511 4342" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q368643" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/04z8k9a98", + "links": [ + { + "type": "website", + "value": "http://www.uc.pt/en" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Coimbra" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 40.20564, + "lng": -8.41955, + "name": "Coimbra" + }, + "geonames_id": 2740637 + } + ], + "names": [ + { + "lang": "pt", + "types": [ + "label" + ], + "value": "Universidade de Coimbra" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Coimbra" + } + ], + "relationships": [ + { + "label": "Centre for Research in Anthropology", + "type": "child", + "id": "https://ror.org/043ft3840" + }, + { + "label": "Brain Imaging Network", + "type": "child", + "id": "https://ror.org/01d3r6z34" + }, + { + "label": "MARE - Centro de Ciências do Mar e do Ambiente", + "type": "child", + "id": "https://ror.org/03cvzf910" + }, + { + "label": "Hospitais da Universidade de Coimbra", + "type": "related", + "id": "https://ror.org/04032fz76" + }, + { + "label": "Instituto de Telecomunicações", + "type": "related", + "id": "https://ror.org/02ht4fk33" + }, + { + "label": "Centro de Estudos Sociais", + "type": "child", + "id": "https://ror.org/04fab7w85" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04zbc6m03.json b/rc-v1.43-v2/updates/04zbc6m03.json new file mode 100644 index 000000000..5cecd4734 --- /dev/null +++ b/rc-v1.43-v2/updates/04zbc6m03.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.512902.d" + ], + "preferred": "grid.512902.d" + } + ], + "id": "https://ror.org/04zbc6m03", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.isciii.es/QuienesSomos/CentrosPropios/MuseoISCIII" + } + ], + "names": [ + { + "value": "Museo Nacional de Sanidad", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ISCIII Museum", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Museo ISCIII", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Instituto de Salud Carlos III", + "type": "parent", + "id": "https://ror.org/00ca2c886" + } + ], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/04zw2sa68.json b/rc-v1.43-v2/updates/04zw2sa68.json new file mode 100644 index 000000000..c789bbdac --- /dev/null +++ b/rc-v1.43-v2/updates/04zw2sa68.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.488304.3" + ], + "preferred": "grid.488304.3" + } + ], + "id": "https://ror.org/04zw2sa68", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.geicogroup.com" + } + ], + "names": [ + { + "value": "Spanish Ovarian Cancer Research Group", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Grupo Español de Cáncer de Ovario", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "GEICO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0508kew31.json b/rc-v1.43-v2/updates/0508kew31.json new file mode 100644 index 000000000..7bd10464c --- /dev/null +++ b/rc-v1.43-v2/updates/0508kew31.json @@ -0,0 +1,83 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-05-25", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2013, + "external_ids": [ + { + "all": [ + "501100002288", + "501100014110" + ], + "preferred": "501100014110", + "type": "fundref" + }, + { + "all": [ + "grid.468100.b" + ], + "preferred": "grid.468100.b", + "type": "grid" + } + ], + "id": "https://ror.org/0508kew31", + "links": [ + { + "type": "website", + "value": "https://www.der.wa.gov.au" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -31.95224, + "lng": 115.8614, + "name": "Perth" + }, + "geonames_id": 2063523 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Department of Environment Regulation" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Department of Water and Environmental Regulation" + } + ], + "relationships": [ + { + "label": "Government of Western Australia", + "type": "parent", + "id": "https://ror.org/00wqdbc63" + }, + { + "label": "Department of Water", + "type": "predecessor", + "id": "https://ror.org/017wrhq72" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/050gn5214.json b/rc-v1.43-v2/updates/050gn5214.json new file mode 100644 index 000000000..0111a98c0 --- /dev/null +++ b/rc-v1.43-v2/updates/050gn5214.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2005, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0620 5939" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3152211" + ], + "preferred": "Q3152211" + }, + { + "type": "grid", + "all": [ + "grid.425274.2" + ], + "preferred": "grid.425274.2" + } + ], + "id": "https://ror.org/050gn5214", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://institutducerveau-icm.org" + } + ], + "names": [ + { + "value": "Institut du Cerveau", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Paris Brain Institute", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Institut du Cerveau et de la Moelle épinière", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "ICM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/050jcm728.json b/rc-v1.43-v2/updates/050jcm728.json new file mode 100644 index 000000000..bb8031782 --- /dev/null +++ b/rc-v1.43-v2/updates/050jcm728.json @@ -0,0 +1,231 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 052X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100017213" + ], + "preferred": "501100017213" + }, + { + "type": "wikidata", + "all": [ + "Q24935942" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457017.0" + ], + "preferred": "grid.457017.0" + } + ], + "id": "https://ror.org/050jcm728", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/insmi/" + } + ], + "names": [ + { + "value": "Institut National des Sciences Mathématiques et de leurs Interactions", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INSMI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Analyse, Géométrie et Modélisation", + "type": "child", + "id": "https://ror.org/03qgt2624" + }, + { + "label": "Centre de Mathématiques Appliquées", + "type": "child", + "id": "https://ror.org/012e1xn46" + }, + { + "label": "Centre de Recherche en Mathématiques de la Décision", + "type": "child", + "id": "https://ror.org/03s0gj002" + }, + { + "label": "Institut Henri Poincaré", + "type": "child", + "id": "https://ror.org/05dfxeg46" + }, + { + "label": "Institut Fourier", + "type": "child", + "id": "https://ror.org/05rwrfh97" + }, + { + "label": "Institut de Mathématique et de Modélisation de Montpellier", + "type": "child", + "id": "https://ror.org/044kxby82" + }, + { + "label": "Institut de Mathématiques de Bordeaux", + "type": "child", + "id": "https://ror.org/05m3r1b84" + }, + { + "label": "Institut de Mathématiques de Jussieu-Paris Rive Gauche", + "type": "child", + "id": "https://ror.org/03fk87k11" + }, + { + "label": "Institut de Recherche Mathématique Avancée", + "type": "child", + "id": "https://ror.org/02hwgty18" + }, + { + "label": "Institut Élie Cartan de Lorraine", + "type": "child", + "id": "https://ror.org/04rvw8791" + }, + { + "label": "Laboratoire Amiénois de Mathématique Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/04smxbm79" + }, + { + "label": "Laboratoire Analyse, Géométrie et Applications", + "type": "child", + "id": "https://ror.org/018nzqy79" + }, + { + "label": "Laboratoire Angevin de Recherche en Mathématiques", + "type": "child", + "id": "https://ror.org/036j0y719" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Jean-Alexandre Dieudonné", + "type": "child", + "id": "https://ror.org/0274zdr66" + }, + { + "label": "Laboratoire Paul Painlevé", + "type": "child", + "id": "https://ror.org/043n4fm24" + }, + { + "label": "Laboratoire de Mathématiques", + "type": "child", + "id": "https://ror.org/05sd5r855" + }, + { + "label": "Laboratoire de Mathématiques Jean Leray", + "type": "child", + "id": "https://ror.org/04g1hjn96" + }, + { + "label": "Laboratoire de Mathématiques Raphaël Salem", + "type": "child", + "id": "https://ror.org/01k1v7590" + }, + { + "label": "Laboratoire de Mathématiques de Bretagne Atlantique", + "type": "child", + "id": "https://ror.org/02ght4n58" + }, + { + "label": "Laboratoire d’Analyse et de Mathématiques Appliquées", + "type": "child", + "id": "https://ror.org/0581g8849" + }, + { + "label": "Laboratory of Mathematics and their Applications", + "type": "child", + "id": "https://ror.org/00g669j87" + }, + { + "label": "Laurent Schwartz Center for Mathematics", + "type": "child", + "id": "https://ror.org/00b7djk73" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Toulouse Mathematics Institute", + "type": "child", + "id": "https://ror.org/014vp6c30" + }, + { + "label": "Unit of Mathematics, Pure and Applied", + "type": "child", + "id": "https://ror.org/05n21n105" + }, + { + "label": "Institut de Mathématiques de Marseille", + "type": "child", + "id": "https://ror.org/042h2y225" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/050qj5m48.json b/rc-v1.43-v2/updates/050qj5m48.json new file mode 100644 index 000000000..6de0c1a69 --- /dev/null +++ b/rc-v1.43-v2/updates/050qj5m48.json @@ -0,0 +1,130 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1968, + "external_ids": [ + { + "all": [ + "0000 0000 9905 4447" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100010066" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q2495861" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.411025.3" + ], + "preferred": "grid.411025.3", + "type": "grid" + } + ], + "id": "https://ror.org/050qj5m48", + "links": [ + { + "type": "website", + "value": "http://www.maine.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Maine_System" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.79884, + "lng": -68.77265, + "name": "Bangor" + }, + "geonames_id": 4957280 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Maine System" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UMS" + } + ], + "relationships": [ + { + "label": "University of Maine", + "type": "child", + "id": "https://ror.org/01adr0w49" + }, + { + "label": "University of Maine School of Law", + "type": "child", + "id": "https://ror.org/04625j688" + }, + { + "label": "University of Maine at Augusta", + "type": "child", + "id": "https://ror.org/041gqhg24" + }, + { + "label": "University of Maine at Farmington", + "type": "child", + "id": "https://ror.org/00ydm0027" + }, + { + "label": "University of Maine at Fort Kent", + "type": "child", + "id": "https://ror.org/038s91v75" + }, + { + "label": "University of Maine at Machias", + "type": "child", + "id": "https://ror.org/00e9xa106" + }, + { + "label": "University of Maine at Presque Isle", + "type": "child", + "id": "https://ror.org/00nk17n43" + }, + { + "label": "University of Southern Maine", + "type": "child", + "id": "https://ror.org/03ke6tv85" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/051777d98.json b/rc-v1.43-v2/updates/051777d98.json new file mode 100644 index 000000000..48436a5c5 --- /dev/null +++ b/rc-v1.43-v2/updates/051777d98.json @@ -0,0 +1,110 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1965, + "external_ids": [ + { + "all": [ + "100016195" + ], + "preferred": "100016195", + "type": "fundref" + }, + { + "all": [ + "grid.467088.5" + ], + "preferred": "grid.467088.5", + "type": "grid" + }, + { + "all": [ + "0000 0001 2215 6303" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q161718" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/051777d98", + "links": [ + { + "type": "website", + "value": "http://www.undp.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/United_Nations_Development_Programme" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.71427, + "lng": -74.00597, + "name": "New York" + }, + "geonames_id": 5128581 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNDP" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "United Nations Development Programme" + } + ], + "relationships": [ + { + "label": "United Nations Capital Development Fund", + "type": "child", + "id": "https://ror.org/01ehdwj93" + }, + { + "label": "Programa de Desarrollo de las Ciencias Básicas", + "type": "child", + "id": "https://ror.org/00jkr8r49" + }, + { + "label": "United Nations Economic and Social Council", + "type": "parent", + "id": "https://ror.org/01eb8ek77" + }, + { + "label": "Special Programme for Research and Training in Tropical Diseases", + "type": "child", + "id": "https://ror.org/046j7pv84" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/051g75b06.json b/rc-v1.43-v2/updates/051g75b06.json new file mode 100644 index 000000000..356dc7bf9 --- /dev/null +++ b/rc-v1.43-v2/updates/051g75b06.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 706483, + "geonames_details": { + "country_code": "UA", + "country_name": "Ukraine", + "lat": 49.98081, + "lng": 36.25272, + "name": "Kharkiv" + } + } + ], + "established": 1921, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30257440" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.445530.3" + ], + "preferred": "grid.445530.3" + } + ], + "id": "https://ror.org/051g75b06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ksada.org" + } + ], + "names": [ + { + "value": "Kharkov State Academy of Design and Arts", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Харківська державна академія дизайну і мистецтв", + "types": [ + "label" + ], + "lang": "uk" + }, + { + "value": "KSADA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/051z6e826.json b/rc-v1.43-v2/updates/051z6e826.json new file mode 100644 index 000000000..9c1d9a88e --- /dev/null +++ b/rc-v1.43-v2/updates/051z6e826.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2001, + "external_ids": [ + { + "all": [ + "100012088" + ], + "preferred": "100012088", + "type": "fundref" + }, + { + "all": [ + "grid.497360.f" + ], + "preferred": "grid.497360.f", + "type": "grid" + }, + { + "all": [ + "0000 0004 6425 8422" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/051z6e826", + "links": [ + { + "type": "website", + "value": "https://www.arcadiafund.org.uk/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Arcadia Fund" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Lisbet Rausing Charitable Fund" + } + ], + "relationships": [ + { + "label": "Lund Trust", + "type": "related", + "id": "https://ror.org/017d4c820" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/052133d12.json b/rc-v1.43-v2/updates/052133d12.json new file mode 100644 index 000000000..aedba57c1 --- /dev/null +++ b/rc-v1.43-v2/updates/052133d12.json @@ -0,0 +1,86 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1902, + "external_ids": [ + { + "all": [ + "grid.266471.0" + ], + "preferred": "grid.266471.0", + "type": "grid" + }, + { + "all": [ + "0000 0004 0413 3513" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7895554" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/052133d12", + "links": [ + { + "type": "website", + "value": "http://www.uindy.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Indianapolis" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.76838, + "lng": -86.15804, + "name": "Indianapolis" + }, + "geonames_id": 4259418 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Indianapolis" + } + ], + "relationships": [ + { + "label": "Indiana University Hospital", + "type": "related", + "id": "https://ror.org/05rbkcx47" + }, + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/052g8jq94.json b/rc-v1.43-v2/updates/052g8jq94.json new file mode 100644 index 000000000..be3a7cfe2 --- /dev/null +++ b/rc-v1.43-v2/updates/052g8jq94.json @@ -0,0 +1,239 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1968, + "external_ids": [ + { + "all": [ + "0000 0001 2296 0625", + "0000 0001 2097 0205" + ], + "preferred": "0000 0001 2296 0625", + "type": "isni" + }, + { + "all": [ + "501100011104" + ], + "preferred": "501100011104", + "type": "fundref" + }, + { + "all": [ + "Q43452" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.7080.f" + ], + "preferred": "grid.7080.f", + "type": "grid" + } + ], + "id": "https://ror.org/052g8jq94", + "links": [ + { + "type": "website", + "value": "https://www.uab.cat" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Autonomous_University_of_Barcelona" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.49109, + "lng": 2.14079, + "name": "Cerdanyola del Vallès" + }, + "geonames_id": 3109402 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Universitat Autònoma de Barcelona" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Autónoma de Barcelona" + }, + { + "lang": "eu", + "types": [ + "label" + ], + "value": "Bartzelonako Unibertsitate Autonomoa" + }, + { + "lang": "gl", + "types": [ + "label" + ], + "value": "Universidade Autónoma de Barcelona" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Autonomous University of Barcelona" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UAB" + } + ], + "relationships": [ + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "related", + "id": "https://ror.org/03abrgd14" + }, + { + "label": "Hospital Universitari Germans Trias i Pujol", + "type": "related", + "id": "https://ror.org/04wxdxa47" + }, + { + "label": "Barcelona School of Economics", + "type": "related", + "id": "https://ror.org/02k09n368" + }, + { + "label": "Centre de Recerca Matemàtica", + "type": "related", + "id": "https://ror.org/020s51w82" + }, + { + "label": "Computer Vision Center", + "type": "related", + "id": "https://ror.org/00s0nnj93" + }, + { + "label": "Centre for Demographic Studies", + "type": "related", + "id": "https://ror.org/02dm87055" + }, + { + "label": "Institut Universitari d'Investigació en Atenció Primària Jordi Gol", + "type": "related", + "id": "https://ror.org/0370bpp07" + }, + { + "label": "Puigvert Foundation", + "type": "related", + "id": "https://ror.org/03qwx2883" + }, + { + "label": "Fundació Salut i Envelliment UAB", + "type": "related", + "id": "https://ror.org/03c7e3050" + }, + { + "label": "Hospital del Mar Research Institute", + "type": "related", + "id": "https://ror.org/042nkmz09" + }, + { + "label": "Institut Barcelona d'Estudis Internacionals", + "type": "related", + "id": "https://ror.org/05rke5d69" + }, + { + "label": "Institut Català de Paleontologia Miquel Crusafont", + "type": "related", + "id": "https://ror.org/04qeh2h86" + }, + { + "label": "Institut Català d'Oncologia", + "type": "related", + "id": "https://ror.org/01j1eb875" + }, + { + "label": "Institut de Recerca Sant Pau", + "type": "related", + "id": "https://ror.org/005teat46" + }, + { + "label": "Vall d'Hebron Institut de Recerca", + "type": "related", + "id": "https://ror.org/01d5vx451" + }, + { + "label": "Institut d'Estudis Espacials de Catalunya", + "type": "related", + "id": "https://ror.org/00k6njn28" + }, + { + "label": "Institut d'Investigació en Ciències de la Salut Germans Trias i Pujol", + "type": "related", + "id": "https://ror.org/03bzdww12" + }, + { + "label": "Institute of Research and Innovation Parc Tauli", + "type": "related", + "id": "https://ror.org/038c0gc18" + }, + { + "label": "Centre Tecnològic Forestal de Catalunya", + "type": "related", + "id": "https://ror.org/02tt2zf29" + }, + { + "label": "Vall d'Hebron Institute of Oncology", + "type": "related", + "id": "https://ror.org/054xx3904" + }, + { + "label": "IrsiCaixa", + "type": "related", + "id": "https://ror.org/001synm23" + }, + { + "label": "Institute for High Energy Physics", + "type": "related", + "id": "https://ror.org/01sdrjx85" + }, + { + "label": "Center for Research in Agricultural Genomics", + "type": "child", + "id": "https://ror.org/04tz2h245" + }, + { + "label": "Institut Català de Nanociència i Nanotecnologia", + "type": "child", + "id": "https://ror.org/00k1qja49" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/052gp0981.json b/rc-v1.43-v2/updates/052gp0981.json new file mode 100644 index 000000000..248ee9df4 --- /dev/null +++ b/rc-v1.43-v2/updates/052gp0981.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1967, + "external_ids": [ + { + "all": [ + "501100007459" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.480944.5" + ], + "preferred": "grid.480944.5", + "type": "grid" + } + ], + "id": "https://ror.org/052gp0981", + "links": [ + { + "type": "website", + "value": "https://www.msif.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Multiple_Sclerosis_International_Federation" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MSIF" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Multiple Sclerosis International Federation" + } + ], + "relationships": [ + { + "label": "International Progressive MS Alliance", + "type": "child", + "id": "https://ror.org/04hh1k009" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/052ss8w32.json b/rc-v1.43-v2/updates/052ss8w32.json new file mode 100644 index 000000000..69bdfcda9 --- /dev/null +++ b/rc-v1.43-v2/updates/052ss8w32.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2306104, + "geonames_details": { + "country_code": "GH", + "country_name": "Ghana", + "lat": 5.55602, + "lng": -0.1969, + "name": "Accra" + } + } + ], + "established": 1993, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0582 2706" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5555350" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434994.7" + ], + "preferred": "grid.434994.7" + } + ], + "id": "https://ror.org/052ss8w32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ghs.gov.gh" + } + ], + "names": [ + { + "value": "Ghana Health Service", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ghanaian Health Service", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "GHS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ministry of Health", + "type": "parent", + "id": "https://ror.org/05c7h4935" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/053jm8142.json b/rc-v1.43-v2/updates/053jm8142.json new file mode 100644 index 000000000..842c80b3c --- /dev/null +++ b/rc-v1.43-v2/updates/053jm8142.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 5015701, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.81252, + "lng": -86.01865, + "name": "Zeeland" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.492550.f" + ], + "preferred": "grid.492550.f" + } + ], + "id": "https://ror.org/053jm8142", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.spectrumhealth.org/locations/spectrum-health-zeeland-community-hospital" + } + ], + "names": [ + { + "value": "Corewell Health Zeeland Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Zeeland Community Hospital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/053xt2a19.json b/rc-v1.43-v2/updates/053xt2a19.json new file mode 100644 index 000000000..7dd4ce959 --- /dev/null +++ b/rc-v1.43-v2/updates/053xt2a19.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2007, + "external_ids": [ + { + "all": [ + "100010088" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.480804.0" + ], + "preferred": "grid.480804.0", + "type": "grid" + }, + { + "all": [ + "0000 0004 4679 6200" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q22312909" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/053xt2a19", + "links": [ + { + "type": "website", + "value": "http://www.lidc.org.uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/London_International_Development_Centre" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LIDC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "London International Development Centre" + } + ], + "relationships": [ + { + "label": "Leverhulme Centre for Integrative Research on Agriculture and Health", + "type": "child", + "id": "https://ror.org/041qq2t66" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/054225q67.json b/rc-v1.43-v2/updates/054225q67.json new file mode 100644 index 000000000..3cb537c6d --- /dev/null +++ b/rc-v1.43-v2/updates/054225q67.json @@ -0,0 +1,140 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2002, + "external_ids": [ + { + "all": [ + "501100000289" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.11485.39" + ], + "preferred": "grid.11485.39", + "type": "grid" + }, + { + "all": [ + "0000 0004 0422 0975" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q326079" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/054225q67", + "links": [ + { + "type": "website", + "value": "http://www.cancerresearchuk.org/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Cancer_Research_UK" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CRUK" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Cancer Research UK" + } + ], + "relationships": [ + { + "label": "CRUK/MRC Oxford Institute for Radiation Oncology", + "type": "child", + "id": "https://ror.org/011hz4254" + }, + { + "label": "The Beatson Institute for Cancer Research", + "type": "child", + "id": "https://ror.org/03pv69j64" + }, + { + "label": "Cancer Research UK Cambridge Center", + "type": "child", + "id": "https://ror.org/0068m0j38" + }, + { + "label": "Cancer Research UK Clinical Trials Unit", + "type": "child", + "id": "https://ror.org/03qxptw71" + }, + { + "label": "Edinburgh Cancer Research", + "type": "child", + "id": "https://ror.org/05a7t9b67" + }, + { + "label": "Cancer Research UK Manchester Institute", + "type": "child", + "id": "https://ror.org/037405c78" + }, + { + "label": "Cancer Research UK Oxford Centre", + "type": "child", + "id": "https://ror.org/05kgg0s20" + }, + { + "label": "Cancer Research UK Technology", + "type": "child", + "id": "https://ror.org/02twrxy18" + }, + { + "label": "Wellcome/Cancer Research UK Gurdon Institute", + "type": "child", + "id": "https://ror.org/00fp3ce15" + }, + { + "label": "Cancer Research UK Manchester Centre", + "type": "child", + "id": "https://ror.org/033svsm10" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/054a6d704.json b/rc-v1.43-v2/updates/054a6d704.json new file mode 100644 index 000000000..810200296 --- /dev/null +++ b/rc-v1.43-v2/updates/054a6d704.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1960 2720" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1436777" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.425604.1" + ], + "preferred": "grid.425604.1" + } + ], + "id": "https://ror.org/054a6d704", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.sepi.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Sociedad_Estatal_de_Participaciones_Industriales" + } + ], + "names": [ + { + "value": "Sociedad Estatal de Participaciones Industriales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SEPI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/054wajj09.json b/rc-v1.43-v2/updates/054wajj09.json new file mode 100644 index 000000000..880254dc9 --- /dev/null +++ b/rc-v1.43-v2/updates/054wajj09.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1897, + "external_ids": [ + { + "all": [ + "grid.431789.0" + ], + "preferred": "grid.431789.0", + "type": "grid" + }, + { + "all": [ + "0000 0004 0412 9856" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5945524" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/054wajj09", + "links": [ + { + "type": "website", + "value": "https://www.huntington.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Huntington_University_(United_States)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.8831, + "lng": -85.49748, + "name": "Huntington" + }, + "geonames_id": 4921725 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Huntington University" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05591te55.json b/rc-v1.43-v2/updates/05591te55.json new file mode 100644 index 000000000..963f9c007 --- /dev/null +++ b/rc-v1.43-v2/updates/05591te55.json @@ -0,0 +1,150 @@ +{ + "locations": [ + { + "geonames_id": 2867714, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.13743, + "lng": 11.57549, + "name": "Munich" + } + } + ], + "established": 1472, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1936 973X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100005722", + "501100006192", + "501100009401" + ], + "preferred": "501100005722" + }, + { + "type": "wikidata", + "all": [ + "Q55044" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5252.0" + ], + "preferred": "grid.5252.0" + } + ], + "id": "https://ror.org/05591te55", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lmu.de" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Ludwig_Maximilian_University_of_Munich" + } + ], + "names": [ + { + "value": "Ludwig-Maximilians-Universität München", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Munich", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universität München", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ludwig Maximilian University of Munich", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ludwig-Maximilians-Universität in Munich", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LMU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "LMU Klinikum", + "type": "related", + "id": "https://ror.org/02jet3w32" + }, + { + "label": "Centre for Advanced Laser Applications", + "type": "child", + "id": "https://ror.org/04j4kfb22" + }, + { + "label": "Ifo Institute for Economic Research", + "type": "child", + "id": "https://ror.org/045495t75" + }, + { + "label": "Center for Integrated Protein Science Munich", + "type": "child", + "id": "https://ror.org/032hzb643" + }, + { + "label": "Center for NanoScience", + "type": "child", + "id": "https://ror.org/002epp671" + }, + { + "label": "Munich Cluster for Systems Neurology", + "type": "child", + "id": "https://ror.org/025z3z560" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/055s8hs34.json b/rc-v1.43-v2/updates/055s8hs34.json new file mode 100644 index 000000000..941104cb1 --- /dev/null +++ b/rc-v1.43-v2/updates/055s8hs34.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 2968705, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.7939, + "lng": 2.35992, + "name": "Villejuif" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0480 0128" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.493856.5" + ], + "preferred": "grid.493856.5" + } + ], + "id": "https://ror.org/055s8hs34", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gustaveroussy.fr/en/content/umr-8200-0" + } + ], + "names": [ + { + "value": "Stabilité génétique et oncogenèse", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Genetic Stability and Oncogenesis", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Délégation Ile-de-France Villejuif", + "type": "parent", + "id": "https://ror.org/008kn4z11" + }, + { + "label": "Délégation Paris-Villejuif-03", + "type": "parent", + "id": "https://ror.org/007x3c094" + }, + { + "label": "Institut Gustave Roussy", + "type": "parent", + "id": "https://ror.org/0321g0743" + }, + { + "label": "University of Paris-Sud", + "type": "parent", + "id": "https://ror.org/028rypz17" + } + ], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0561n6946.json b/rc-v1.43-v2/updates/0561n6946.json new file mode 100644 index 000000000..55d196fe2 --- /dev/null +++ b/rc-v1.43-v2/updates/0561n6946.json @@ -0,0 +1,122 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1866, + "external_ids": [ + { + "all": [ + "501100006476" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.418333.e" + ], + "preferred": "grid.418333.e", + "type": "grid" + }, + { + "all": [ + "0000 0004 1937 1389" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q901677", + "Q10302891", + "Q26690209", + "Q39418041" + ], + "preferred": "Q901677", + "type": "wikidata" + } + ], + "id": "https://ror.org/0561n6946", + "links": [ + { + "type": "website", + "value": "http://www.academiaromana.ro/def2002eng.htm" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Romanian_Academy" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "RO", + "country_name": "Romania", + "lat": 44.43225, + "lng": 26.10626, + "name": "Bucharest" + }, + "geonames_id": 683506 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Academia Română" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Romanian Academy" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Societatea Academică Romînă" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Societatea Literară Română" + } + ], + "relationships": [ + { + "label": "Institutul National de Cercetari Economice \"Costin C. Kiritescu\"", + "type": "child", + "id": "https://ror.org/04kddtt70" + }, + { + "label": "Institutul de Chimie Macromoleculară Petru Poni", + "type": "child", + "id": "https://ror.org/0340mea86" + }, + { + "label": "Institutul de Studii Sud-Est Europene", + "type": "child", + "id": "https://ror.org/007bytg49" + } + ], + "status": "active", + "types": [ + "archive" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0566sj483.json b/rc-v1.43-v2/updates/0566sj483.json new file mode 100644 index 000000000..ca148b124 --- /dev/null +++ b/rc-v1.43-v2/updates/0566sj483.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1847, + "external_ids": [ + { + "all": [ + "grid.255360.7" + ], + "preferred": "grid.255360.7", + "type": "grid" + }, + { + "all": [ + "0000 0001 1960 0522" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5326502" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/0566sj483", + "links": [ + { + "type": "website", + "value": "http://www.earlham.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Earlham_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.82894, + "lng": -84.89024, + "name": "Richmond" + }, + "geonames_id": 4263681 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Earlham College" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05691ev83.json b/rc-v1.43-v2/updates/05691ev83.json new file mode 100644 index 000000000..0b08acccd --- /dev/null +++ b/rc-v1.43-v2/updates/05691ev83.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 5391959, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.77493, + "lng": -122.41942, + "name": "San Francisco" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6073 3003" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30257865" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.446377.5" + ], + "preferred": "grid.446377.5" + } + ], + "id": "https://ror.org/05691ev83", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://alexandriaarchive.org/" + } + ], + "names": [ + { + "value": "Alexandria Archive Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Open Context", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OpenContext", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OpenContext.org", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "AAI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/056vjed89.json b/rc-v1.43-v2/updates/056vjed89.json new file mode 100644 index 000000000..cf846f1fe --- /dev/null +++ b/rc-v1.43-v2/updates/056vjed89.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3114472, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.81687, + "lng": -1.64323, + "name": "Pamplona" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4687 7107" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.424804.e" + ], + "preferred": "grid.424804.e" + } + ], + "id": "https://ror.org/056vjed89", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cemitec.com/" + } + ], + "names": [ + { + "value": "Centro Multidisciplinar de Tecnologías para la Industria", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Cetena Foundation´s Multidisciplinary Innovation and Technology Centre of Navarre", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CEMITEC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0576by029.json b/rc-v1.43-v2/updates/0576by029.json new file mode 100644 index 000000000..2e22ced2e --- /dev/null +++ b/rc-v1.43-v2/updates/0576by029.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 265243, + "geonames_details": { + "country_code": "GR", + "country_name": "Greece", + "lat": 38.05, + "lng": 23.8, + "name": "Marousi" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0393 5688" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.19843.37" + ], + "preferred": "grid.19843.37" + } + ], + "id": "https://ror.org/0576by029", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.athena-innovation.gr/el/announce/pressreleases.html" + } + ], + "names": [ + { + "value": "Athena Research and Innovation Center In Information Communication & Knowledge Technologies", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Athena RIC", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Athena Research and Innovation Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Athena Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Athena RC", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/057yy7z71.json b/rc-v1.43-v2/updates/057yy7z71.json new file mode 100644 index 000000000..73bdf51d7 --- /dev/null +++ b/rc-v1.43-v2/updates/057yy7z71.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1958, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0496 3568" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30291296" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.437178.e" + ], + "preferred": "grid.437178.e" + } + ], + "id": "https://ror.org/057yy7z71", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ramem.com/" + } + ], + "names": [ + { + "value": "Ramem (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Arquimea (Spain)", + "type": "successor", + "id": "https://ror.org/04mnaqe33" + } + ], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/0589k3111.json b/rc-v1.43-v2/updates/0589k3111.json new file mode 100644 index 000000000..59a21e138 --- /dev/null +++ b/rc-v1.43-v2/updates/0589k3111.json @@ -0,0 +1,97 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30299499" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457369.a" + ], + "preferred": "grid.457369.a" + } + ], + "id": "https://ror.org/0589k3111", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.idf.inserm.fr/rubriques/l-inserm-en-ile-de-france/delegation-paris-11" + } + ], + "names": [ + { + "value": "Délégation Paris 11", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DR PARIS 11", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Centre d'Épidémiologie sur les Causes Médicales de Décès", + "type": "child", + "id": "https://ror.org/02bn1dj67" + }, + { + "label": "Hémostase et Dynamique Cellulaire Vasculaire", + "type": "child", + "id": "https://ror.org/05dsek450" + }, + { + "label": "Institute of Psychiatry and Neuroscience of Paris", + "type": "child", + "id": "https://ror.org/02g40zn06" + }, + { + "label": "Laboratory Signaling and Cardiovascular Pathophysiology", + "type": "child", + "id": "https://ror.org/04bkzce69" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/058cmwb06.json b/rc-v1.43-v2/updates/058cmwb06.json new file mode 100644 index 000000000..750ef23b9 --- /dev/null +++ b/rc-v1.43-v2/updates/058cmwb06.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1938, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0132 5286" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1750397" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.426205.7" + ], + "preferred": "grid.426205.7" + } + ], + "id": "https://ror.org/058cmwb06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.once.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ONCE" + } + ], + "names": [ + { + "value": "Organización Nacional de Ciegos Españoles", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Organization of Spanish blind people", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ONCE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/058sakv40.json b/rc-v1.43-v2/updates/058sakv40.json new file mode 100644 index 000000000..b8f088b17 --- /dev/null +++ b/rc-v1.43-v2/updates/058sakv40.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 5012521, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.13949, + "lng": -83.17826, + "name": "Trenton" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0458 375X" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.416679.b" + ], + "preferred": "grid.416679.b" + } + ], + "id": "https://ror.org/058sakv40", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/locations/beaumont-hospital-trenton" + } + ], + "names": [ + { + "value": "Corewell Health William Beaumont University Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Oakwood Southshore Medical Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Beaumont Hospital, Trenton", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/059gc9s81.json b/rc-v1.43-v2/updates/059gc9s81.json new file mode 100644 index 000000000..9692a1120 --- /dev/null +++ b/rc-v1.43-v2/updates/059gc9s81.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1973, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4679 2779" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.473816.f" + ], + "preferred": "grid.473816.f" + } + ], + "id": "https://ror.org/059gc9s81", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://gcm.unu.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/United_Nations_University" + } + ], + "names": [ + { + "value": "United Nations University Institute on Globalization, Culture and Mobility", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "UNU-GCM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United Nations University", + "type": "parent", + "id": "https://ror.org/01cdrde68" + } + ], + "status": "inactive", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/059zf1d45.json b/rc-v1.43-v2/updates/059zf1d45.json new file mode 100644 index 000000000..1c5a387b9 --- /dev/null +++ b/rc-v1.43-v2/updates/059zf1d45.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 6356153, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.55222, + "lng": 2.20901, + "name": "Mollet del Vallès" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0507 1975" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434941.f" + ], + "preferred": "grid.434941.f" + } + ], + "id": "https://ror.org/059zf1d45", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.iuct.com/en/" + } + ], + "names": [ + { + "value": "Institut Universitari de Ciencia i Tecnologia (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IUCT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05a0dhs15.json b/rc-v1.43-v2/updates/05a0dhs15.json new file mode 100644 index 000000000..d986de90d --- /dev/null +++ b/rc-v1.43-v2/updates/05a0dhs15.json @@ -0,0 +1,309 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1794, + "external_ids": [ + { + "all": [ + "0000 0001 2353 2622" + ], + "preferred": "0000 0001 2353 2622", + "type": "isni" + }, + { + "all": [ + "100007649" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q83259" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.5607.4" + ], + "preferred": "grid.5607.4", + "type": "grid" + } + ], + "id": "https://ror.org/05a0dhs15", + "links": [ + { + "type": "website", + "value": "https://www.ens.psl.eu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/%C3%89cole_Normale_Sup%C3%A9rieure" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "École Normale Supérieure - PSL" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Normale sup" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "ENS Paris" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ENS" + } + ], + "relationships": [ + { + "label": "Archéologie et Philologie d’Orient et d’Occident", + "type": "child", + "id": "https://ror.org/05nsvn336" + }, + { + "label": "Centre Maurice-Halbwachs", + "type": "child", + "id": "https://ror.org/01paa1e42" + }, + { + "label": "Centre de Théorie et Analyse du Droit", + "type": "child", + "id": "https://ror.org/04bg5j190" + }, + { + "label": "Cereep Ecotron Île-de-France", + "type": "child", + "id": "https://ror.org/05j6qf006" + }, + { + "label": "Département de mathématiques et applications", + "type": "child", + "id": "https://ror.org/03k9z2963" + }, + { + "label": "Département d'Informatique", + "type": "child", + "id": "https://ror.org/05y6rqs46" + }, + { + "label": "Institut Jean Nicod", + "type": "child", + "id": "https://ror.org/01qfab443" + }, + { + "label": "Institut d'Histoire Moderne et Contemporaine", + "type": "child", + "id": "https://ror.org/04795e365" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut des Textes et Manuscrits Modernes", + "type": "child", + "id": "https://ror.org/00x1d4q78" + }, + { + "label": "Institute for the History and Philosophy of Science and Technology", + "type": "child", + "id": "https://ror.org/02nnpw434" + }, + { + "label": "Laboratoire Kastler Brossel", + "type": "child", + "id": "https://ror.org/01h14ww21" + }, + { + "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 Sciences Cognitives et Psycholinguistique", + "type": "child", + "id": "https://ror.org/05fvhm231" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire des Systèmes Perceptifs", + "type": "child", + "id": "https://ror.org/030za3c40" + }, + { + "label": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Langues, Textes, Traitements Informatiques, Cognition", + "type": "child", + "id": "https://ror.org/03ms1y683" + }, + { + "label": "Pays Germaniques", + "type": "child", + "id": "https://ror.org/04f9rh541" + }, + { + "label": "Processus d'Activation Sélective par Transfert d'Énergie Uni-électronique ou Radiatif", + "type": "child", + "id": "https://ror.org/033t7vz72" + }, + { + "label": "Théorie et Histoire des Arts et des Littératures de la Modernité", + "type": "child", + "id": "https://ror.org/00ca65425" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Computationnelles", + "type": "child", + "id": "https://ror.org/01e8w0016" + }, + { + "label": "Relais d'information sur les sciences de la cognition", + "type": "child", + "id": "https://ror.org/04ved1v49" + }, + { + "label": "Centre d’Archives en Philosophie, Histoire et Édition des Sciences", + "type": "child", + "id": "https://ror.org/03j7mz841" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Fondation de l'Ecole Normale Superieure", + "type": "child", + "id": "https://ror.org/02fcsjn79" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Paris School of Economics", + "type": "child", + "id": "https://ror.org/01qtp1053" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05a0ya142.json b/rc-v1.43-v2/updates/05a0ya142.json new file mode 100644 index 000000000..3f5ce0343 --- /dev/null +++ b/rc-v1.43-v2/updates/05a0ya142.json @@ -0,0 +1,139 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2004, + "external_ids": [ + { + "all": [ + "100013114" + ], + "preferred": "100013114", + "type": "fundref" + }, + { + "all": [ + "grid.66859.34" + ], + "preferred": "grid.66859.34", + "type": "grid" + }, + { + "all": [ + "0000 0004 0546 1623" + ], + "preferred": "0000 0004 0546 1623", + "type": "isni" + }, + { + "all": [ + "Q4971893" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05a0ya142", + "links": [ + { + "type": "website", + "value": "http://www.broadinstitute.org/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Broad_Institute" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.3751, + "lng": -71.10561, + "name": "Cambridge" + }, + "geonames_id": 4931972 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Broad Institute" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Broad Institute of MIT and Harvard" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "El Instituto Broad" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Eli and Edythe L. Broad Institute of MIT and Harvard" + } + ], + "relationships": [ + { + "label": "Beth Israel Deaconess Medical Center", + "type": "related", + "id": "https://ror.org/04drvxt59" + }, + { + "label": "Boston Children's Hospital", + "type": "related", + "id": "https://ror.org/00dvg7y05" + }, + { + "label": "Brigham and Women's Hospital", + "type": "related", + "id": "https://ror.org/04b6nzv94" + }, + { + "label": "Harvard University", + "type": "related", + "id": "https://ror.org/03vek6s52" + }, + { + "label": "Massachusetts General Hospital", + "type": "related", + "id": "https://ror.org/002pd6e78" + }, + { + "label": "Massachusetts Institute of Technology", + "type": "related", + "id": "https://ror.org/042nb2s44" + }, + { + "label": "Stanley Center for Psychiatric Research", + "type": "child", + "id": "https://ror.org/01tm9b530" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05a28rw58.json b/rc-v1.43-v2/updates/05a28rw58.json new file mode 100644 index 000000000..23594541c --- /dev/null +++ b/rc-v1.43-v2/updates/05a28rw58.json @@ -0,0 +1,164 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1855, + "external_ids": [ + { + "all": [ + "501100003006", + "501100001710", + "501100003070" + ], + "preferred": "501100003006", + "type": "fundref" + }, + { + "all": [ + "grid.5801.c" + ], + "preferred": "grid.5801.c", + "type": "grid" + }, + { + "all": [ + "0000 0001 2156 2780" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q11942" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05a28rw58", + "links": [ + { + "type": "website", + "value": "https://ethz.ch" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/ETH_Zurich" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 47.36667, + "lng": 8.55, + "name": "Zurich" + }, + "geonames_id": 2657896 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "ETH Zurich" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "ETH Zurich" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "ETH Zürich" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "ETH di Zurigo" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Eidgenössische Technische Hochschule Zürich" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Politecnico Federale di Zurigo" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Swiss Federal Institute of Technology in Zurich" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "École Polytechnique Fédérale de Zurich" + } + ], + "relationships": [ + { + "label": "Institute for Biomedical Engineering", + "type": "child", + "id": "https://ror.org/00baskk38" + }, + { + "label": "Swiss Data Science Center", + "type": "child", + "id": "https://ror.org/02hdt9m26" + }, + { + "label": "CSCS - Swiss National Supercomputing Centre", + "type": "child", + "id": "https://ror.org/04rzmms09" + }, + { + "label": "Board of the Swiss Federal Institutes of Technology", + "type": "parent", + "id": "https://ror.org/01rvn4p91" + }, + { + "label": "ETH Zürich Foundation", + "type": "related", + "id": "https://ror.org/03nqkz164" + }, + { + "label": "NCCR SwissMAP", + "type": "child", + "id": "https://ror.org/00xzacp61" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05a4pj207.json b/rc-v1.43-v2/updates/05a4pj207.json new file mode 100644 index 000000000..5454425f7 --- /dev/null +++ b/rc-v1.43-v2/updates/05a4pj207.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1868, + "external_ids": [ + { + "all": [ + "100010962" + ], + "preferred": "100010962", + "type": "fundref" + }, + { + "all": [ + "grid.264266.2" + ], + "preferred": "grid.264266.2", + "type": "grid" + }, + { + "all": [ + "0000 0000 9340 0716" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7603623" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05a4pj207", + "links": [ + { + "type": "website", + "value": "http://www2.cortland.edu/home/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/State_University_of_New_York_at_Cortland" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.60118, + "lng": -76.18048, + "name": "Cortland" + }, + "geonames_id": 5113790 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "SUNY Cortland" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "State University of New York College at Cortland" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05bnh6r87.json b/rc-v1.43-v2/updates/05bnh6r87.json new file mode 100644 index 000000000..485c7a644 --- /dev/null +++ b/rc-v1.43-v2/updates/05bnh6r87.json @@ -0,0 +1,243 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1865, + "external_ids": [ + { + "all": [ + "100007231", + "100007604", + "100006480", + "100006077", + "100006471", + "100006923", + "100007272", + "100008586", + "100007232", + "100009083", + "100008674", + "100008585" + ], + "preferred": "100007231", + "type": "fundref" + }, + { + "all": [ + "grid.5386.8" + ], + "preferred": "grid.5386.8", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 877X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q49115" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05bnh6r87", + "links": [ + { + "type": "website", + "value": "http://www.cornell.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Cornell_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.44063, + "lng": -76.49661, + "name": "Ithaca" + }, + "geonames_id": 5122432 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Cornell University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Cornell" + } + ], + "relationships": [ + { + "label": "New York Sea Grant", + "type": "child", + "id": "https://ror.org/031m8s392" + }, + { + "label": "New York Space Grant Consortium", + "type": "child", + "id": "https://ror.org/03ycy6g75" + }, + { + "label": "New York State College of Agriculture & Life Sciences", + "type": "child", + "id": "https://ror.org/00j52pq61" + }, + { + "label": "New York State College of Veterinary Medicine", + "type": "child", + "id": "https://ror.org/04r17kf39" + }, + { + "label": "New York State School of Industrial and Labor Relations", + "type": "child", + "id": "https://ror.org/00zg6dt46" + }, + { + "label": "New York State University College of Human Ecology", + "type": "child", + "id": "https://ror.org/047g2xp14" + }, + { + "label": "Weill Cornell Medicine", + "type": "child", + "id": "https://ror.org/02r109517" + }, + { + "label": "Cornell Lab of Ornithology", + "type": "child", + "id": "https://ror.org/00k86w020" + }, + { + "label": "Cornell Atkinson Center for Sustainability", + "type": "child", + "id": "https://ror.org/03h0qhk21" + }, + { + "label": "PARADIM", + "type": "child", + "id": "https://ror.org/04pw1zg89" + }, + { + "label": "Burke Medical Research Institute", + "type": "related", + "id": "https://ror.org/02sp1z620" + }, + { + "label": "Burke Rehabilitation Hospital", + "type": "related", + "id": "https://ror.org/04dnsc767" + }, + { + "label": "Houston Methodist", + "type": "related", + "id": "https://ror.org/027zt9171" + }, + { + "label": "Lincoln Medical Center", + "type": "related", + "id": "https://ror.org/035a72598" + }, + { + "label": "Lower Manhattan Hospital", + "type": "related", + "id": "https://ror.org/01skxn174" + }, + { + "label": "Memorial Sloan Kettering Cancer Center", + "type": "related", + "id": "https://ror.org/02yrq0923" + }, + { + "label": "Morgan Stanley Children's Hospital", + "type": "related", + "id": "https://ror.org/016m8pd54" + }, + { + "label": "Museum of the Earth", + "type": "related", + "id": "https://ror.org/03f91xw18" + }, + { + "label": "New York Hospital Queens", + "type": "related", + "id": "https://ror.org/01j17xg39" + }, + { + "label": "NewYork–Presbyterian Brooklyn Methodist Hospital", + "type": "related", + "id": "https://ror.org/04929s478" + }, + { + "label": "NewYork–Presbyterian Hospital", + "type": "related", + "id": "https://ror.org/03gzbrs57" + }, + { + "label": "The Rogosin Institute", + "type": "related", + "id": "https://ror.org/05dvpaj72" + }, + { + "label": "Weill Cornell Medical College in Qatar", + "type": "related", + "id": "https://ror.org/05v5hg569" + }, + { + "label": "Wyckoff Heights Medical Center", + "type": "related", + "id": "https://ror.org/00yzb1d91" + }, + { + "label": "Hubbard Brook Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/00mkh7345" + }, + { + "label": "Cornell University Agricultural Experiment Station", + "type": "child", + "id": "https://ror.org/012qsrr25" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05bvkb649.json b/rc-v1.43-v2/updates/05bvkb649.json new file mode 100644 index 000000000..144db293e --- /dev/null +++ b/rc-v1.43-v2/updates/05bvkb649.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3121881, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.36859, + "lng": -1.79622, + "name": "Hondarribia" + } + } + ], + "established": 1976, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0666 8923" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100019124" + ], + "preferred": "501100019124" + }, + { + "type": "grid", + "all": [ + "grid.484077.8" + ], + "preferred": "grid.484077.8" + } + ], + "id": "https://ror.org/05bvkb649", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gipuzkoa.eus" + } + ], + "names": [ + { + "value": "Diputación Foral de Gipuzkoa", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05c7h4935.json b/rc-v1.43-v2/updates/05c7h4935.json new file mode 100644 index 000000000..8de17abf0 --- /dev/null +++ b/rc-v1.43-v2/updates/05c7h4935.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 2306104, + "geonames_details": { + "country_code": "GH", + "country_name": "Ghana", + "lat": 5.55602, + "lng": -0.1969, + "name": "Accra" + } + } + ], + "established": 1957, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q6867086" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.415765.4" + ], + "preferred": "grid.415765.4" + }, + { + "type": "isni", + "all": [ + "0000 0001 0721 5002" + ], + "preferred": "0000 0001 0721 5002" + } + ], + "id": "https://ror.org/05c7h4935", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.moh.gov.gh" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Health_(Ghana)" + } + ], + "names": [ + { + "value": "Ministry of Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Health of Ghana", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ghanaian Ministry of Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MoH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ghana Health Service", + "type": "child", + "id": "https://ror.org/052ss8w32" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05c8abs18.json b/rc-v1.43-v2/updates/05c8abs18.json new file mode 100644 index 000000000..1470cd916 --- /dev/null +++ b/rc-v1.43-v2/updates/05c8abs18.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432388.6" + ], + "preferred": "grid.432388.6" + } + ], + "id": "https://ror.org/05c8abs18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.barcelonactiva.cat" + } + ], + "names": [ + { + "value": "Barcelona Activa", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05dnzrj50.json b/rc-v1.43-v2/updates/05dnzrj50.json new file mode 100644 index 000000000..ac63c6e8a --- /dev/null +++ b/rc-v1.43-v2/updates/05dnzrj50.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100013055" + ], + "preferred": "100013055" + } + ], + "id": "https://ror.org/05dnzrj50", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://science.osti.gov/bes/mse" + } + ], + "names": [ + { + "value": "Materials Sciences and Engineering Division", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Division of Materials Sciences and Engineering", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Materials Sciences and Engineering (MSE) Division", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DMSE", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "MSE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ames National Laboratory", + "type": "parent", + "id": "https://ror.org/041m9xr71" + }, + { + "label": "Office of Basic Energy Sciences", + "type": "successor", + "id": "https://ror.org/05mg91w61" + } + ], + "status": "withdrawn", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05dpfhh73.json b/rc-v1.43-v2/updates/05dpfhh73.json new file mode 100644 index 000000000..3a12ac9d2 --- /dev/null +++ b/rc-v1.43-v2/updates/05dpfhh73.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.464067.7" + ], + "preferred": "grid.464067.7" + } + ], + "id": "https://ror.org/05dpfhh73", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.scicf.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Interactions Cellulaires et Physiopathologie Hépathique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ICPH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05dr3r825.json b/rc-v1.43-v2/updates/05dr3r825.json new file mode 100644 index 000000000..584ff5bbc --- /dev/null +++ b/rc-v1.43-v2/updates/05dr3r825.json @@ -0,0 +1,93 @@ +{ + "locations": [ + { + "geonames_id": 2759794, + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 52.37403, + "lng": 4.88969, + "name": "Amsterdam" + } + } + ], + "established": 1926, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0501 3257" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006315", + "501100022115" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.454756.1" + ], + "preferred": "grid.454756.1" + } + ], + "id": "https://ror.org/05dr3r825", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.reumafonds.nl/" + } + ], + "names": [ + { + "value": "ReumaNederland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Reumafonds", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Dutch Arthritis Foundation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "DAF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05dy6wv04.json b/rc-v1.43-v2/updates/05dy6wv04.json new file mode 100644 index 000000000..1f717e57e --- /dev/null +++ b/rc-v1.43-v2/updates/05dy6wv04.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3024783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.80299, + "lng": 2.26692, + "name": "Clamart" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.503203.7" + ], + "preferred": "grid.503203.7" + } + ], + "id": "https://ror.org/05dy6wv04", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://umr996.inserm.fr/" + } + ], + "names": [ + { + "value": "Inflammation, Microbiome and Immunosurveillance", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Inflammation, Chemokines and Immunopathology", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05etxs293.json b/rc-v1.43-v2/updates/05etxs293.json new file mode 100644 index 000000000..7ff5c4472 --- /dev/null +++ b/rc-v1.43-v2/updates/05etxs293.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2002, + "external_ids": [ + { + "all": [ + "100011889" + ], + "preferred": "100011889", + "type": "fundref" + }, + { + "all": [ + "grid.18785.33" + ], + "preferred": "grid.18785.33", + "type": "grid" + }, + { + "all": [ + "0000 0004 1764 0696" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q652731" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05etxs293", + "links": [ + { + "type": "website", + "value": "http://www.diamond.ac.uk/Home.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Diamond_Light_Source" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.60928, + "lng": -1.24214, + "name": "Didcot" + }, + "geonames_id": 2651269 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Diamond Light Source" + } + ], + "relationships": [ + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05f82e368.json b/rc-v1.43-v2/updates/05f82e368.json new file mode 100644 index 000000000..ff0000ecd --- /dev/null +++ b/rc-v1.43-v2/updates/05f82e368.json @@ -0,0 +1,642 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7885 7602" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100021716" + ], + "preferred": "501100021716" + }, + { + "type": "wikidata", + "all": [ + "Q55849612" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.508487.6" + ], + "preferred": "grid.508487.6" + } + ], + "id": "https://ror.org/05f82e368", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://u-paris.fr/en" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Paris_(2019)" + } + ], + "names": [ + { + "value": "Université Paris Cité", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Paris", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université de Paris", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Hôpitaux Universitaires Paris-Ouest", + "type": "related", + "id": "https://ror.org/01v676463" + }, + { + "label": "Hôtel-Dieu de Paris", + "type": "related", + "id": "https://ror.org/03jmjy508" + }, + { + "label": "Institut de physique du globe de Paris", + "type": "related", + "id": "https://ror.org/004gzqz66" + }, + { + "label": "André Revuz Didactics Laboratory", + "type": "child", + "id": "https://ror.org/053p8kg34" + }, + { + "label": "Anthropology and History of the Ancient World", + "type": "child", + "id": "https://ror.org/04yavcg77" + }, + { + "label": "Astroparticle and Cosmology Laboratory", + "type": "child", + "id": "https://ror.org/03tnjrr49" + }, + { + "label": "Astrophysique, Instrumentation et Modélisation", + "type": "child", + "id": "https://ror.org/0015h8611" + }, + { + "label": "Biologie Intégrée du Globule Rouge", + "type": "child", + "id": "https://ror.org/048cbmc89" + }, + { + "label": "Bioscar", + "type": "child", + "id": "https://ror.org/01qdqrj31" + }, + { + "label": "Center for Research and Interdisciplinarity", + "type": "child", + "id": "https://ror.org/00zbj9525" + }, + { + "label": "Center for Research in Medicine, Science, Health, Mental Health and Society", + "type": "child", + "id": "https://ror.org/02v2jyq75" + }, + { + "label": "Center for Research on Inflammation", + "type": "child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Center for Social Studies on African, American and Asian Worlds", + "type": "child", + "id": "https://ror.org/03pnk9016" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Linguistique Inter-langues, de Lexicologie, de Linguistique Anglaise et de Corpus-Atelier de Recherche sur la Parole", + "type": "child", + "id": "https://ror.org/01y85ge33" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de Recherche sur les Liens Sociaux", + "type": "child", + "id": "https://ror.org/01wcaw014" + }, + { + "label": "Epigenetics and Cell Fate", + "type": "child", + "id": "https://ror.org/03dbsav41" + }, + { + "label": "Expression Génétique Microbienne", + "type": "child", + "id": "https://ror.org/05t5n2z26" + }, + { + "label": "Galaxies, Etoiles, Physique et Instrumentation", + "type": "child", + "id": "https://ror.org/01920cw75" + }, + { + "label": "Imagine Institute for Genetic Diseases", + "type": "child", + "id": "https://ror.org/05rq3rb55" + }, + { + "label": "Institut Cochin", + "type": "child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Jacques Monod", + "type": "child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut de Mathématiques de Jussieu-Paris Rive Gauche", + "type": "child", + "id": "https://ror.org/03fk87k11" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institute of Psychiatry and Neuroscience of Paris", + "type": "child", + "id": "https://ror.org/02g40zn06" + }, + { + "label": "Interfaces Traitements Organisation et Dynamique des Systèmes", + "type": "child", + "id": "https://ror.org/03edms940" + }, + { + "label": "International College of Territorial Sciences", + "type": "child", + "id": "https://ror.org/002t9r032" + }, + { + "label": "Laboratoire Dynamiques Sociales et Recomposition des Espaces", + "type": "child", + "id": "https://ror.org/045r56524" + }, + { + "label": "Laboratoire ICT", + "type": "child", + "id": "https://ror.org/04p7gsa29" + }, + { + "label": "Laboratoire Interdisciplinaire des Énergies de Demain", + "type": "child", + "id": "https://ror.org/00m43ek07" + }, + { + "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", + "type": "child", + "id": "https://ror.org/046cjf283" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Matière et Systèmes Complexes", + "type": "child", + "id": "https://ror.org/032w6q449" + }, + { + "label": "Laboratoire Vision Action Cognition", + "type": "child", + "id": "https://ror.org/03saykv37" + }, + { + "label": "Laboratoire d'Electrochimie Moléculaire", + "type": "child", + "id": "https://ror.org/03atapr58" + }, + { + "label": "Laboratoire de Chimie et Biochimie Pharmacologiques et Toxicologiques", + "type": "child", + "id": "https://ror.org/028qedy27" + }, + { + "label": "Laboratoire de Linguistique Formelle", + "type": "child", + "id": "https://ror.org/0223bz716" + }, + { + "label": "Laboratoire de Physique Nucléaire et de Hautes Énergies", + "type": "child", + "id": "https://ror.org/01hg8p552" + }, + { + "label": "Laboratory Materials and Quantum Phenomena", + "type": "child", + "id": "https://ror.org/02p3et738" + }, + { + "label": "Laboratory Orofacial Pathologies, Imaging and Biotherapies", + "type": "child", + "id": "https://ror.org/00kneq391" + }, + { + "label": "Laboratory Preuves, Programmes et Systèmes", + "type": "child", + "id": "https://ror.org/046p9e825" + }, + { + "label": "Laboratory Universe and Theories", + "type": "child", + "id": "https://ror.org/00bbtde36" + }, + { + "label": "Laboratory for Vascular Translational Science", + "type": "child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laboratory for the Psychology of Child Development and Education", + "type": "child", + "id": "https://ror.org/023kqz006" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Laboratory of Physical and Chemical Biology of Membrane Proteins", + "type": "child", + "id": "https://ror.org/03nr8xh07" + }, + { + "label": "Laboratoire d’études spatiales et d’instrumentation en astrophysique", + "type": "child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratory of Theoretical Biochemistry", + "type": "child", + "id": "https://ror.org/00nvjgv40" + }, + { + "label": "Institut Langevin", + "type": "child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Memory and Cognition Laboratory", + "type": "child", + "id": "https://ror.org/036ydxy43" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Mère et Enfant en Milieu Tropical", + "type": "child", + "id": "https://ror.org/00rd22143" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "Paris Biotech Santé", + "type": "child", + "id": "https://ror.org/05h9gyn11" + }, + { + "label": "Paris Cardiovascular Research Center", + "type": "child", + "id": "https://ror.org/03gvnh520" + }, + { + "label": "Pathologie et Virologie Moléculaire", + "type": "child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Physiopathologie et Epidémiologie des Maladies Respiratoires", + "type": "child", + "id": "https://ror.org/04n8sc212" + }, + { + "label": "Physique et Mécanique des Milieux Hétérogènes", + "type": "child", + "id": "https://ror.org/03kr50w79" + }, + { + "label": "Population and Development Center", + "type": "child", + "id": "https://ror.org/002yg6s88" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Research Institute on the Foundations of Computer Science", + "type": "child", + "id": "https://ror.org/02krdtz55" + }, + { + "label": "Sciences, Philosophie, Histoire", + "type": "child", + "id": "https://ror.org/05c9ks061" + }, + { + "label": "Skin Research Center", + "type": "child", + "id": "https://ror.org/0579jh693" + }, + { + "label": "The Centre for Studies on China, Korea and Japan", + "type": "child", + "id": "https://ror.org/02djzje70" + }, + { + "label": "Toxicology, Pharmacology and Cellular Signaling", + "type": "child", + "id": "https://ror.org/021ryxk89" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Éco-Anthropologie", + "type": "child", + "id": "https://ror.org/03x0yny97" + }, + { + "label": "Épidémiologie Clinique, Évaluation Économique Appliquées aux Populations Vulnérables", + "type": "child", + "id": "https://ror.org/02617e391" + }, + { + "label": "Histoire des Théories Linguistiques", + "type": "child", + "id": "https://ror.org/0546jt497" + }, + { + "label": "Réseau interdisciplinaire pour l’aménagement, l’observation et la cohésion des territoires européens", + "type": "child", + "id": "https://ror.org/036w0tz95" + }, + { + "label": "Mathématiques Appliquées à Paris 5", + "type": "child", + "id": "https://ror.org/04yrrdj53" + }, + { + "label": "NeuroDiderot", + "type": "child", + "id": "https://ror.org/014ndnr76" + }, + { + "label": "Centre d'Investigation Clinique de Vaccinologie Cochin-Pasteur", + "type": "child", + "id": "https://ror.org/01c1p7750" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Innovations Thérapeutiques en Hémostase", + "type": "child", + "id": "https://ror.org/02jp0cd74" + }, + { + "label": "Laboratoire de Recherche sur les Cultures Anglophones", + "type": "child", + "id": "https://ror.org/0057kwj95" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "HIPI - Human Immunology, Pathophysiology and Immunotherapy", + "type": "child", + "id": "https://ror.org/008e1sp22" + }, + { + "label": "Institut Droit et Santé", + "type": "child", + "id": "https://ror.org/01ddqfh11" + }, + { + "label": "Unité de Recherche en Biomatériaux Innovant et Interfaces", + "type": "child", + "id": "https://ror.org/01cht3g41" + }, + { + "label": "Optimisation Thérapeutique en Neuropsychopharmacologie", + "type": "child", + "id": "https://ror.org/05wzabs02" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Infection, Antimicrobials, Modelling, Evolution", + "type": "child", + "id": "https://ror.org/05hqep952" + }, + { + "label": "Institut de Recherche bio-Médicale et d'Epidémiologie du Sport", + "type": "child", + "id": "https://ror.org/00dgdgj39" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Integrative Neuroscience and Cognition Center", + "type": "child", + "id": "https://ror.org/02fgakj19" + }, + { + "label": "SPPIN - Saints-Pères Paris Institute for Neurosciences", + "type": "child", + "id": "https://ror.org/01a4enz31" + }, + { + "label": "Laboratoire de Psychologie et d’Ergonomie Appliquées", + "type": "child", + "id": "https://ror.org/0572pak88" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "Fédération de recherche en sciences mathématiques de Paris centre", + "type": "child", + "id": "https://ror.org/02jwwk370" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "PremUP", + "type": "child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "child", + "id": "https://ror.org/00ex3jm11" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05f8nen40.json b/rc-v1.43-v2/updates/05f8nen40.json new file mode 100644 index 000000000..c502db98d --- /dev/null +++ b/rc-v1.43-v2/updates/05f8nen40.json @@ -0,0 +1,65 @@ +{ + "locations": [ + { + "geonames_id": 2514256, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 36.72016, + "lng": -4.42034, + "name": "Málaga" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30284480" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423695.f" + ], + "preferred": "grid.423695.f" + } + ], + "id": "https://ror.org/05f8nen40", + "domains": [], + "links": [], + "names": [ + { + "value": "AT4 wireless (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Dekra (Germany)", + "type": "successor", + "id": "https://ror.org/02b3ny291" + } + ], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05fp9g671.json b/rc-v1.43-v2/updates/05fp9g671.json new file mode 100644 index 000000000..51760c258 --- /dev/null +++ b/rc-v1.43-v2/updates/05fp9g671.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 142358, + "geonames_details": { + "country_code": "IR", + "country_name": "Iran", + "lat": 36.69929, + "lng": 52.65011, + "name": "Bābolsar" + } + } + ], + "established": 1979, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9618 7703" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100016293" + ], + "preferred": "501100016293" + }, + { + "type": "wikidata", + "all": [ + "Q6672257" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.411622.2" + ], + "preferred": "grid.411622.2" + } + ], + "id": "https://ror.org/05fp9g671", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://umz.ac.ir" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Mazandaran" + } + ], + "names": [ + { + "value": "University of Mazandaran", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Reza Shah Kabir University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "دانشگاه مازندران", + "types": [ + "label" + ], + "lang": "fa" + }, + { + "value": "UMZ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05g2hd893.json b/rc-v1.43-v2/updates/05g2hd893.json new file mode 100644 index 000000000..405f8ff60 --- /dev/null +++ b/rc-v1.43-v2/updates/05g2hd893.json @@ -0,0 +1,140 @@ +{ + "locations": [ + { + "geonames_id": 5007804, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.48948, + "lng": -83.14465, + "name": "Royal Oak" + } + } + ], + "established": 1955, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0460 1081" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100007740" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q970220" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.461921.9" + ], + "preferred": "grid.461921.9" + } + ], + "id": "https://ror.org/05g2hd893", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.beaumont.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Beaumont_Health" + } + ], + "names": [ + { + "value": "Beaumont Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "William Beaumont Health System", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Michigan State University", + "type": "related", + "id": "https://ror.org/05hs6h993" + }, + { + "label": "Oakland University", + "type": "related", + "id": "https://ror.org/01ythxj32" + }, + { + "label": "University of Michigan–Ann Arbor", + "type": "related", + "id": "https://ror.org/00jmfr291" + }, + { + "label": "Wayne State University", + "type": "related", + "id": "https://ror.org/01070mq45" + }, + { + "label": "Corewell Health Children's", + "type": "child", + "id": "https://ror.org/03nr10290" + }, + { + "label": "Beaumont Hospital, Dearborn", + "type": "child", + "id": "https://ror.org/03x4pp342" + }, + { + "label": "Corewell Health William Beaumont University Hospital", + "type": "child", + "id": "https://ror.org/058sakv40" + }, + { + "label": "Beaumont Hospital, Royal Oak", + "type": "child", + "id": "https://ror.org/03artm726" + }, + { + "label": "Beaumont Hospital, Troy", + "type": "child", + "id": "https://ror.org/05x9ffc66" + }, + { + "label": "Corewell Health", + "type": "successor", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05gfswd81.json b/rc-v1.43-v2/updates/05gfswd81.json new file mode 100644 index 000000000..38549d902 --- /dev/null +++ b/rc-v1.43-v2/updates/05gfswd81.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2022-03-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-04-29", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2000, + "external_ids": [ + { + "all": [ + "0000 0004 0509 2792" + ], + "preferred": "0000 0004 0509 2792", + "type": "isni" + } + ], + "id": "https://ror.org/05gfswd81", + "links": [ + { + "type": "website", + "value": "https://www.irb.usi.ch/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.19278, + "lng": 9.01703, + "name": "Bellinzona" + }, + "geonames_id": 2661567 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IRB" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute for Research in Biomedicine" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Istituto di Ricerca in Biomedicina" + } + ], + "relationships": [ + { + "label": "Università della Svizzera italiana", + "type": "parent", + "id": "https://ror.org/03c4atk17" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05ghke119.json b/rc-v1.43-v2/updates/05ghke119.json new file mode 100644 index 000000000..3ca474b23 --- /dev/null +++ b/rc-v1.43-v2/updates/05ghke119.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2509954, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.47391, + "lng": -0.37966, + "name": "Valencia" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432460.7" + ], + "preferred": "grid.432460.7" + } + ], + "id": "https://ror.org/05ghke119", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.avep.es" + } + ], + "names": [ + { + "value": "Asociacion Valenciana de empresarios de plasticos", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AVEP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05gq3a412.json b/rc-v1.43-v2/updates/05gq3a412.json new file mode 100644 index 000000000..044568e6e --- /dev/null +++ b/rc-v1.43-v2/updates/05gq3a412.json @@ -0,0 +1,97 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1855, + "external_ids": [ + { + "all": [ + "100002146", + "100006354" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.253419.8" + ], + "preferred": "grid.253419.8", + "type": "grid" + }, + { + "all": [ + "0000 0000 8596 9494", + "0000 0004 1936 8286" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1017974" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05gq3a412", + "links": [ + { + "type": "website", + "value": "https://www.butler.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Butler_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.76838, + "lng": -86.15804, + "name": "Indianapolis" + }, + "geonames_id": 4259418 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Butler University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Butler" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05h7ddb14.json b/rc-v1.43-v2/updates/05h7ddb14.json new file mode 100644 index 000000000..31c7ddd87 --- /dev/null +++ b/rc-v1.43-v2/updates/05h7ddb14.json @@ -0,0 +1,97 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0598 8468" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "grid.464124.1" + ], + "preferred": "grid.464124.1", + "type": "grid" + } + ], + "id": "https://ror.org/05h7ddb14", + "links": [ + { + "type": "website", + "value": "https://www6.montpellier.inrae.fr/cbgp_eng/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Centre de Biologie et de Gestion des Populations" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CBGP" + } + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Département Environnement et Agronomie", + "type": "parent", + "id": "https://ror.org/01e7wth34" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05he0t313.json b/rc-v1.43-v2/updates/05he0t313.json new file mode 100644 index 000000000..5854cd949 --- /dev/null +++ b/rc-v1.43-v2/updates/05he0t313.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 3096880, + "geonames_details": { + "country_code": "PL", + "country_name": "Poland", + "lat": 51.76109, + "lng": 18.09102, + "name": "Kalisz" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0054 1382" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.467042.3" + ], + "preferred": "grid.467042.3" + }, + { + "type": "wikidata", + "all": [ + "Q11815238" + ], + "preferred": "Q11815238" + } + ], + "id": "https://ror.org/05he0t313", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uniwersytetkaliski.edu.pl" + } + ], + "names": [ + { + "value": "Uniwersytet Kaliski im. Prezydenta Stanisława Wojciechowskiego", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Uniwersytet Kaliski", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Państwowa Wyższa Szkoła Zawodowa w Kaliszu", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PWSZ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05hqvvq43.json b/rc-v1.43-v2/updates/05hqvvq43.json new file mode 100644 index 000000000..088630e7f --- /dev/null +++ b/rc-v1.43-v2/updates/05hqvvq43.json @@ -0,0 +1,80 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-08-30", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.451269.d" + ], + "preferred": "grid.451269.d", + "type": "grid" + }, + { + "all": [ + "0000 0004 0607 6102" + ], + "preferred": "0000 0004 0607 6102", + "type": "isni" + } + ], + "id": "https://ror.org/05hqvvq43", + "links": [ + { + "type": "website", + "value": "http://www.gov.nt.ca/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 62.45411, + "lng": -114.37248, + "name": "Yellowknife" + }, + "geonames_id": 6185377 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Government of Northwest Territories" + } + ], + "relationships": [ + { + "label": "Industry, Tourism and Investment", + "type": "child", + "id": "https://ror.org/03b8sbf49" + }, + { + "label": "Northwest Territories Department of Environment and Natural Resources", + "type": "child", + "id": "https://ror.org/046hez538" + }, + { + "label": "Institut de tourisme et d'hôtellerie du Québec", + "type": "child", + "id": "https://ror.org/02w3bnx54" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05hs6h993.json b/rc-v1.43-v2/updates/05hs6h993.json new file mode 100644 index 000000000..326d5988c --- /dev/null +++ b/rc-v1.43-v2/updates/05hs6h993.json @@ -0,0 +1,194 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1855, + "external_ids": [ + { + "all": [ + "0000 0001 2195 6501", + "0000 0004 1375 3642" + ], + "preferred": "0000 0001 2195 6501", + "type": "isni" + }, + { + "all": [ + "100007709", + "100006534", + "100007508", + "100010507", + "100010518", + "100010603", + "100011138", + "100009585", + "100008425", + "100008587", + "100015893", + "100015892" + ], + "preferred": "100007709", + "type": "fundref" + }, + { + "all": [ + "Q270222" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.17088.36" + ], + "preferred": "grid.17088.36", + "type": "grid" + } + ], + "id": "https://ror.org/05hs6h993", + "links": [ + { + "type": "website", + "value": "https://msu.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Michigan_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.73698, + "lng": -84.48387, + "name": "East Lansing" + }, + "geonames_id": 4991640 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Michigan State University" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État du michigan" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MSU" + } + ], + "relationships": [ + { + "label": "Borgess Medical Center", + "type": "related", + "id": "https://ror.org/03964hc96" + }, + { + "label": "Botsford Hospital", + "type": "related", + "id": "https://ror.org/050qpjf10" + }, + { + "label": "Bronson Methodist Hospital", + "type": "related", + "id": "https://ror.org/032zc6m47" + }, + { + "label": "Corewell Health Butterworth Hospital", + "type": "related", + "id": "https://ror.org/05x643e19" + }, + { + "label": "Genesys Regional Medical Center", + "type": "related", + "id": "https://ror.org/03snrmr61" + }, + { + "label": "Hurley Medical Center", + "type": "related", + "id": "https://ror.org/034npj057" + }, + { + "label": "Marquette General Hospital", + "type": "related", + "id": "https://ror.org/01aj5dy09" + }, + { + "label": "McLaren Greater Lansing", + "type": "related", + "id": "https://ror.org/045zcth28" + }, + { + "label": "Munson Medical Center", + "type": "related", + "id": "https://ror.org/005qzv038" + }, + { + "label": "Sparrow Hospital", + "type": "related", + "id": "https://ror.org/018dx8725" + }, + { + "label": "Corewell Health Blodgett Hospital", + "type": "related", + "id": "https://ror.org/00qy68j92" + }, + { + "label": "McLaren Regional Medical Center", + "type": "child", + "id": "https://ror.org/01cpcy908" + }, + { + "label": "Michigan Sea Grant", + "type": "child", + "id": "https://ror.org/015tnsz82" + }, + { + "label": "National Superconducting Cyclotron Laboratory", + "type": "child", + "id": "https://ror.org/00qerpb33" + }, + { + "label": "Kellogg Biological Station Long Term Ecological Research", + "type": "child", + "id": "https://ror.org/02vkce854" + }, + { + "label": "Facility for Rare Isotope Beams", + "type": "child", + "id": "https://ror.org/03r4g9w46" + }, + { + "label": "Henry Ford Health + Michigan State University Health Sciences", + "type": "child", + "id": "https://ror.org/0599cab37" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05hv77153.json b/rc-v1.43-v2/updates/05hv77153.json new file mode 100644 index 000000000..9b71b0af9 --- /dev/null +++ b/rc-v1.43-v2/updates/05hv77153.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 6174041, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 48.4359, + "lng": -123.35155, + "name": "Victoria" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0707 3462" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100002759" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.468004.e" + ], + "preferred": "grid.468004.e" + }, + { + "type": "wikidata", + "all": [ + "Q30264305" + ], + "preferred": "Q30264305" + } + ], + "id": "https://ror.org/05hv77153", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www2.gov.bc.ca/gov/content/governments/organizational-structure/ministries-organizations/ministries/education" + } + ], + "names": [ + { + "value": "Ministry of Education and Child Care", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "British Columbia Ministry of Education and Child Care", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BC Ministry of Education and Child Care", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "British Columbia Ministry of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BC Ministry of Education", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05j5g1b69.json b/rc-v1.43-v2/updates/05j5g1b69.json new file mode 100644 index 000000000..5e12eca79 --- /dev/null +++ b/rc-v1.43-v2/updates/05j5g1b69.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 2653822, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.48, + "lng": -3.18, + "name": "Cardiff" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q29025663" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.500780.a" + ], + "preferred": "grid.500780.a" + } + ], + "id": "https://ror.org/05j5g1b69", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://ppiw.org.uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Public_Policy_Institute_for_Wales" + } + ], + "names": [ + { + "value": "Public Policy Institute for Wales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PPIW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Wales Centre for Public Policy", + "type": "successor", + "id": "https://ror.org/03y0ymy78" + } + ], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05jmnvy38.json b/rc-v1.43-v2/updates/05jmnvy38.json new file mode 100644 index 000000000..53c3db9d9 --- /dev/null +++ b/rc-v1.43-v2/updates/05jmnvy38.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 2619856, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 55.88098, + "lng": 12.50111, + "name": "Hørsholm" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0670 5261" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423937.8" + ], + "preferred": "grid.423937.8" + } + ], + "id": "https://ror.org/05jmnvy38", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.dhigroup.com" + } + ], + "names": [ + { + "value": "DHI", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DHI Water & Environment", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Dansk Hydraulisk Institut", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DHI Water and Environment", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Danish Hydraulic Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DHI A/S", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05merjr74.json b/rc-v1.43-v2/updates/05merjr74.json new file mode 100644 index 000000000..6550e9cc9 --- /dev/null +++ b/rc-v1.43-v2/updates/05merjr74.json @@ -0,0 +1,101 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1987, + "external_ids": [ + { + "all": [ + "0000 0004 0502 3674" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q51782343" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.503222.4" + ], + "preferred": "grid.503222.4", + "type": "grid" + } + ], + "id": "https://ror.org/05merjr74", + "links": [ + { + "type": "website", + "value": "https://umr-selmet.cirad.fr/en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Tropical and Mediterranean Animal Production Systems" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Systèmes d’élevage méditerranéens et tropicaux" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SELMET" + } + ], + "relationships": [ + { + "label": "Centre Occitanie-Montpellier", + "type": "parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05mg91w61.json b/rc-v1.43-v2/updates/05mg91w61.json new file mode 100644 index 000000000..8b7e7beff --- /dev/null +++ b/rc-v1.43-v2/updates/05mg91w61.json @@ -0,0 +1,100 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5897 3091" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100006151", + "100017535", + "100013055" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30296525" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.452988.a" + ], + "preferred": "grid.452988.a" + } + ], + "id": "https://ror.org/05mg91w61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://science.osti.gov/bes" + } + ], + "names": [ + { + "value": "Office of Basic Energy Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BES", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "DOE BES", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Office of Science", + "type": "parent", + "id": "https://ror.org/00mmn6b08" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05n3x4p02.json b/rc-v1.43-v2/updates/05n3x4p02.json new file mode 100644 index 000000000..0a882e4f6 --- /dev/null +++ b/rc-v1.43-v2/updates/05n3x4p02.json @@ -0,0 +1,139 @@ +{ + "locations": [ + { + "geonames_id": 2761369, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.20849, + "lng": 16.37208, + "name": "Vienna" + } + } + ], + "established": 1365, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9259 8492" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100005788" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q700731" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.22937.3d" + ], + "preferred": "grid.22937.3d" + } + ], + "id": "https://ror.org/05n3x4p02", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.meduniwien.ac.at" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Medical_University_of_Vienna" + } + ], + "names": [ + { + "value": "Medical University of Vienna", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MedUni Wien", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MedUni Vienna", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Medizinische Universität Wien", + "types": [ + "label" + ], + "lang": "de" + } + ], + "relationships": [ + { + "label": "Complexity Science Hub Vienna", + "type": "related", + "id": "https://ror.org/023dz9m50" + }, + { + "label": "Universitätsklinik für Neurologie", + "type": "related", + "id": "https://ror.org/00adn8q67" + }, + { + "label": "Universitätszahnklinik Wien", + "type": "related", + "id": "https://ror.org/04zvdfd56" + }, + { + "label": "Vienna General Hospital", + "type": "related", + "id": "https://ror.org/05f0zr486" + }, + { + "label": "Comprehensive Cancer Center Vienna", + "type": "child", + "id": "https://ror.org/00df3z122" + }, + { + "label": "Universitätsklinik für Hals-, Nasen- und Ohrenkrankheiten", + "type": "child", + "id": "https://ror.org/0045a4523" + }, + { + "label": "Austrian BioImaging/CMI", + "type": "related", + "id": "https://ror.org/028696h48" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05p1j8758.json b/rc-v1.43-v2/updates/05p1j8758.json new file mode 100644 index 000000000..81ad3b46e --- /dev/null +++ b/rc-v1.43-v2/updates/05p1j8758.json @@ -0,0 +1,122 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-06-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1863, + "external_ids": [ + { + "all": [ + "100007765", + "100007830", + "100007766", + "100007829" + ], + "preferred": "100007765", + "type": "fundref" + }, + { + "all": [ + "grid.36567.31" + ], + "preferred": "grid.36567.31", + "type": "grid" + }, + { + "all": [ + "0000 0001 0737 1259" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q31249" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05p1j8758", + "links": [ + { + "type": "website", + "value": "http://www.k-state.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Kansas_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.18361, + "lng": -96.57167, + "name": "Manhattan" + }, + "geonames_id": 4274994 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "K-State" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Kansas State University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal de Kansas" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État du kansas" + } + ], + "relationships": [ + { + "label": "Kansas State University Salina Aerospace and Technology Campus", + "type": "child", + "id": "https://ror.org/02mrpaq42" + }, + { + "label": "Konza Prairie Long Term Ecological Research", + "type": "child", + "id": "https://ror.org/02wavzm11" + }, + { + "label": "Johnson Cancer Research Center", + "type": "child", + "id": "https://ror.org/00nffqq91" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05p3cb968.json b/rc-v1.43-v2/updates/05p3cb968.json new file mode 100644 index 000000000..52aea9a65 --- /dev/null +++ b/rc-v1.43-v2/updates/05p3cb968.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 1040652, + "geonames_details": { + "country_code": "MZ", + "country_name": "Mozambique", + "lat": -25.96553, + "lng": 32.58322, + "name": "Maputo" + } + } + ], + "established": 2005, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9230 7800" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100013954" + ], + "preferred": "501100013954" + }, + { + "type": "grid", + "all": [ + "grid.463372.7" + ], + "preferred": "grid.463372.7" + }, + { + "type": "wikidata", + "all": [ + "Q30261867" + ], + "preferred": "Q30261867" + } + ], + "id": "https://ror.org/05p3cb968", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iiam.gov.mz" + } + ], + "names": [ + { + "value": "Instituto de Investigação Agrária de Moçambique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Agricultural Research Institute of Mozambique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IIAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05p70jq59.json b/rc-v1.43-v2/updates/05p70jq59.json new file mode 100644 index 000000000..c97c6c94f --- /dev/null +++ b/rc-v1.43-v2/updates/05p70jq59.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2179537, + "geonames_details": { + "country_code": "NZ", + "country_name": "New Zealand", + "lat": -41.28664, + "lng": 174.77557, + "name": "Wellington" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0727 3536" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1937182" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.488641.7" + ], + "preferred": "grid.488641.7" + }, + { + "type": "fundref", + "all": [ + "501100009648" + ], + "preferred": "501100009648" + } + ], + "id": "https://ror.org/05p70jq59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.education.govt.nz/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Education_(New_Zealand)" + } + ], + "names": [ + { + "value": "Ministry of Education", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Education of New Zealand", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "New Zealand Ministry of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Te Tāhuhu o te Mātauranga", + "types": [ + "label" + ], + "lang": "mi" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05ppf7q77.json b/rc-v1.43-v2/updates/05ppf7q77.json new file mode 100644 index 000000000..8f0a54d5c --- /dev/null +++ b/rc-v1.43-v2/updates/05ppf7q77.json @@ -0,0 +1,100 @@ +{ + "locations": [ + { + "geonames_id": 3014143, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.77334, + "lng": 2.07393, + "name": "Guyancourt" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q3214361" + ], + "preferred": "Q3214361" + }, + { + "type": "grid", + "all": [ + "grid.494619.7" + ], + "preferred": "grid.494619.7" + }, + { + "type": "isni", + "all": [ + "0000 0001 0456 3087" + ], + "preferred": "0000 0001 0456 3087" + } + ], + "id": "https://ror.org/05ppf7q77", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.latmos.ipsl.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Laboratoire_atmosph%C3%A8res,_milieux,_observations_spatiales" + } + ], + "names": [ + { + "value": "Laboratoire atmosphères, milieux, observations spatiales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Atmospheres Laboratory Environments, Observations Spatiales", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LATMOS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "parent", + "id": "https://ror.org/03mkjjy25" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05pvqha70.json b/rc-v1.43-v2/updates/05pvqha70.json new file mode 100644 index 000000000..02108a11f --- /dev/null +++ b/rc-v1.43-v2/updates/05pvqha70.json @@ -0,0 +1,109 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1856, + "external_ids": [ + { + "all": [ + "100009970" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.264119.9" + ], + "preferred": "grid.264119.9", + "type": "grid" + }, + { + "all": [ + "0000 0001 2179 3458" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1411093" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05pvqha70", + "links": [ + { + "type": "website", + "value": "http://www.stlawu.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/St._Lawrence_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.59562, + "lng": -75.16909, + "name": "Canton" + }, + "geonames_id": 5111484 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SLU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "St. Lawrence University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de St. Lawrence" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de st. lawrence" + } + ], + "relationships": [ + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05q94pf14.json b/rc-v1.43-v2/updates/05q94pf14.json new file mode 100644 index 000000000..63668776c --- /dev/null +++ b/rc-v1.43-v2/updates/05q94pf14.json @@ -0,0 +1,104 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0613 4851" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q30261483" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.462526.1" + ], + "preferred": "grid.462526.1", + "type": "grid" + } + ], + "id": "https://ror.org/05q94pf14", + "links": [ + { + "type": "website", + "value": "http://umr-lstm.cirad.fr/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Laboratoire des Symbioses Tropicales et Méditerranéennes" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LSTM" + } + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05qj6w324.json b/rc-v1.43-v2/updates/05qj6w324.json new file mode 100644 index 000000000..5a848dc42 --- /dev/null +++ b/rc-v1.43-v2/updates/05qj6w324.json @@ -0,0 +1,86 @@ +{ + "admin": { + "created": { + "date": "2022-06-16", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2020, + "external_ids": [ + { + "all": [ + "Q105757481" + ], + "preferred": "Q105757481", + "type": "wikidata" + } + ], + "id": "https://ror.org/05qj6w324", + "links": [ + { + "type": "website", + "value": "https://www.nfdi.de" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Nationale_Forschungsdateninfrastruktur" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.00937, + "lng": 8.40444, + "name": "Karlsruhe" + }, + "geonames_id": 2892794 + } + ], + "names": [ + { + "lang": "en", + "types": [ + "label" + ], + "value": "German National Research Data Infrastructure" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NFDI" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Nationale Forschungsdateninfrastruktur" + } + ], + "relationships": [ + { + "label": "Mathematical Research Data Initiative", + "type": "child", + "id": "https://ror.org/04ncnzm65" + }, + { + "label": "NFDI4DS", + "type": "child", + "id": "https://ror.org/00bb4nn95" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05qpmg879.json b/rc-v1.43-v2/updates/05qpmg879.json new file mode 100644 index 000000000..5767ec823 --- /dev/null +++ b/rc-v1.43-v2/updates/05qpmg879.json @@ -0,0 +1,94 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1998, + "external_ids": [ + { + "all": [ + "grid.465534.5" + ], + "preferred": "grid.465534.5", + "type": "grid" + }, + { + "all": [ + "0000 0004 0638 0833" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/05qpmg879", + "links": [ + { + "type": "website", + "value": "http://www-ibmc.u-strasbg.fr/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + }, + "geonames_id": 2973783 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IBMC" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Institut de Biologie Moléculaire et Cellulaire" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute for Molecular and Cellular Biology" + } + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "child", + "id": "https://ror.org/030przz70" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05r0vyz12.json b/rc-v1.43-v2/updates/05r0vyz12.json new file mode 100644 index 000000000..594db7c63 --- /dev/null +++ b/rc-v1.43-v2/updates/05r0vyz12.json @@ -0,0 +1,142 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100004837", + "100014440", + "501100017642" + ], + "preferred": "501100004837" + }, + { + "type": "wikidata", + "all": [ + "Q85874966" + ], + "preferred": "Q85874966" + } + ], + "id": "https://ror.org/05r0vyz12", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciencia.gob.es" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Ministerio_de_Ciencia_e_Innovaci%C3%B3n" + } + ], + "names": [ + { + "value": "Ministerio de Ciencia, Innovación y Universidades", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Science and Information", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Science, Innovation and Universities", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spanish Ministry of Science, Innovation and Universities", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Science, Innovation and Universities, Spain", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministerio de Ciencia, Innovación y Universidades de España", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministerio de Ciencia e Innovación", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministerio de Ciencia e Innovación de España", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MICINN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Agencia Estatal de Investigación", + "type": "child", + "id": "https://ror.org/003x0zc53" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "Instituto de Salud Carlos III", + "type": "child", + "id": "https://ror.org/00ca2c886" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05r332y60.json b/rc-v1.43-v2/updates/05r332y60.json new file mode 100644 index 000000000..ebb4a96bb --- /dev/null +++ b/rc-v1.43-v2/updates/05r332y60.json @@ -0,0 +1,116 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1999, + "external_ids": [ + { + "all": [ + "0000 0004 0445 8430" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q30261319" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.461861.c" + ], + "preferred": "grid.461861.c", + "type": "grid" + } + ], + "id": "https://ror.org/05r332y60", + "links": [ + { + "type": "website", + "value": "https://www1.montpellier.inra.fr/wp-inra/bpmp/en/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Biochemistry and Plant Molecular Physiology" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Biochimie et Physiologie Moléculaire des Plantes" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BPMP" + } + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Agropolymerpolymer Engineering and Emerging Technologies", + "type": "child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Genetic Improvement and Adaptation of Mediterranean and Tropical Plants", + "type": "child", + "id": "https://ror.org/02w4exq36" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05r3f7h03.json b/rc-v1.43-v2/updates/05r3f7h03.json new file mode 100644 index 000000000..dd91912cb --- /dev/null +++ b/rc-v1.43-v2/updates/05r3f7h03.json @@ -0,0 +1,96 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1887, + "external_ids": [ + { + "all": [ + "grid.4764.1" + ], + "preferred": "grid.4764.1", + "type": "grid" + }, + { + "all": [ + "0000 0001 2186 1887" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q470438", + "Q28738259" + ], + "preferred": "Q470438", + "type": "wikidata" + } + ], + "id": "https://ror.org/05r3f7h03", + "links": [ + { + "type": "website", + "value": "https://www.ptb.de/cms/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Physikalisch-Technische_Bundesanstalt" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.26594, + "lng": 10.52673, + "name": "Braunschweig" + }, + "geonames_id": 2945024 + } + ], + "names": [ + { + "lang": "en", + "types": [ + "label" + ], + "value": "German National Metrology Institute" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "PTB" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Physikalisch-Technische Bundesanstalt" + } + ], + "relationships": [ + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05rbx8m02.json b/rc-v1.43-v2/updates/05rbx8m02.json new file mode 100644 index 000000000..2692843ce --- /dev/null +++ b/rc-v1.43-v2/updates/05rbx8m02.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 3173435, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + } + } + ], + "established": 1918, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0707 5492" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100008088" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.417894.7" + ], + "preferred": "grid.417894.7" + } + ], + "id": "https://ror.org/05rbx8m02", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.istituto-besta.it" + } + ], + "names": [ + { + "value": "Fondazione IRCCS Istituto Neurologico Carlo Besta", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IRCCS Istituto Neurologico Carlo Besta", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Istituto Neurologico Carlo Besta", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Carlo Besta Neurological Institute", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Istituti di Ricovero e Cura a Carattere Scientifico", + "type": "parent", + "id": "https://ror.org/04tfzc498" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05rdv5n40.json b/rc-v1.43-v2/updates/05rdv5n40.json new file mode 100644 index 000000000..38de1594d --- /dev/null +++ b/rc-v1.43-v2/updates/05rdv5n40.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1945, + "external_ids": [ + { + "all": [ + "grid.434823.a" + ], + "preferred": "grid.434823.a", + "type": "grid" + }, + { + "all": [ + "Q1550517" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05rdv5n40", + "links": [ + { + "type": "website", + "value": "https://www.grundfos.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Grundfos" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 56.37797, + "lng": 9.66065, + "name": "Bjerringbro" + }, + "geonames_id": 2624019 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Grundfos (Denmark)" + }, + { + "lang": "da", + "types": [ + "label" + ], + "value": "ˈkʁɔnˀfɒs" + } + ], + "relationships": [ + { + "label": "Grundfos Fond", + "type": "parent", + "id": "https://ror.org/0008vp155" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05sbt2524.json b/rc-v1.43-v2/updates/05sbt2524.json new file mode 100644 index 000000000..71d1baee2 --- /dev/null +++ b/rc-v1.43-v2/updates/05sbt2524.json @@ -0,0 +1,230 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1892, + "external_ids": [ + { + "all": [ + "grid.5676.2" + ], + "preferred": "grid.5676.2", + "type": "grid" + }, + { + "all": [ + "0000 0004 1765 4326" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1665121" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05sbt2524", + "links": [ + { + "type": "website", + "value": "http://www.grenoble-inp.fr/welcome/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Grenoble_Institute_of_Technology" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.17869, + "lng": 5.71479, + "name": "Grenoble" + }, + "geonames_id": 3014728 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Grenoble INP" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Grenoble Institute of Technology" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Institut polytechnique de Grenoble" + } + ], + "relationships": [ + { + "label": "Centre Interuniversitaire de MicroElectronique et Nanotechnologies", + "type": "child", + "id": "https://ror.org/000tdrn36" + }, + { + "label": "Grenoble Applied Economics Lab", + "type": "child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Grenoble Computer Science Laboratory", + "type": "child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Institut de Microélectronique, Electromagnétisme et Photonique", + "type": "child", + "id": "https://ror.org/03taa9n66" + }, + { + "label": "Institute of Environmental Geosciences", + "type": "child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Rhéologie et Procédés", + "type": "child", + "id": "https://ror.org/044ggyg50" + }, + { + "label": "Laboratoire de Conception et d'Intégration des Systèmes", + "type": "child", + "id": "https://ror.org/04eg25g76" + }, + { + "label": "Laboratoire de Génie Électrique de Grenoble", + "type": "child", + "id": "https://ror.org/05hyx5a17" + }, + { + "label": "Laboratoire des Sciences pour la Conception, l'Optimisation et la Production", + "type": "child", + "id": "https://ror.org/00rv5x925" + }, + { + "label": "Laboratoire des Écoulements Géophysiques et Industriels", + "type": "child", + "id": "https://ror.org/043pfpy19" + }, + { + "label": "Laboratoire d’Electrochimie et de Physico-chimie des Matériaux et des Interfaces", + "type": "child", + "id": "https://ror.org/04axb9j69" + }, + { + "label": "Laboratory of Pulp and Paper Science and Graphic Arts", + "type": "child", + "id": "https://ror.org/02z8yps18" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Materials and Physical Engineering Laboratory", + "type": "child", + "id": "https://ror.org/014n97s28" + }, + { + "label": "Science et Ingénierie des Matériaux et Procédés", + "type": "child", + "id": "https://ror.org/00m7zca23" + }, + { + "label": "Sols, Solides, Structures, Risques", + "type": "child", + "id": "https://ror.org/03bcdsr62" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "child", + "id": "https://ror.org/03e044190" + }, + { + "label": "Techniques for Biomedical Engineering and Complexity Management–Informatics, Mathematics and Applications Grenoble", + "type": "child", + "id": "https://ror.org/03985kf35" + }, + { + "label": "Techniques of Informatics and Microelectronics for Integrated Systems Architecture", + "type": "child", + "id": "https://ror.org/000063q30" + }, + { + "label": "Verimag", + "type": "child", + "id": "https://ror.org/05afmzm11" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Université Grenoble Alpes", + "type": "parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "related", + "id": "https://ror.org/05v727m31" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05sgwan27.json b/rc-v1.43-v2/updates/05sgwan27.json new file mode 100644 index 000000000..457773e16 --- /dev/null +++ b/rc-v1.43-v2/updates/05sgwan27.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30256536" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434270.6" + ], + "preferred": "grid.434270.6" + } + ], + "id": "https://ror.org/05sgwan27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://worldgeo.weebly.com/" + } + ], + "names": [ + { + "value": "Ecosystem (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05syd6y78.json b/rc-v1.43-v2/updates/05syd6y78.json new file mode 100644 index 000000000..2df801316 --- /dev/null +++ b/rc-v1.43-v2/updates/05syd6y78.json @@ -0,0 +1,97 @@ +{ + "locations": [ + { + "geonames_id": 3464975, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -25.42778, + "lng": -49.27306, + "name": "Curitiba" + } + } + ], + "established": 1912, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1941 472X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100008224", + "501100008223" + ], + "preferred": "501100008223" + }, + { + "type": "wikidata", + "all": [ + "Q1232831" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.20736.30" + ], + "preferred": "grid.20736.30" + } + ], + "id": "https://ror.org/05syd6y78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ufpr.br" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Federal_University_of_Paran%C3%A1" + } + ], + "names": [ + { + "value": "Universidade Federal do Paraná", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Federal University of Paraná", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UFPR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05tgxx705.json b/rc-v1.43-v2/updates/05tgxx705.json new file mode 100644 index 000000000..48dc46062 --- /dev/null +++ b/rc-v1.43-v2/updates/05tgxx705.json @@ -0,0 +1,116 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1987, + "external_ids": [ + { + "all": [ + "501100010892", + "501100010218" + ], + "preferred": "501100010892", + "type": "fundref" + }, + { + "all": [ + "grid.484092.3" + ], + "preferred": "grid.484092.3", + "type": "grid" + }, + { + "all": [ + "Q3547215" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05tgxx705", + "links": [ + { + "type": "website", + "value": "http://www.dost.gov.ph/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Department_of_Science_and_Technology_(Philippines)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PH", + "country_name": "Philippines", + "lat": 14.5243, + "lng": 121.0792, + "name": "Taguig" + }, + "geonames_id": 1684308 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DOST" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Department of Science and Technology" + }, + { + "lang": "tl", + "types": [ + "label" + ], + "value": "Kagawaran ng Agham at Teknolohiya" + } + ], + "relationships": [ + { + "label": "Industrial Technology Development Institute", + "type": "child", + "id": "https://ror.org/058k8t807" + }, + { + "label": "Philippine Council for Industry, Energy, and Emerging Technology Research and Development", + "type": "child", + "id": "https://ror.org/056ezpj87" + }, + { + "label": "Philippine Council for Health Research and Development", + "type": "child", + "id": "https://ror.org/04rpdbq72" + }, + { + "label": "Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development", + "type": "child", + "id": "https://ror.org/057p7e749" + }, + { + "label": "National Research Council of the Philippines", + "type": "child", + "id": "https://ror.org/00c746491" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05twwhs70.json b/rc-v1.43-v2/updates/05twwhs70.json new file mode 100644 index 000000000..8f878b38d --- /dev/null +++ b/rc-v1.43-v2/updates/05twwhs70.json @@ -0,0 +1,107 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-11", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2002, + "external_ids": [ + { + "all": [ + "501100010880" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.433158.8" + ], + "preferred": "grid.433158.8", + "type": "grid" + }, + { + "all": [ + "0000 0000 8891 7315" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q209078" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05twwhs70", + "links": [ + { + "type": "website", + "value": "http://www.sgcc.com.cn/ywlm/index.shtml" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/State_Grid_Corporation_of_China" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + }, + "geonames_id": 1816670 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SGCC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "State Grid Corporation of China (China)" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "国家电网公司" + } + ], + "relationships": [ + { + "label": "Global Energy Interconnection Research Institute North America", + "type": "child", + "id": "https://ror.org/00efwap41" + }, + { + "label": "China Electric Power Research Institute", + "type": "child", + "id": "https://ror.org/05ehpzy81" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05tyqjm34.json b/rc-v1.43-v2/updates/05tyqjm34.json new file mode 100644 index 000000000..2fa44fdbe --- /dev/null +++ b/rc-v1.43-v2/updates/05tyqjm34.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1857, + "external_ids": [ + { + "all": [ + "grid.431503.0" + ], + "preferred": "grid.431503.0", + "type": "grid" + }, + { + "all": [ + "0000 0000 8971 0658" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7401893" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05tyqjm34", + "links": [ + { + "type": "website", + "value": "http://www.saintmeinrad.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Saint_Meinrad_Seminary_and_School_of_Theology" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.12005, + "lng": -86.91416, + "name": "Santa Claus" + }, + "geonames_id": 4264457 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Saint Meinrad Seminary and School of Theology" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05v1m8q81.json b/rc-v1.43-v2/updates/05v1m8q81.json new file mode 100644 index 000000000..adc242344 --- /dev/null +++ b/rc-v1.43-v2/updates/05v1m8q81.json @@ -0,0 +1,128 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-02-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1966, + "external_ids": [ + { + "all": [ + "501100004409", + "100012964" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.425819.3" + ], + "preferred": "grid.425819.3", + "type": "grid" + }, + { + "all": [ + "Q3315194" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05v1m8q81", + "links": [ + { + "type": "website", + "value": "http://www.mes.tn/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Higher_Education_and_Scientific_Research_(Tunisia)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "TN", + "country_name": "Tunisia", + "lat": 36.81897, + "lng": 10.16579, + "name": "Tunis" + }, + "geonames_id": 2464470 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MHESR" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Ministry of Higher Education and Scientific Research" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Ministère de l'Enseignement Supérieur et de la Recherche Scientifique" + }, + { + "lang": "ar", + "types": [ + "label" + ], + "value": "وزارة التعليم العالي والبحث العلمي" + } + ], + "relationships": [ + { + "label": "Institut Préparatoire aux Études d'Ingénieurs de Monastir", + "type": "child", + "id": "https://ror.org/02qrt6d45" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "child", + "id": "https://ror.org/044vzpb64" + }, + { + "label": "Mateur Higher School of Agriculture", + "type": "child", + "id": "https://ror.org/053y1tm43" + }, + { + "label": "National Agency for Promotion of Research and Innovation", + "type": "child", + "id": "https://ror.org/020vej288" + }, + { + "label": "Research and Technology Center of Energy", + "type": "child", + "id": "https://ror.org/00dyead60" + }, + { + "label": "University National Center of Scientific and Technical Documentation", + "type": "child", + "id": "https://ror.org/03hc27x54" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05vm26792.json b/rc-v1.43-v2/updates/05vm26792.json new file mode 100644 index 000000000..48a9c574f --- /dev/null +++ b/rc-v1.43-v2/updates/05vm26792.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 1691444, + "geonames_details": { + "country_code": "PH", + "country_name": "Philippines", + "lat": 11.58528, + "lng": 122.75111, + "name": "Roxas City" + } + } + ], + "established": 1981, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0480 6802" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5036027" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.443135.4" + ], + "preferred": "grid.443135.4" + } + ], + "id": "https://ror.org/05vm26792", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.capsu.edu.ph" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Capiz_State_University" + } + ], + "names": [ + { + "value": "Capiz State University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Panay State Polytechnic College", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CAPSU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05vnxnq07.json b/rc-v1.43-v2/updates/05vnxnq07.json new file mode 100644 index 000000000..83881bdff --- /dev/null +++ b/rc-v1.43-v2/updates/05vnxnq07.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1855, + "external_ids": [ + { + "all": [ + "grid.431592.8" + ], + "preferred": "grid.431592.8", + "type": "grid" + }, + { + "all": [ + "0000 0001 2149 5506" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5110194" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05vnxnq07", + "links": [ + { + "type": "website", + "value": "http://www.cts.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Christian_Theological_Seminary" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.76838, + "lng": -86.15804, + "name": "Indianapolis" + }, + "geonames_id": 4259418 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CTS" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Christian Theological Seminary" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05vrs0r17.json b/rc-v1.43-v2/updates/05vrs0r17.json new file mode 100644 index 000000000..53cf81803 --- /dev/null +++ b/rc-v1.43-v2/updates/05vrs0r17.json @@ -0,0 +1,107 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1826, + "external_ids": [ + { + "all": [ + "100010957" + ], + "preferred": "100010957", + "type": "fundref" + }, + { + "all": [ + "grid.264268.c" + ], + "preferred": "grid.264268.c", + "type": "grid" + }, + { + "all": [ + "0000 0004 0388 0154" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q6487738" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05vrs0r17", + "links": [ + { + "type": "website", + "value": "http://home.fredonia.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Fredonia" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.44006, + "lng": -79.33171, + "name": "Fredonia" + }, + "geonames_id": 5117926 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Fredonia State College" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "SUNY Fredonia" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "State University of New York at Fredonia" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05w35s747.json b/rc-v1.43-v2/updates/05w35s747.json new file mode 100644 index 000000000..9825d8c7a --- /dev/null +++ b/rc-v1.43-v2/updates/05w35s747.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1834, + "external_ids": [ + { + "all": [ + "grid.421573.6" + ], + "preferred": "grid.421573.6", + "type": "grid" + }, + { + "all": [ + "0000 0000 9525 218X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5491372" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05w35s747", + "links": [ + { + "type": "website", + "value": "http://www.franklincollege.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Franklin_College_(Indiana)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.48061, + "lng": -86.05499, + "name": "Franklin" + }, + "geonames_id": 4828382 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Franklin College" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Franklin College of Indiana" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05wg1m734.json b/rc-v1.43-v2/updates/05wg1m734.json new file mode 100644 index 000000000..6456ad125 --- /dev/null +++ b/rc-v1.43-v2/updates/05wg1m734.json @@ -0,0 +1,125 @@ +{ + "locations": [ + { + "geonames_id": 2750053, + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + } + } + ], + "established": 1956, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0444 9382" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006209", + "501100003297" + ], + "preferred": "501100006209" + }, + { + "type": "wikidata", + "all": [ + "Q2594321" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.10417.33" + ], + "preferred": "grid.10417.33" + } + ], + "id": "https://ror.org/05wg1m734", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.radboudumc.nl" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Radboud_University_Nijmegen_Medical_Centre" + } + ], + "names": [ + { + "value": "Radboud University Medical Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Radboud University Nijmegen Medical Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Radboudumc", + "types": [ + "label" + ], + "lang": "nl" + }, + { + "value": "RUNMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Radboud University Nijmegen", + "type": "related", + "id": "https://ror.org/016xsfp80" + }, + { + "label": "Amalia Kinderziekenhuis", + "type": "child", + "id": "https://ror.org/024pk8k39" + }, + { + "label": "ERN eUROGEN", + "type": "related", + "id": "https://ror.org/00y7tet25" + }, + { + "label": "ERN GENTURIS", + "type": "related", + "id": "https://ror.org/03pbpa834" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05wygq130.json b/rc-v1.43-v2/updates/05wygq130.json new file mode 100644 index 000000000..1573e2218 --- /dev/null +++ b/rc-v1.43-v2/updates/05wygq130.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3871336, + "geonames_details": { + "country_code": "CL", + "country_name": "Chile", + "lat": -33.45694, + "lng": -70.64827, + "name": "Santiago" + } + } + ], + "established": 1981, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2230 9680" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5515968" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.441822.9" + ], + "preferred": "grid.441822.9" + } + ], + "id": "https://ror.org/05wygq130", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ugm.cl/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Gabriela_Mistral_University" + } + ], + "names": [ + { + "value": "Universidad Gabriela Mistral", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Gabriela Mistral University", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UGM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05wzh1m37.json b/rc-v1.43-v2/updates/05wzh1m37.json new file mode 100644 index 000000000..abcd3c52c --- /dev/null +++ b/rc-v1.43-v2/updates/05wzh1m37.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0382 4005" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462047.3" + ], + "preferred": "grid.462047.3" + } + ], + "id": "https://ror.org/05wzh1m37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.icmmo.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ICMMO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05x643e19.json b/rc-v1.43-v2/updates/05x643e19.json new file mode 100644 index 000000000..a52117d9a --- /dev/null +++ b/rc-v1.43-v2/updates/05x643e19.json @@ -0,0 +1,93 @@ +{ + "locations": [ + { + "geonames_id": 4994358, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.96336, + "lng": -85.66809, + "name": "Grand Rapids" + } + } + ], + "established": 1875, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0450 5989" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5003039" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.413153.1" + ], + "preferred": "grid.413153.1" + } + ], + "id": "https://ror.org/05x643e19", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.spectrumhealth.org/butterworth" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Butterworth_Hospital_(Michigan)" + } + ], + "names": [ + { + "value": "Corewell Health Butterworth Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Butterworth Hospital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Michigan State University", + "type": "related", + "id": "https://ror.org/05hs6h993" + }, + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05x9ffc66.json b/rc-v1.43-v2/updates/05x9ffc66.json new file mode 100644 index 000000000..cfdb652c4 --- /dev/null +++ b/rc-v1.43-v2/updates/05x9ffc66.json @@ -0,0 +1,89 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1908, + "external_ids": [ + { + "all": [ + "grid.417120.1" + ], + "preferred": "grid.417120.1", + "type": "grid" + }, + { + "all": [ + "0000 0004 0435 2409" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q50376756" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05x9ffc66", + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/locations/beaumont-hospital-troy" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.60559, + "lng": -83.14993, + "name": "Troy" + }, + "geonames_id": 5012639 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Beaumont Hospital, Troy" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "William Beaumont Hospital, Troy" + } + ], + "relationships": [ + { + "label": "Oakland University", + "type": "related", + "id": "https://ror.org/01ythxj32" + }, + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/rc-v1.43-v2/updates/05xwcq167.json b/rc-v1.43-v2/updates/05xwcq167.json new file mode 100644 index 000000000..c7ca26c52 --- /dev/null +++ b/rc-v1.43-v2/updates/05xwcq167.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 3996069, + "geonames_details": { + "country_code": "MX", + "country_name": "Mexico", + "lat": 32.62781, + "lng": -115.45446, + "name": "Mexicali" + } + } + ], + "established": 1957, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2192 0509" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100007228" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q4826824" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.412852.8" + ], + "preferred": "grid.412852.8" + } + ], + "id": "https://ror.org/05xwcq167", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.uabc.mx/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Autonomous_University_of_Baja_California" + } + ], + "names": [ + { + "value": "Universidad Autónoma de Baja California", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Autonomous University of Baja California", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UABC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/generate_relationships.py b/test-relationship-delete-v2/generate_relationships.py new file mode 100644 index 000000000..4c29822ae --- /dev/null +++ b/test-relationship-delete-v2/generate_relationships.py @@ -0,0 +1,312 @@ +import argparse +import json +import os +import logging +import requests +from csv import DictReader +import re +import sys + +ERROR_LOG = "relationship_errors.log" +logging.basicConfig(filename=ERROR_LOG,level=logging.ERROR, filemode='w') +V1_API_URL = "https://api.dev.ror.org/v1/organizations/" +V2_API_URL = "https://api.dev.ror.org/v2/organizations/" +UPDATED_RECORDS_PATH = "updates/" +INVERSE_TYPES = ('parent', 'child', 'related') +REL_INVERSE = {'parent': 'child', 'child': 'parent', 'related': 'related', + 'successor': 'predecessor', 'predecessor': 'successor'} + +def check_file(file): + filepath = '' + for root, dirs, files in os.walk(".", topdown=True): + if file in files: + filepath = (os.path.join(root, file)) + return filepath + +def parse_record_id(id): + parsed_id = None + pattern = '^https:\/\/ror.org\/(0[a-z|0-9]{8})$' + ror_id = re.search(pattern, id) + if ror_id: + parsed_id = ror_id.group(1) + else: + logging.error(f"ROR ID: {id} does not match format: {pattern}. Record will not be processed") + return parsed_id + +def get_record_status(record_id, version): + status = '' + filepath = check_file(record_id + ".json") + if filepath: + try: + with open(filepath, 'r') as f: + file_data = json.load(f) + status = file_data['status'] + except Exception as e: + logging.error(f"Error reading {filepath}: {e}") + else: + api_url = V2_API_URL if version == 2 else V1_API_URL + download_url=api_url + record_id + try: + rsp = requests.get(download_url) + rsp.raise_for_status() + response = rsp.json() + status = response['status'] + except requests.exceptions.RequestException as e: + logging.error(f"Request for {download_url}: {e}") + return status + +def get_record(id, filename, version): + api_url = V2_API_URL if version == 2 else V1_API_URL + download_url=api_url + id + try: + rsp = requests.get(download_url) + rsp.raise_for_status() + except requests.exceptions.RequestException as e: + logging.error(f"Request for {download_url}: {e}") + + try: + response = rsp.json() + with open(UPDATED_RECORDS_PATH + filename, "w", encoding='utf8') as f: + json.dump(response, f, ensure_ascii=False) + except Exception as e: + logging.error(f"Writing {filename}: {e}") + +def has_inverse_rel_csv(current_rel, all_rels): + print("Checking inverse relationship for " + current_rel['short_related_id']) + has_inverse = False + for r in all_rels: + if r['short_record_id'] == current_rel['short_related_id'] and r['record_relationship'] == REL_INVERSE[current_rel['record_relationship']]: + has_inverse = True + print("Has inverse is " + str(has_inverse)) + return has_inverse + +def download_records(relationships, version): + print("DOWNLOADING PRODUCTION RECORDS") + downloaded_records_count = 0 + if not os.path.exists(UPDATED_RECORDS_PATH): + os.makedirs(UPDATED_RECORDS_PATH) + # download all records that are labeled as in production + for r in relationships: + if r['record_relationship'].lower() == 'delete': + record_filename = r['short_record_id'] + ".json" + if not(check_file(record_filename)): + get_record(r['short_record_id'], record_filename, version) + downloaded_records_count += 1 + related_filename = r['short_related_id'] + ".json" + if not(check_file(related_filename)): + get_record(r['short_related_id'], related_filename, version) + downloaded_records_count += 1 + else: + if r['related_location'].lower() == "production" and (r['record_relationship'] in INVERSE_TYPES or has_inverse_rel_csv(r, relationships)): + filename = r['short_related_id'] + ".json" + if not(check_file(filename)): + get_record(r['short_related_id'], filename, version) + downloaded_records_count += 1 + print(str(downloaded_records_count) + " records downloaded") + +def remove_missing_files(relationships, missing_files): + updated_relationships = [r for r in relationships if not(r['short_record_id'] in missing_files or r['short_related_id'] in missing_files)] + print (str(len(missing_files)) + " missing records removed") + return updated_relationships + +def check_missing_files(relationships): + print ("CHECKING FOR MISSING RECORDS") + missing_files = [] + for r in relationships: + filename = r['short_record_id'] + ".json" + if not check_file(filename): + missing_files.append(r['short_record_id']) + logging.error(f"Record: {r['record_id']} will not be processed because {filename} does not exist.") + + for i in range(len(relationships)): + if relationships[i]['short_related_id'] in missing_files: + logging.error(f"Record {relationships[i]['short_record_id']} will not contain a relationship for {relationships[i]['short_related_id']} because {relationships[i]['short_related_id']}.json does not exist") + + if len(missing_files) > 0: + #remove dupes + missing_files = list(dict.fromkeys(missing_files)) + relationships = remove_missing_files(relationships, missing_files) + return relationships + +def check_relationship(former_relationship, current_relationship_id, current_relationship_type, version): + if not version >= 2: + current_relationship_type = current_relationship_type.title() + if current_relationship_type.lower() == 'delete': + return [r for r in former_relationship if not r['id'] == current_relationship_id] + else: + return [r for r in former_relationship if ((not r['id'] == current_relationship_id) or (r['id'] == current_relationship_id and (not r['type'] == current_relationship_type)))] + + +def get_record_name(record, version): + record_name = None + if version == 2: + ror_display = [name for name in record['names'] if 'ror_display' in name['types']] + record_name = ror_display[0]['value'] + if version == 1: + record_name = record['name'] + return record_name + + +def get_related_name_api(related_id, version): + name = None + api_url = V2_API_URL if version == 2 else V1_API_URL + download_url=api_url + related_id + try: + rsp = requests.get(download_url) + rsp.raise_for_status() + except requests.exceptions.RequestException as e: + logging.error(f"Request for {download_url}: {e}") + + try: + response = rsp.json() + name = get_record_name(response, version) + except Exception as e: + logging.error(f"Getting name for {related_id}: {e}") + return name + +def get_related_name(related_id, version): + filename = related_id + ".json" + filepath = check_file(filename) + name = None + if filepath: + try: + with open(filepath, 'r') as f: + file_data = json.load(f) + name = get_record_name(file_data, version) + except Exception as e: + logging.error(f"Reading {filepath}: {e}") + else: + name = get_related_name_api(related_id, version) + return name + +def process_one_relationship(relationship, version): + filename = relationship['short_record_id'] + ".json" + filepath = check_file(filename) + relationship_data = { + "label": get_related_name(relationship['short_related_id'], version), + "type": relationship['record_relationship'] if version==2 else relationship['record_relationship'].title(), + "id": relationship['related_id'] + } + try: + with open(filepath, 'r+') as f: + file_data = json.load(f) + file_data['relationships'] = check_relationship(file_data['relationships'], relationship['related_id'], relationship['record_relationship'], version) + f.seek(0) + json.dump(file_data, f, ensure_ascii=False, indent=2) + f.truncate() + except Exception as e: + logging.error(f"Writing {filepath}: {e}") + +def delete_one_relationship(relationship, version): + record_filename = relationship['short_record_id'] + ".json" + record_filepath = check_file(record_filename) + try: + with open(record_filepath, 'r+') as f: + file_data = json.load(f) + file_data['relationships'] = check_relationship(file_data['relationships'], relationship['related_id'], relationship['record_relationship'], version) + f.seek(0) + json.dump(file_data, f, ensure_ascii=False, indent=2) + f.truncate() + except Exception as e: + logging.error(f"Writing {record_filepath}: {e}") + + related_filename = relationship['short_related_id'] + ".json" + related_filepath = check_file(related_filename) + try: + with open(related_filepath, 'r+') as f: + file_data = json.load(f) + file_data['relationships'] = check_relationship(file_data['relationships'], relationship['record_id'], relationship['record_relationship'], version) + f.seek(0) + json.dump(file_data, f, ensure_ascii=False, indent=2) + f.truncate() + except Exception as e: + logging.error(f"Writing {related_filepath}: {e}") + + + +def process_add_relationships(add_relationships, version): + print("ADDING RELATIONSHIPS") + added_relationships_count = 0 + for r in add_relationships: + process_one_relationship(r, version) + added_relationships_count += 1 + print(str(added_relationships_count) + " relationships added") + + +def process_delete_relationships(delete_relationships, version): + print("DELETING RELATIONSHIPS") + deleted_relationships_count = 0 + for r in delete_relationships: + delete_one_relationship(r, version) + deleted_relationships_count += 1 + print(str(deleted_relationships_count) + " relationships deleted") + + +def get_relationships_from_file(file, version): + print("PROCESSING CSV") + relationships = [] + rel_dict = {} + row_count = 0 + relationship_count = 0 + try: + with open(file, 'r') as rel: + rel_file_rows = DictReader(rel) + for row in rel_file_rows: + + row_count += 1 + check_record_id = parse_record_id(row['Record ID']) + check_related_id = parse_record_id(row['Related ID']) + # check that related ID is an active record + check_related_id_status = get_record_status(check_related_id, version) + if (check_record_id and check_related_id): + if check_related_id_status == 'active' or row['Relationship of Related ID to Record ID'].lower() == 'predecessor': + rel_dict['short_record_id'] = check_record_id + rel_dict['short_related_id'] = check_related_id + rel_dict['record_name'] = row['Name of org in Record ID'] + rel_dict['record_id'] = row['Record ID'] + rel_dict['related_id'] = row['Related ID'] + rel_dict['related_name'] = row['Name of org in Related ID'] + rel_dict['record_relationship'] = row['Relationship of Related ID to Record ID'].lower() + rel_dict['related_location'] = row['Current location of Related ID'].title() + relationships.append(rel_dict.copy()) + relationship_count += 1 + else: + logging.error(f"Related ID from CSV: {check_related_id} has a status other than active and a relationship type other than Predecessor. Relationship row {row_count} cannot be processed") + print(str(row_count)+ " rows found") + print(str(relationship_count)+ " valid relationships found") + except IOError as e: + logging.error(f"Reading file {file}: {e}") + return relationships + +def generate_relationships(file, version): + if check_file(file): + relationships = get_relationships_from_file(file, version) + if relationships: + download_records(relationships, version) + relationships_missing_files_removed = check_missing_files(relationships) + delete_rels = [r for r in relationships_missing_files_removed if r['record_relationship'].lower() == 'delete'] + add_rels = [r for r in relationships_missing_files_removed if r not in delete_rels] + process_delete_relationships(delete_rels, version) + process_add_relationships(add_rels, version) + else: + logging.error(f"No valid relationships found in {file}") + else: + logging.error(f"{file} must exist to process relationship records") + +def main(file, version): + generate_relationships(file, version) + file_size = os.path.getsize(ERROR_LOG) + if (file_size == 0): + os.remove(ERROR_LOG) + elif (file_size != 0): + print("ERRORS RECORDED IN relationship_errors.log") + with open(ERROR_LOG, 'r') as f: + print(f.read()) + sys.exit(1) + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Script to generate relationships in new/udpated records") + parser.add_argument('-v', '--schemaversion', choices=[1, 2], type=int, required=True, help='Schema version (1 or 2)') + parser.add_argument('file') + args = parser.parse_args() + main(args.file, args.schemaversion) diff --git a/test-relationship-delete-v2/new/0008vp155.json b/test-relationship-delete-v2/new/0008vp155.json new file mode 100644 index 000000000..c7361b017 --- /dev/null +++ b/test-relationship-delete-v2/new/0008vp155.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 2624019, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 56.37797, + "lng": 9.66065, + "name": "Bjerringbro" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0272 5010" + ], + "preferred": "0000 0005 0272 5010" + }, + { + "type": "wikidata", + "all": [ + "Q123026777" + ], + "preferred": "Q123026777" + }, + { + "type": "fundref", + "all": [ + "501100018870" + ], + "preferred": "501100018870" + } + ], + "id": "https://ror.org/0008vp155", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pdjf.dk" + } + ], + "names": [ + { + "value": "Grundfos Fond", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Poul Due Jensen Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Poul Due Jensen Fond", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Grundfos Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/0009eea46.json b/test-relationship-delete-v2/new/0009eea46.json new file mode 100644 index 000000000..bba8ea3eb --- /dev/null +++ b/test-relationship-delete-v2/new/0009eea46.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011160" + ], + "preferred": "501100011160" + } + ], + "id": "https://ror.org/0009eea46", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://vrlab.buaa.edu.cn" + } + ], + "names": [ + { + "value": "State Key Laboratory of Virtual Reality Technology and Systems", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Virtual Reality Technology and Systems", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "虚拟现实技术国家重点实验室", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "虚拟现实技术与系统国家重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/001d55x84.json b/test-relationship-delete-v2/new/001d55x84.json new file mode 100644 index 000000000..e18bcb5f4 --- /dev/null +++ b/test-relationship-delete-v2/new/001d55x84.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 4348599, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.98067, + "lng": -77.10026, + "name": "Bethesda" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8306 5685" + ], + "preferred": "0000 0004 8306 5685" + }, + { + "type": "wikidata", + "all": [ + "Q16932298" + ], + "preferred": "Q16932298" + }, + { + "type": "fundref", + "all": [ + "100015326" + ], + "preferred": "100015326" + } + ], + "id": "https://ror.org/001d55x84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://commonfund.nih.gov" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/National_Institutes_of_Health_Common_Fund" + } + ], + "names": [ + { + "value": "NIH Common Fund", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institutes of Health Common Fund", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/002c90p59.json b/test-relationship-delete-v2/new/002c90p59.json new file mode 100644 index 000000000..c2707733c --- /dev/null +++ b/test-relationship-delete-v2/new/002c90p59.json @@ -0,0 +1,72 @@ +{ + "locations": [ + { + "geonames_id": 1786657, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 38.46806, + "lng": 106.27306, + "name": "Yinchuan" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/002c90p59", + "domains": [], + "links": [], + "names": [ + { + "value": "Ningxia Forestry Research Institute Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ningxia Forestry Research Institute Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ningxia Forestry Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ningxia Forestry Research Institute Company Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "宁夏林业研究院股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/007bytg49.json b/test-relationship-delete-v2/new/007bytg49.json new file mode 100644 index 000000000..b447bf7a1 --- /dev/null +++ b/test-relationship-delete-v2/new/007bytg49.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 683506, + "geonames_details": { + "country_code": "RO", + "country_name": "Romania", + "lat": 44.43225, + "lng": 26.10626, + "name": "Bucharest" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/007bytg49", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.acadsudest.ro" + } + ], + "names": [ + { + "value": "Institutul de Studii Sud-Est Europene", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institutul de Studii Sud-Est Europene al Academiei Române", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "The Romanian Academy’s Institute for South-East European Studies", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institute for South-East European Studies", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/007xgfy35.json b/test-relationship-delete-v2/new/007xgfy35.json new file mode 100644 index 000000000..b2190d11a --- /dev/null +++ b/test-relationship-delete-v2/new/007xgfy35.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 1815456, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.77359, + "lng": 119.95401, + "name": "Changzhou" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/007xgfy35", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.trinasolar.com" + } + ], + "names": [ + { + "value": "TrinaSolar Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "TrinaSolar Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TrinaSolar Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TrinaSolar", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "天合光能股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/0083c5602.json b/test-relationship-delete-v2/new/0083c5602.json new file mode 100644 index 000000000..1b2d4f9cd --- /dev/null +++ b/test-relationship-delete-v2/new/0083c5602.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2891122, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 54.32133, + "lng": 10.13489, + "name": "Kiel" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8308 2557" + ], + "preferred": "0000 0004 8308 2557" + }, + { + "type": "fundref", + "all": [ + "501100013859" + ], + "preferred": "501100013859" + } + ], + "id": "https://ror.org/0083c5602", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.damp-stiftung.de" + } + ], + "names": [ + { + "value": "Damp Stiftung", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Damp Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Damp-Stiftung", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/008j47576.json b/test-relationship-delete-v2/new/008j47576.json new file mode 100644 index 000000000..70f13aa5a --- /dev/null +++ b/test-relationship-delete-v2/new/008j47576.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 202061, + "geonames_details": { + "country_code": "RW", + "country_name": "Rwanda", + "lat": -1.94995, + "lng": 30.05885, + "name": "Kigali" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q119702803" + ], + "preferred": "Q119702803" + } + ], + "id": "https://ror.org/008j47576", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mkur.ac.rw" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Mount_Kigali_University" + } + ], + "names": [ + { + "value": "Mount Kigali University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Mount Kenya University Rwanda", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MKUR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/008jep717.json b/test-relationship-delete-v2/new/008jep717.json new file mode 100644 index 000000000..bb749bdb6 --- /dev/null +++ b/test-relationship-delete-v2/new/008jep717.json @@ -0,0 +1,59 @@ +{ + "locations": [ + { + "geonames_id": 1049261, + "geonames_details": { + "country_code": "MZ", + "country_name": "Mozambique", + "lat": -19.11639, + "lng": 33.48333, + "name": "Chimoio" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8751 5410" + ], + "preferred": "0000 0000 8751 5410" + }, + { + "type": "wikidata", + "all": [ + "Q21485207" + ], + "preferred": "Q21485207" + } + ], + "id": "https://ror.org/008jep717", + "domains": [], + "links": [], + "names": [ + { + "value": "Instituto Agrário de Chimoio", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/0090gef29.json b/test-relationship-delete-v2/new/0090gef29.json new file mode 100644 index 000000000..3ed6a9e85 --- /dev/null +++ b/test-relationship-delete-v2/new/0090gef29.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2016, + "external_ids": [], + "id": "https://ror.org/0090gef29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aelinfedema.org" + } + ], + "names": [ + { + "value": "Asociación Española de Linfedema", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spanish Association of Lymphedema", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "AEL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/009q0jm69.json b/test-relationship-delete-v2/new/009q0jm69.json new file mode 100644 index 000000000..0c55506ed --- /dev/null +++ b/test-relationship-delete-v2/new/009q0jm69.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 5475352, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.31232, + "lng": -106.77834, + "name": "Las Cruces" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q45133446" + ], + "preferred": "Q45133446" + }, + { + "type": "fundref", + "all": [ + "100011499" + ], + "preferred": "100011499" + } + ], + "id": "https://ror.org/009q0jm69", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aes.nmsu.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/New_Mexico_State_University_Agricultural_Experiment_Station" + } + ], + "names": [ + { + "value": "Agricultural Experiment Station", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Agricultural Experiment Station, New Mexico State University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "New Mexico State University Agricultural Experiment Station", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "AES NMSU", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "NMSU AES", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/009xdmc59.json b/test-relationship-delete-v2/new/009xdmc59.json new file mode 100644 index 000000000..06f318da7 --- /dev/null +++ b/test-relationship-delete-v2/new/009xdmc59.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 3128026, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + } + } + ], + "established": 1948, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0617 3682" + ], + "preferred": "0000 0004 0617 3682" + }, + { + "type": "wikidata", + "all": [ + "Q124670480" + ], + "preferred": "Q124670480" + } + ], + "id": "https://ror.org/009xdmc59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bam.edu.es" + } + ], + "names": [ + { + "value": "Escuela Universitaria de Magisterio Begoñako Andra Mari", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Begoñako Andra Mari Irakasleen Unibertsitate Eskola", + "types": [ + "label" + ], + "lang": "eu" + }, + { + "value": "Begoñako Andra Mari Teacher Training University College", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "BAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00b67z867.json b/test-relationship-delete-v2/new/00b67z867.json new file mode 100644 index 000000000..7404b51e5 --- /dev/null +++ b/test-relationship-delete-v2/new/00b67z867.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 2038180, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 43.88, + "lng": 125.32278, + "name": "Changchun" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011234" + ], + "preferred": "501100011234" + } + ], + "id": "https://ror.org/00b67z867", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ascl.jlu.edu.cn" + } + ], + "names": [ + { + "value": "State Key Laboratory of Automotive Simulation and Control", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Automotive Simulation and Control", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Laboratory of Automobile Simulation and Control", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Lab of Automobile Simulation and Control", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "汽车动态模拟国家重点实验室", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "汽车仿真与控制国家重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00b88za07.json b/test-relationship-delete-v2/new/00b88za07.json new file mode 100644 index 000000000..9a05beb17 --- /dev/null +++ b/test-relationship-delete-v2/new/00b88za07.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0823 8812" + ], + "preferred": "0000 0001 0823 8812" + } + ], + "id": "https://ror.org/00b88za07", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iris-recherche.qc.ca" + } + ], + "names": [ + { + "value": "Institut de recherche et d’informations socioéconomiques", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IRIS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00bb4nn95.json b/test-relationship-delete-v2/new/00bb4nn95.json new file mode 100644 index 000000000..3b8bc6b3c --- /dev/null +++ b/test-relationship-delete-v2/new/00bb4nn95.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": 2021, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q108542422" + ], + "preferred": "Q108542422" + } + ], + "id": "https://ror.org/00bb4nn95", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nfdi4datascience.de" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/NFDI4DataScience" + } + ], + "names": [ + { + "value": "NFDI4DS", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NFDI4DataScience", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NFDI for Data Science and Artificial Intelligence", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00brnhb09.json b/test-relationship-delete-v2/new/00brnhb09.json new file mode 100644 index 000000000..e850e54a3 --- /dev/null +++ b/test-relationship-delete-v2/new/00brnhb09.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5889745, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 49.21679, + "lng": -68.14894, + "name": "Baie-Comeau" + } + } + ], + "established": 1946, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8062 3186" + ], + "preferred": "0000 0004 8062 3186" + } + ], + "id": "https://ror.org/00brnhb09", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cisss-cotenord.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de la Côte-Nord", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de la Côte-Nord", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00bsxeq86.json b/test-relationship-delete-v2/new/00bsxeq86.json new file mode 100644 index 000000000..f9bace96a --- /dev/null +++ b/test-relationship-delete-v2/new/00bsxeq86.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 3054643, + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 47.49835, + "lng": 19.04045, + "name": "Budapest" + } + } + ], + "established": 2008, + "external_ids": [], + "id": "https://ror.org/00bsxeq86", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://syreon.eu" + } + ], + "names": [ + { + "value": "Syreon Research Institute (Hungary)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Syreon Research Institute", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00c746491.json b/test-relationship-delete-v2/new/00c746491.json new file mode 100644 index 000000000..607e5313b --- /dev/null +++ b/test-relationship-delete-v2/new/00c746491.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 1684308, + "geonames_details": { + "country_code": "PH", + "country_name": "Philippines", + "lat": 14.5243, + "lng": 121.0792, + "name": "Taguig" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7777 4717" + ], + "preferred": "0000 0004 7777 4717" + }, + { + "type": "wikidata", + "all": [ + "Q114556703" + ], + "preferred": "Q114556703" + }, + { + "type": "fundref", + "all": [ + "501100010217" + ], + "preferred": "501100010217" + } + ], + "id": "https://ror.org/00c746491", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://nrcp.dost.gov.ph" + } + ], + "names": [ + { + "value": "National Research Council of the Philippines", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Philippines National Research Council", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DOST-NRCP", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "NRCP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00d4pqn65.json b/test-relationship-delete-v2/new/00d4pqn65.json new file mode 100644 index 000000000..1519e9a93 --- /dev/null +++ b/test-relationship-delete-v2/new/00d4pqn65.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 5713376, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 45.48706, + "lng": -122.80371, + "name": "Beaverton" + } + } + ], + "established": 2001, + "external_ids": [], + "id": "https://ror.org/00d4pqn65", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ohsu.edu/vaccine-gene-therapy-institute" + } + ], + "names": [ + { + "value": "Vaccine and Gene Therapy Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Vaccine & Gene Therapy Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Oregon Health & Science University Vaccine and Gene Therapy Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OHSU Vaccine and Gene Therapy Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "VGTI", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "OHSU VGTI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00deq0f50.json b/test-relationship-delete-v2/new/00deq0f50.json new file mode 100644 index 000000000..9b43ed69e --- /dev/null +++ b/test-relationship-delete-v2/new/00deq0f50.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 1649378, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -6.2349, + "lng": 106.9896, + "name": "Bekasi" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109919472" + ], + "preferred": "Q109919472" + } + ], + "id": "https://ror.org/00deq0f50", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pelitabangsa.ac.id" + } + ], + "names": [ + { + "value": "Universitas Pelita Bangsa", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Pelita Bangsa University", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00e45qp82.json b/test-relationship-delete-v2/new/00e45qp82.json new file mode 100644 index 000000000..a7c353478 --- /dev/null +++ b/test-relationship-delete-v2/new/00e45qp82.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 658225, + "geonames_details": { + "country_code": "FI", + "country_name": "Finland", + "lat": 60.16952, + "lng": 24.93545, + "name": "Helsinki" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6090 6859" + ], + "preferred": "0000 0004 6090 6859" + }, + { + "type": "wikidata", + "all": [ + "Q45131748" + ], + "preferred": "Q45131748" + }, + { + "type": "fundref", + "all": [ + "100010119" + ], + "preferred": "100010119" + } + ], + "id": "https://ror.org/00e45qp82", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.foundationweb.net/perklen/understod.html" + } + ], + "names": [ + { + "value": "Stiftelsen Dorothea Olivia, Karl Walter och Jarl Walter Perkléns Minne", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Dorothea Olivia, Karl Walter and Jarl Walter Perkléns Memorial Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00enf6a78.json b/test-relationship-delete-v2/new/00enf6a78.json new file mode 100644 index 000000000..6a8a02284 --- /dev/null +++ b/test-relationship-delete-v2/new/00enf6a78.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6115047, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 52.00017, + "lng": -71.99907, + "name": "Quebec" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 4636" + ], + "preferred": "0000 0004 4910 4636" + }, + { + "type": "wikidata", + "all": [ + "Q109018003" + ], + "preferred": "Q109018003" + } + ], + "id": "https://ror.org/00enf6a78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciusss-ouestmtl.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré universitaire de santé et de services sociaux de l'Ouest-de-l’Île-de-Montréal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUSSS de l'Ouest-de-l'Ile-de-Montréal", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00ew61678.json b/test-relationship-delete-v2/new/00ew61678.json new file mode 100644 index 000000000..9d77378fe --- /dev/null +++ b/test-relationship-delete-v2/new/00ew61678.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9967 6377" + ], + "preferred": "0000 0000 9967 6377" + }, + { + "type": "wikidata", + "all": [ + "Q30274428" + ], + "preferred": "Q30274428" + }, + { + "type": "fundref", + "all": [ + "100013316" + ], + "preferred": "100013316" + } + ], + "id": "https://ror.org/00ew61678", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://serdp-estcp.mil" + } + ], + "names": [ + { + "value": "Strategic Environmental Research and Development Program", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SERDP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00f2pe266.json b/test-relationship-delete-v2/new/00f2pe266.json new file mode 100644 index 000000000..5c4f00068 --- /dev/null +++ b/test-relationship-delete-v2/new/00f2pe266.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 1645133, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": 1.66711, + "lng": 101.44316, + "name": "Dumai" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109912239" + ], + "preferred": "Q109912239" + } + ], + "id": "https://ror.org/00f2pe266", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iaitfdumai.ac.id" + } + ], + "names": [ + { + "value": "Institut Agama Islam Tafaqquh Fiddin Dumai", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IAITF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00f7n9887.json b/test-relationship-delete-v2/new/00f7n9887.json new file mode 100644 index 000000000..ba897a3f7 --- /dev/null +++ b/test-relationship-delete-v2/new/00f7n9887.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 448001, + "geonames_details": { + "country_code": "UG", + "country_name": "Uganda", + "lat": -0.54306, + "lng": 30.13694, + "name": "Ishaka" + } + } + ], + "established": 2020, + "external_ids": [], + "id": "https://ror.org/00f7n9887", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.spparenet.org/special-journals/" + } + ], + "names": [ + { + "value": "Special Pathogens Research Network Ltd.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Special Pathogens Research Network Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spparenet", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Special Journals Publisher", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SJP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00fp4q488.json b/test-relationship-delete-v2/new/00fp4q488.json new file mode 100644 index 000000000..311bfc760 --- /dev/null +++ b/test-relationship-delete-v2/new/00fp4q488.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1907, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1009 6390" + ], + "preferred": "0000 0001 1009 6390" + }, + { + "type": "wikidata", + "all": [ + "Q120043481" + ], + "preferred": "Q120043481" + }, + { + "type": "fundref", + "all": [ + "100015902" + ], + "preferred": "100015902" + } + ], + "id": "https://ror.org/00fp4q488", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://eoseurope.org" + } + ], + "names": [ + { + "value": "European Orthodontic Society", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Europäische Gesellschaft für Orthodontie", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "EOS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00g1jn849.json b/test-relationship-delete-v2/new/00g1jn849.json new file mode 100644 index 000000000..3b7d98402 --- /dev/null +++ b/test-relationship-delete-v2/new/00g1jn849.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2654710, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.82838, + "lng": -0.13947, + "name": "Brighton" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011049" + ], + "preferred": "501100011049" + } + ], + "id": "https://ror.org/00g1jn849", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cied.ac.uk" + } + ], + "names": [ + { + "value": "Centre on Innovation and Energy Demand", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre on Innovation & Energy Demand", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CIED", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00h3w1m15.json b/test-relationship-delete-v2/new/00h3w1m15.json new file mode 100644 index 000000000..115258078 --- /dev/null +++ b/test-relationship-delete-v2/new/00h3w1m15.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 108410, + "geonames_details": { + "country_code": "SA", + "country_name": "Saudi Arabia", + "lat": 24.68773, + "lng": 46.72185, + "name": "Riyadh" + } + } + ], + "established": 1983, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1014 6204" + ], + "preferred": "0000 0001 1014 6204" + }, + { + "type": "wikidata", + "all": [ + "Q620803" + ], + "preferred": "Q620803" + } + ], + "id": "https://ror.org/00h3w1m15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://kfnl.gov.sa" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/King_Fahd_National_Library" + } + ], + "names": [ + { + "value": "King Fahad National Library", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "مكتبة الملك فهد الوطنية", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "KFNL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00j0w4q23.json b/test-relationship-delete-v2/new/00j0w4q23.json new file mode 100644 index 000000000..025ee6546 --- /dev/null +++ b/test-relationship-delete-v2/new/00j0w4q23.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2248477, + "geonames_details": { + "country_code": "SN", + "country_name": "Senegal", + "lat": 14.42196, + "lng": -16.96375, + "name": "Mbour" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/00j0w4q23", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aims-senegal.org" + } + ], + "names": [ + { + "value": "African Institute for Mathematical Sciences Senegal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AIMS Senegal", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut Africain des Sciences Mathématiques Sénégal", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00j39jc12.json b/test-relationship-delete-v2/new/00j39jc12.json new file mode 100644 index 000000000..c63ff47c8 --- /dev/null +++ b/test-relationship-delete-v2/new/00j39jc12.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 6173331, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 49.24966, + "lng": -123.11934, + "name": "Vancouver" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0476 4403" + ], + "preferred": "0000 0004 0476 4403" + } + ], + "id": "https://ror.org/00j39jc12", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://syreon.com" + } + ], + "names": [ + { + "value": "Syreon Corporation (Canada)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Syreon Clinical Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Syreon Corporation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00krnv781.json b/test-relationship-delete-v2/new/00krnv781.json new file mode 100644 index 000000000..ee3b191cc --- /dev/null +++ b/test-relationship-delete-v2/new/00krnv781.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6431 5714" + ], + "preferred": "0000 0004 6431 5714" + }, + { + "type": "wikidata", + "all": [ + "Q45132445" + ], + "preferred": "Q45132445" + }, + { + "type": "fundref", + "all": [ + "100012013" + ], + "preferred": "100012013" + } + ], + "id": "https://ror.org/00krnv781", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.rsbo.ca" + } + ], + "names": [ + { + "value": "Réseau de Recherche en Santé Buccodentaire et Osseuse", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Network for Oral and Bone Health Research", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "RSBO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00m98kt33.json b/test-relationship-delete-v2/new/00m98kt33.json new file mode 100644 index 000000000..55433d2bc --- /dev/null +++ b/test-relationship-delete-v2/new/00m98kt33.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 5367929, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 33.76696, + "lng": -118.18923, + "name": "Long Beach" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100011956" + ], + "preferred": "100011956" + } + ], + "id": "https://ror.org/00m98kt33", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.calstate.edu/impact-of-the-csu/research/ari" + } + ], + "names": [ + { + "value": "Agricultural Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "California State University Agricultural Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CSU Agricultural Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Cal State Agricultural Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ARI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00mmpjq16.json b/test-relationship-delete-v2/new/00mmpjq16.json new file mode 100644 index 000000000..849dcb96f --- /dev/null +++ b/test-relationship-delete-v2/new/00mmpjq16.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1886760, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.30408, + "lng": 120.59538, + "name": "Suzhou" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/00mmpjq16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.szydyy.com" + } + ], + "names": [ + { + "value": "Suzhou Yongding Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Hygeia Suzhou Yongding Hospital", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "苏州永鼎医院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "海吉亚苏州永鼎医院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00na1dz18.json b/test-relationship-delete-v2/new/00na1dz18.json new file mode 100644 index 000000000..8eea0b3d8 --- /dev/null +++ b/test-relationship-delete-v2/new/00na1dz18.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 4789226, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.86206, + "lng": -77.77388, + "name": "The Plains" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0723 9469" + ], + "preferred": "0000 0001 0723 9469" + }, + { + "type": "wikidata", + "all": [ + "Q4743178" + ], + "preferred": "Q4743178" + } + ], + "id": "https://ror.org/00na1dz18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://abcbirds.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/American_Bird_Conservancy" + } + ], + "names": [ + { + "value": "American Bird Conservancy", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00nffqq91.json b/test-relationship-delete-v2/new/00nffqq91.json new file mode 100644 index 000000000..3a19bfba5 --- /dev/null +++ b/test-relationship-delete-v2/new/00nffqq91.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 4274994, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.18361, + "lng": -96.57167, + "name": "Manhattan" + } + } + ], + "established": 1980, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9234 0669" + ], + "preferred": "0000 0004 9234 0669" + }, + { + "type": "fundref", + "all": [ + "100015421" + ], + "preferred": "100015421" + } + ], + "id": "https://ror.org/00nffqq91", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cancer.k-state.edu" + } + ], + "names": [ + { + "value": "Johnson Cancer Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Terry C. Johnson Center for Basic Cancer Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Kansas State University Johnson Cancer Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "JCRC", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "KSU JCRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00p094v10.json b/test-relationship-delete-v2/new/00p094v10.json new file mode 100644 index 000000000..efabefe6a --- /dev/null +++ b/test-relationship-delete-v2/new/00p094v10.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3433522, + "geonames_details": { + "country_code": "AR", + "country_name": "Argentina", + "lat": -34.5904, + "lng": -58.62904, + "name": "Hurlingham" + } + } + ], + "established": 2016, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7699 5761" + ], + "preferred": "0000 0004 7699 5761" + }, + { + "type": "wikidata", + "all": [ + "Q28501872" + ], + "preferred": "Q28501872" + } + ], + "id": "https://ror.org/00p094v10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://unahur.edu.ar" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Universidad_Nacional_de_Hurlingham" + } + ], + "names": [ + { + "value": "Universidad Nacional de Hurlingham", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National University of Hurlingham", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UNAHUR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00p7f7z86.json b/test-relationship-delete-v2/new/00p7f7z86.json new file mode 100644 index 000000000..a4b4bbd59 --- /dev/null +++ b/test-relationship-delete-v2/new/00p7f7z86.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2634840, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.81698, + "lng": -0.80835, + "name": "Waltham on the Wolds" + } + } + ], + "established": 1973, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0598 7406" + ], + "preferred": "0000 0004 0598 7406" + }, + { + "type": "wikidata", + "all": [ + "Q7966597" + ], + "preferred": "Q7966597" + }, + { + "type": "fundref", + "all": [ + "100014560" + ], + "preferred": "100014560" + } + ], + "id": "https://ror.org/00p7f7z86", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.waltham.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Waltham_Petcare_Science_Institute" + } + ], + "names": [ + { + "value": "Waltham Centre for Pet Nutrition", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00pamm417.json b/test-relationship-delete-v2/new/00pamm417.json new file mode 100644 index 000000000..5bc14631e --- /dev/null +++ b/test-relationship-delete-v2/new/00pamm417.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6325494, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.81228, + "lng": -71.21454, + "name": "Québec" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8060 7653" + ], + "preferred": "0000 0004 8060 7653" + } + ], + "id": "https://ror.org/00pamm417", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciusss-capitalenationale.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré universitaire de santé et de services sociaux de la Capitale-Nationale", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUSSS de la Capitale-Nationale", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00q1brk57.json b/test-relationship-delete-v2/new/00q1brk57.json new file mode 100644 index 000000000..ccc15b00d --- /dev/null +++ b/test-relationship-delete-v2/new/00q1brk57.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 4984247, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.27756, + "lng": -83.74088, + "name": "Ann Arbor" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6431 4500" + ], + "preferred": "0000 0004 6431 4500" + }, + { + "type": "wikidata", + "all": [ + "Q45137775" + ], + "preferred": "Q45137775" + }, + { + "type": "fundref", + "all": [ + "100011869" + ], + "preferred": "100011869" + } + ], + "id": "https://ror.org/00q1brk57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mcuaaar.org" + } + ], + "names": [ + { + "value": "Michigan Center for Urban African American Aging Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MCUAAAR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00qaqj396.json b/test-relationship-delete-v2/new/00qaqj396.json new file mode 100644 index 000000000..2d09b940b --- /dev/null +++ b/test-relationship-delete-v2/new/00qaqj396.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5746545, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 45.52345, + "lng": -122.67621, + "name": "Portland" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0860 0673" + ], + "preferred": "0000 0005 0860 0673" + } + ], + "id": "https://ror.org/00qaqj396", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fluxmagic.com" + } + ], + "names": [ + { + "value": "FluxMagic, Inc. (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FluxMagic", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FluxMagic, Inc.", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "FLUX", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00qxcft19.json b/test-relationship-delete-v2/new/00qxcft19.json new file mode 100644 index 000000000..fdae41a64 --- /dev/null +++ b/test-relationship-delete-v2/new/00qxcft19.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2657908, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 47.17242, + "lng": 8.51745, + "name": "Zug" + } + } + ], + "established": 1923, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0275 206X" + ], + "preferred": "0000 0005 0275 206X" + }, + { + "type": "fundref", + "all": [ + "100016964" + ], + "preferred": "100016964" + } + ], + "id": "https://ror.org/00qxcft19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.wernersiemens-stiftung.ch" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Werner_Siemens-Stiftung" + } + ], + "names": [ + { + "value": "Werner Siemens-Stiftung", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Werner Siemens Foundation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "WSS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00r4bna31.json b/test-relationship-delete-v2/new/00r4bna31.json new file mode 100644 index 000000000..a96375258 --- /dev/null +++ b/test-relationship-delete-v2/new/00r4bna31.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1887, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6432 5082" + ], + "preferred": "0000 0004 6432 5082" + }, + { + "type": "wikidata", + "all": [ + "Q4752272" + ], + "preferred": "Q4752272" + }, + { + "type": "fundref", + "all": [ + "100012070" + ], + "preferred": "100012070" + } + ], + "id": "https://ror.org/00r4bna31", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.anatsoc.org.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Anatomical_Society" + } + ], + "names": [ + { + "value": "Anatomical Society", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Anatomical Society of Great Britain and Ireland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UK Anatomical Society", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ASGBI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00rz8kx73.json b/test-relationship-delete-v2/new/00rz8kx73.json new file mode 100644 index 000000000..e7fe75450 --- /dev/null +++ b/test-relationship-delete-v2/new/00rz8kx73.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2641430, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.25, + "lng": -0.88333, + "name": "Northampton" + } + } + ], + "established": 1884, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1011 6814" + ], + "preferred": "0000 0001 1011 6814" + }, + { + "type": "wikidata", + "all": [ + "Q55633416" + ], + "preferred": "Q55633416" + }, + { + "type": "fundref", + "all": [ + "100014660" + ], + "preferred": "100014660" + } + ], + "id": "https://ror.org/00rz8kx73", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.addiction-ssa.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Society_for_the_Study_of_Addiction" + } + ], + "names": [ + { + "value": "Society for the Study of Addiction", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "The Society for the Study of Addiction to Alcohol and other Drugs", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SSA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00sef7t37.json b/test-relationship-delete-v2/new/00sef7t37.json new file mode 100644 index 000000000..94ed10414 --- /dev/null +++ b/test-relationship-delete-v2/new/00sef7t37.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 1606147, + "geonames_details": { + "country_code": "TH", + "country_name": "Thailand", + "lat": 7.19882, + "lng": 100.5951, + "name": "Songkhla" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7832 2704" + ], + "preferred": "0000 0004 7832 2704" + }, + { + "type": "fundref", + "all": [ + "501100010725" + ], + "preferred": "501100010725" + } + ], + "id": "https://ror.org/00sef7t37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cas.or.th" + } + ], + "names": [ + { + "value": "Center for Alcohol Studies", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CAS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00tdqgq45.json b/test-relationship-delete-v2/new/00tdqgq45.json new file mode 100644 index 000000000..30263136b --- /dev/null +++ b/test-relationship-delete-v2/new/00tdqgq45.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6138201, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 48.65007, + "lng": -72.44906, + "name": "Saint-Félicien" + } + } + ], + "established": 1971, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0216 404X" + ], + "preferred": "0000 0001 0216 404X" + }, + { + "type": "wikidata", + "all": [ + "Q3010005" + ], + "preferred": "Q3010005" + } + ], + "id": "https://ror.org/00tdqgq45", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cegepstfe.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/C%C3%A9gep_de_Saint-F%C3%A9licien" + } + ], + "names": [ + { + "value": "Cégep de Saint-Félicien", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00v9a4y41.json b/test-relationship-delete-v2/new/00v9a4y41.json new file mode 100644 index 000000000..346026be4 --- /dev/null +++ b/test-relationship-delete-v2/new/00v9a4y41.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3027301, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.92375, + "lng": 6.86933, + "name": "Chamonix" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q2945473" + ], + "preferred": "Q2945473" + } + ], + "id": "https://ror.org/00v9a4y41", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://creamontblanc.org" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_de_recherches_sur_les_%C3%A9cosyst%C3%A8mes_d%27altitude" + } + ], + "names": [ + { + "value": "CREA Mont-Blanc", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre de recherches sur les écosystèmes d'altitude", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CREA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00wd0xj77.json b/test-relationship-delete-v2/new/00wd0xj77.json new file mode 100644 index 000000000..c30a4b0cc --- /dev/null +++ b/test-relationship-delete-v2/new/00wd0xj77.json @@ -0,0 +1,60 @@ +{ + "locations": [ + { + "geonames_id": 1514588, + "geonames_details": { + "country_code": "UZ", + "country_name": "Uzbekistan", + "lat": 40.78206, + "lng": 72.34424, + "name": "Andijan" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/00wd0xj77", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://adpi.uz" + }, + { + "type": "wikipedia", + "value": "https://uz.wikipedia.org/wiki/Andijon_davlat_pedagogika_instituti" + } + ], + "names": [ + { + "value": "Andijon Davlat Pedagogika instituti", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Andijan State Pedagogical Institute", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00wtrxf04.json b/test-relationship-delete-v2/new/00wtrxf04.json new file mode 100644 index 000000000..c9bbbd3e6 --- /dev/null +++ b/test-relationship-delete-v2/new/00wtrxf04.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 4930956, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.35843, + "lng": -71.05977, + "name": "Boston" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100014872" + ], + "preferred": "100014872" + } + ], + "id": "https://ror.org/00wtrxf04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://oshercenter.org" + } + ], + "names": [ + { + "value": "Osher Center for Integrative Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00wxgxz56.json b/test-relationship-delete-v2/new/00wxgxz56.json new file mode 100644 index 000000000..852619082 --- /dev/null +++ b/test-relationship-delete-v2/new/00wxgxz56.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2510409, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.8581, + "lng": -4.02263, + "name": "Toledo" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7406 9449" + ], + "preferred": "0000 0004 7406 9449" + }, + { + "type": "wikidata", + "all": [ + "Q107611919" + ], + "preferred": "Q107611919" + } + ], + "id": "https://ror.org/00wxgxz56", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://hospitaluniversitariodetoledo.es" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Hospital_Universitario_de_Toledo" + } + ], + "names": [ + { + "value": "Hospital Universitario de Toledo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University Hospital of Toledo", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00xexfj57.json b/test-relationship-delete-v2/new/00xexfj57.json new file mode 100644 index 000000000..bccccd243 --- /dev/null +++ b/test-relationship-delete-v2/new/00xexfj57.json @@ -0,0 +1,104 @@ +{ + "locations": [ + { + "geonames_id": 112931, + "geonames_details": { + "country_code": "IR", + "country_name": "Iran", + "lat": 35.69439, + "lng": 51.42151, + "name": "Tehran" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0745 840X" + ], + "preferred": "0000 0001 0745 840X" + }, + { + "type": "wikidata", + "all": [ + "Q10860433" + ], + "preferred": "Q10860433" + } + ], + "id": "https://ror.org/00xexfj57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://irandoc.ac.ir" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Iranian_Research_Institute_for_Information_Science_and_Technology" + } + ], + "names": [ + { + "value": "Iranian Research Institute for Information Science and Technology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IranDoc", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "یرانداک", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "پژوهشگاه علوم و فناوری اطلاعات ایران (ایرانداک)", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Iranian Research Institute for Scientific Information and Documentation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "پژوهشگاه علوم و فناوری اطلاعات ایران", + "types": [ + "label" + ], + "lang": "fa" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00xp1b128.json b/test-relationship-delete-v2/new/00xp1b128.json new file mode 100644 index 000000000..4b0f2ccd9 --- /dev/null +++ b/test-relationship-delete-v2/new/00xp1b128.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5911606, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 49.26636, + "lng": -122.95263, + "name": "Burnaby" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9224 2604" + ], + "preferred": "0000 0004 9224 2604" + }, + { + "type": "fundref", + "all": [ + "501100015741" + ], + "preferred": "501100015741" + } + ], + "id": "https://ror.org/00xp1b128", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://kidsbrainhealth.ca" + } + ], + "names": [ + { + "value": "Kids Brain Health Network", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Réseau pour la Santé du Cerveau des Enfants", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "KBHN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00xsz4758.json b/test-relationship-delete-v2/new/00xsz4758.json new file mode 100644 index 000000000..6dce669ac --- /dev/null +++ b/test-relationship-delete-v2/new/00xsz4758.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9224 2380" + ], + "preferred": "0000 0004 9224 2380" + }, + { + "type": "fundref", + "all": [ + "100015763" + ], + "preferred": "100015763" + } + ], + "id": "https://ror.org/00xsz4758", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.leukaemiauk.org.uk" + } + ], + "names": [ + { + "value": "Leukaemia UK", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00xzacp61.json b/test-relationship-delete-v2/new/00xzacp61.json new file mode 100644 index 000000000..0a543334d --- /dev/null +++ b/test-relationship-delete-v2/new/00xzacp61.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2660646, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.20222, + "lng": 6.14569, + "name": "Geneva" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q105573106" + ], + "preferred": "Q105573106" + }, + { + "type": "fundref", + "all": [ + "100018011" + ], + "preferred": "100018011" + } + ], + "id": "https://ror.org/00xzacp61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nccr-swissmap.ch" + } + ], + "names": [ + { + "value": "NCCR SwissMAP", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Centres of Competence in Research SwissMAP", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SwissMAP – The Mathematics of Physics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SwissMAP", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00y1k7p64.json b/test-relationship-delete-v2/new/00y1k7p64.json new file mode 100644 index 000000000..8dabb03b8 --- /dev/null +++ b/test-relationship-delete-v2/new/00y1k7p64.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 7296779, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.9863, + "lng": -2.11252, + "name": "Gargrave" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/00y1k7p64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.scapahealthcare.com" + } + ], + "names": [ + { + "value": "Scapa Healthcare (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Scapa Healthcare", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00z5s8133.json b/test-relationship-delete-v2/new/00z5s8133.json new file mode 100644 index 000000000..549047bef --- /dev/null +++ b/test-relationship-delete-v2/new/00z5s8133.json @@ -0,0 +1,90 @@ +{ + "locations": [ + { + "geonames_id": 3871336, + "geonames_details": { + "country_code": "CL", + "country_name": "Chile", + "lat": -33.45694, + "lng": -70.64827, + "name": "Santiago" + } + } + ], + "established": 1965, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1268 3678" + ], + "preferred": "0000 0005 1268 3678" + }, + { + "type": "wikidata", + "all": [ + "Q5917327" + ], + "preferred": "Q5917327" + } + ], + "id": "https://ror.org/00z5s8133", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.infor.cl" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Instituto_Forestal" + } + ], + "names": [ + { + "value": "Instituto Forestal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto Forestal de Chile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Chilean Forestry Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Chilean Forest Institute", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/00zvfs242.json b/test-relationship-delete-v2/new/00zvfs242.json new file mode 100644 index 000000000..b8f1f9d84 --- /dev/null +++ b/test-relationship-delete-v2/new/00zvfs242.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 5419384, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.73915, + "lng": -104.9847, + "name": "Denver" + } + } + ], + "established": 1975, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2195 5584" + ], + "preferred": "0000 0001 2195 5584" + }, + { + "type": "fundref", + "all": [ + "100011471" + ], + "preferred": "100011471" + } + ], + "id": "https://ror.org/00zvfs242", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nanonline.org" + } + ], + "names": [ + { + "value": "National Academy of Neuropsychology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NAN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/010e21634.json b/test-relationship-delete-v2/new/010e21634.json new file mode 100644 index 000000000..c0745bad3 --- /dev/null +++ b/test-relationship-delete-v2/new/010e21634.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/010e21634", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.unistra.fr/recherche-1/vie-et-sante-1/medecine-cardiovasculaire-translationnelle-mcvt-ur-3074" + } + ], + "names": [ + { + "value": "Médecine Cardiovasculaire Translationnelle", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MCVT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/010j4w165.json b/test-relationship-delete-v2/new/010j4w165.json new file mode 100644 index 000000000..7ea2238ad --- /dev/null +++ b/test-relationship-delete-v2/new/010j4w165.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 106297, + "geonames_details": { + "country_code": "SA", + "country_name": "Saudi Arabia", + "lat": 28.43279, + "lng": 45.97077, + "name": "Hafar Al-Batin" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/010j4w165", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://gulf.edu.sa/en/index.php" + } + ], + "names": [ + { + "value": "Gulf College", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "كلية الخليج", + "types": [ + "label" + ], + "lang": "ar" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/0115fxs14.json b/test-relationship-delete-v2/new/0115fxs14.json new file mode 100644 index 000000000..af114b522 --- /dev/null +++ b/test-relationship-delete-v2/new/0115fxs14.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 5263045, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.0389, + "lng": -87.90647, + "name": "Milwaukee" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0390 8735" + ], + "preferred": "0000 0004 0390 8735" + }, + { + "type": "fundref", + "all": [ + "100017342" + ], + "preferred": "100017342" + } + ], + "id": "https://ror.org/0115fxs14", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cancer.mcw.edu" + } + ], + "names": [ + { + "value": "Medical College of Wisconsin Cancer Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MCWCC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/011zm6c42.json b/test-relationship-delete-v2/new/011zm6c42.json new file mode 100644 index 000000000..e2190a929 --- /dev/null +++ b/test-relationship-delete-v2/new/011zm6c42.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3463237, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -27.59667, + "lng": -48.54917, + "name": "Florianópolis" + } + } + ], + "established": 1986, + "external_ids": [], + "id": "https://ror.org/011zm6c42", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.acate.com.br" + } + ], + "names": [ + { + "value": "ACATE - Associação Catarinense de Tecnologia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Associação Catarinense de Tecnologia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Catarinense Technology Association", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ACATE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/012qsrr25.json b/test-relationship-delete-v2/new/012qsrr25.json new file mode 100644 index 000000000..0bc08d111 --- /dev/null +++ b/test-relationship-delete-v2/new/012qsrr25.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 5122432, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.44063, + "lng": -76.49661, + "name": "Ithaca" + } + } + ], + "established": 1880, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2170 7652" + ], + "preferred": "0000 0001 2170 7652" + }, + { + "type": "wikidata", + "all": [ + "Q45134801" + ], + "preferred": "Q45134801" + }, + { + "type": "fundref", + "all": [ + "100011622" + ], + "preferred": "100011622" + } + ], + "id": "https://ror.org/012qsrr25", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cals.cornell.edu/agricultural-experiment-station" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/New_York_State_Agricultural_Experiment_Station" + } + ], + "names": [ + { + "value": "Cornell University Agricultural Experiment Station", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Cornell AES", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Cornell AgriTech", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CUAES", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/013a79z51.json b/test-relationship-delete-v2/new/013a79z51.json new file mode 100644 index 000000000..ed6de6993 --- /dev/null +++ b/test-relationship-delete-v2/new/013a79z51.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 1809498, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 25.28022, + "lng": 110.29639, + "name": "Guilin" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q11111580" + ], + "preferred": "Q11111580" + } + ], + "id": "https://ror.org/013a79z51", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gltu.edu.cn" + }, + { + "type": "wikipedia", + "value": "https://zh.wikipedia.org/wiki/%E6%A1%82%E6%9E%97%E6%97%85%E6%B8%B8%E5%AD%A6%E9%99%A2" + } + ], + "names": [ + { + "value": "Guilin Tourism University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "桂林旅游专科学校", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "桂林旅游学院", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "GLTU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/013k5zx16.json b/test-relationship-delete-v2/new/013k5zx16.json new file mode 100644 index 000000000..e7003ec98 --- /dev/null +++ b/test-relationship-delete-v2/new/013k5zx16.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2834282, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 53.62937, + "lng": 11.41316, + "name": "Schwerin" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/013k5zx16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.regierung-mv.de/Landesregierung/lm/" + } + ], + "names": [ + { + "value": "Ministerium für Klimaschutz, Landwirtschaft, ländliche Räume und Umwelt des Landes Mecklenburg-Vorpommern", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry for Climate Protection, Agriculture, Rural Areas and the Environment of the State of Mecklenburg-Western Pomerania", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MKLRU-MV", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/014x5gh74.json b/test-relationship-delete-v2/new/014x5gh74.json new file mode 100644 index 000000000..04da97308 --- /dev/null +++ b/test-relationship-delete-v2/new/014x5gh74.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2647178, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 56.00614, + "lng": -4.72648, + "name": "Helensburgh" + } + } + ], + "established": 1972, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1087 8640" + ], + "preferred": "0000 0001 1087 8640" + }, + { + "type": "fundref", + "all": [ + "100011405" + ], + "preferred": "100011405" + } + ], + "id": "https://ror.org/014x5gh74", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://academyofmarketing.org" + } + ], + "names": [ + { + "value": "Academy of Marketing", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Marketing Education Group", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/015vt1f29.json b/test-relationship-delete-v2/new/015vt1f29.json new file mode 100644 index 000000000..4d31f2deb --- /dev/null +++ b/test-relationship-delete-v2/new/015vt1f29.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5942845, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.88336, + "lng": -72.48241, + "name": "Drummondville" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0746 5060" + ], + "preferred": "0000 0001 0746 5060" + }, + { + "type": "wikidata", + "all": [ + "Q3009995" + ], + "preferred": "Q3009995" + } + ], + "id": "https://ror.org/015vt1f29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cegepdrummond.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/C%C3%A9gep_de_Drummondville" + } + ], + "names": [ + { + "value": "Cégep de Drummondville", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/016782g02.json b/test-relationship-delete-v2/new/016782g02.json new file mode 100644 index 000000000..10905af6f --- /dev/null +++ b/test-relationship-delete-v2/new/016782g02.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2797114, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.93409, + "lng": 4.37213, + "name": "Grimbergen" + } + } + ], + "established": 2011, + "external_ids": [], + "id": "https://ror.org/016782g02", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://edulaweu.eu" + } + ], + "names": [ + { + "value": "European Association for Education Law and Policy", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ELA ngo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ELA vzw", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ELA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/016gy9w96.json b/test-relationship-delete-v2/new/016gy9w96.json new file mode 100644 index 000000000..26efb8c64 --- /dev/null +++ b/test-relationship-delete-v2/new/016gy9w96.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2179537, + "geonames_details": { + "country_code": "NZ", + "country_name": "New Zealand", + "lat": -41.28664, + "lng": 174.77557, + "name": "Wellington" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0727 3536" + ], + "preferred": "0000 0001 0727 3536" + }, + { + "type": "wikidata", + "all": [ + "Q1937182" + ], + "preferred": "Q1937182" + }, + { + "type": "fundref", + "all": [ + "501100009648" + ], + "preferred": "501100009648" + } + ], + "id": "https://ror.org/016gy9w96", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.education.govt.nz" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Education_%28New_Zealand%29" + } + ], + "names": [ + { + "value": "Ministry of Education", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Education of New Zealand", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "New Zealand Ministry of Education", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/016rf0n60.json b/test-relationship-delete-v2/new/016rf0n60.json new file mode 100644 index 000000000..01c64248b --- /dev/null +++ b/test-relationship-delete-v2/new/016rf0n60.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": 2005, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8308 275X" + ], + "preferred": "0000 0004 8308 275X" + }, + { + "type": "wikidata", + "all": [ + "Q21076611" + ], + "preferred": "Q21076611" + }, + { + "type": "fundref", + "all": [ + "501100013865" + ], + "preferred": "501100013865" + } + ], + "id": "https://ror.org/016rf0n60", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.stiftung-charite.de" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Stiftung_Charit%C3%A9" + } + ], + "names": [ + { + "value": "Stiftung Charité", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Charité Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Die Stiftung Charité", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/0177kw895.json b/test-relationship-delete-v2/new/0177kw895.json new file mode 100644 index 000000000..38a16c3b1 --- /dev/null +++ b/test-relationship-delete-v2/new/0177kw895.json @@ -0,0 +1,52 @@ +{ + "locations": [ + { + "geonames_id": 5128581, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.71427, + "lng": -74.00597, + "name": "New York" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012695" + ], + "preferred": "100012695" + } + ], + "id": "https://ror.org/0177kw895", + "domains": [], + "links": [], + "names": [ + { + "value": "Beatrice and Samuel A. Seaver Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/017d4c820.json b/test-relationship-delete-v2/new/017d4c820.json new file mode 100644 index 000000000..372252195 --- /dev/null +++ b/test-relationship-delete-v2/new/017d4c820.json @@ -0,0 +1,49 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/017d4c820", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://lundtrust.org.uk" + } + ], + "names": [ + { + "value": "Lund Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/018qmvm63.json b/test-relationship-delete-v2/new/018qmvm63.json new file mode 100644 index 000000000..fce57ca9a --- /dev/null +++ b/test-relationship-delete-v2/new/018qmvm63.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/018qmvm63", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ist-id.pt" + } + ], + "names": [ + { + "value": "IST-ID - Associação do Instituto Superior Técnico para a Investigação e Desenvolvimento", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Associação do Instituto Superior Técnico para a Investigação e Desenvolvimento", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IST-ID", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/018zj6955.json b/test-relationship-delete-v2/new/018zj6955.json new file mode 100644 index 000000000..1b34925f8 --- /dev/null +++ b/test-relationship-delete-v2/new/018zj6955.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3161732, + "geonames_details": { + "country_code": "NO", + "country_name": "Norway", + "lat": 60.39299, + "lng": 5.32415, + "name": "Bergen" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 0401" + ], + "preferred": "0000 0004 9225 0401" + }, + { + "type": "wikidata", + "all": [ + "Q17750234" + ], + "preferred": "Q17750234" + }, + { + "type": "fundref", + "all": [ + "100016190" + ], + "preferred": "100016190" + } + ], + "id": "https://ror.org/018zj6955", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mohnfoundation.no" + }, + { + "type": "wikipedia", + "value": "https://no.wikipedia.org/wiki/Trond_Mohn_stiftelse" + } + ], + "names": [ + { + "value": "Trond Mohn stiftelse", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Bergen Medical Research Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Trond Mohn Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/019g8w217.json b/test-relationship-delete-v2/new/019g8w217.json new file mode 100644 index 000000000..effa66be7 --- /dev/null +++ b/test-relationship-delete-v2/new/019g8w217.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q10302897" + ], + "preferred": "Q10302897" + } + ], + "id": "https://ror.org/019g8w217", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.imm.fm.ul.pt/web/imm/home" + }, + { + "type": "wikipedia", + "value": "https://pt.wikipedia.org/wiki/Instituto_de_Medicina_Molecular" + } + ], + "names": [ + { + "value": "Instituto de Medicina Molecular João Lobo Antunes", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto de Medicina Molecular", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IMM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/019mh5c80.json b/test-relationship-delete-v2/new/019mh5c80.json new file mode 100644 index 000000000..2721d7c6d --- /dev/null +++ b/test-relationship-delete-v2/new/019mh5c80.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2874545, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.12773, + "lng": 11.62916, + "name": "Magdeburg" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/019mh5c80", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mwu.sachsen-anhalt.de" + } + ], + "names": [ + { + "value": "Ministerium für Wissenschaft, Energie, Klimaschutz und Umwelt des Landes Sachsen-Anhalt", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry for Science, Energy, Climate Protection and the Environment of the State of Saxony-Anhalt", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MWU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/019vw0b32.json b/test-relationship-delete-v2/new/019vw0b32.json new file mode 100644 index 000000000..0e6b2caa5 --- /dev/null +++ b/test-relationship-delete-v2/new/019vw0b32.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 1668341, + "geonames_details": { + "country_code": "TW", + "country_name": "Taiwan", + "lat": 25.04776, + "lng": 121.53185, + "name": "Taipei" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/019vw0b32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.qps.com" + } + ], + "names": [ + { + "value": "QPS Taiwan (Taiwan)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "昌達生化", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "QPS Taiwan", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01achz565.json b/test-relationship-delete-v2/new/01achz565.json new file mode 100644 index 000000000..a060bdab7 --- /dev/null +++ b/test-relationship-delete-v2/new/01achz565.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 1784764, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 29.16667, + "lng": 120, + "name": "Zhejiang" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/01achz565", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://windeyenergy.com" + } + ], + "names": [ + { + "value": "Windey Energy Technology Group Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Windey Energy Technology Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Windey Energy Technology Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Windey Energy Technology Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "浙江运达风电股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01aqw9j77.json b/test-relationship-delete-v2/new/01aqw9j77.json new file mode 100644 index 000000000..f1f1e0b4c --- /dev/null +++ b/test-relationship-delete-v2/new/01aqw9j77.json @@ -0,0 +1,59 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0408 3253" + ], + "preferred": "0000 0004 0408 3253" + }, + { + "type": "fundref", + "all": [ + "100018158" + ], + "preferred": "100018158" + } + ], + "id": "https://ror.org/01aqw9j77", + "domains": [], + "links": [], + "names": [ + { + "value": "Hintze Family Charitable Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01ar0xf40.json b/test-relationship-delete-v2/new/01ar0xf40.json new file mode 100644 index 000000000..3615f9736 --- /dev/null +++ b/test-relationship-delete-v2/new/01ar0xf40.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 1797929, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 36.06488, + "lng": 120.38042, + "name": "Qingdao" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/01ar0xf40", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://rise.sinopec.com/rise/" + } + ], + "names": [ + { + "value": "SINOPEC Research Institute of Safety Engineering Co., Ltd.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SINOPEC Research Institute of Safety Engineering Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中石化安全工程研究院有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01bdx3k27.json b/test-relationship-delete-v2/new/01bdx3k27.json new file mode 100644 index 000000000..666788c21 --- /dev/null +++ b/test-relationship-delete-v2/new/01bdx3k27.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 294074, + "geonames_details": { + "country_code": "IL", + "country_name": "Israel", + "lat": 31.92933, + "lng": 34.79868, + "name": "Ness Ziona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0680 6846" + ], + "preferred": "0000 0005 0680 6846" + } + ], + "id": "https://ror.org/01bdx3k27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://augm.com" + } + ], + "names": [ + { + "value": "Augmanity Nano Ltd. (Israel)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Augmanity Nano", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Augmanity Nano Ltd.", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01eef7f80.json b/test-relationship-delete-v2/new/01eef7f80.json new file mode 100644 index 000000000..1064a857c --- /dev/null +++ b/test-relationship-delete-v2/new/01eef7f80.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2656915, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.48876, + "lng": -2.0989, + "name": "Ashton-under-Lyne" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7473 3848" + ], + "preferred": "0000 0004 7473 3848" + } + ], + "id": "https://ror.org/01eef7f80", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.scapa.com" + } + ], + "names": [ + { + "value": "Scapa Group (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Scapa Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Scapa Group Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Scapa Group Limited", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01f7saf07.json b/test-relationship-delete-v2/new/01f7saf07.json new file mode 100644 index 000000000..072b306d9 --- /dev/null +++ b/test-relationship-delete-v2/new/01f7saf07.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 5037649, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.97997, + "lng": -93.26384, + "name": "Minneapolis" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1260 4722" + ], + "preferred": "0000 0005 1260 4722" + }, + { + "type": "fundref", + "all": [ + "100016303" + ], + "preferred": "100016303" + } + ], + "id": "https://ror.org/01f7saf07", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://foundation.medtronic.com" + } + ], + "names": [ + { + "value": "Medtronic Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Medtronic Communities Foundation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01g0jwx42.json b/test-relationship-delete-v2/new/01g0jwx42.json new file mode 100644 index 000000000..1f57a56ce --- /dev/null +++ b/test-relationship-delete-v2/new/01g0jwx42.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 3456166, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -22.28194, + "lng": -42.53111, + "name": "Nova Friburgo" + } + } + ], + "established": 1989, + "external_ids": [], + "id": "https://ror.org/01g0jwx42", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.iprj.uerj.br" + } + ], + "names": [ + { + "value": "Instituto Politécnico do Rio de Janeiro", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto Politécnico da Universidade do Estado do Rio de Janeiro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UERJ - Instituto Politécnico", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Polytechnic Institute of Rio de Janeiro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Polytechnic Institute of the State University of Rio de Janeiro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IPRJ", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "UERJ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01g94x362.json b/test-relationship-delete-v2/new/01g94x362.json new file mode 100644 index 000000000..67d42ef74 --- /dev/null +++ b/test-relationship-delete-v2/new/01g94x362.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 2800866, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0550 8872" + ], + "preferred": "0000 0001 0550 8872" + }, + { + "type": "wikidata", + "all": [ + "Q108367206" + ], + "preferred": "Q108367206" + }, + { + "type": "fundref", + "all": [ + "501100012285" + ], + "preferred": "501100012285" + } + ], + "id": "https://ror.org/01g94x362", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ewi-vlaanderen.be" + } + ], + "names": [ + { + "value": "Departement Economie, Wetenschap & Innovatie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Departement Economie, Wetenschap en Innovatie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Department of Economy, Sciency and Innovation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Department of Economy, Sciency & Innovation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "DEWI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01gghaa40.json b/test-relationship-delete-v2/new/01gghaa40.json new file mode 100644 index 000000000..a32c40ff9 --- /dev/null +++ b/test-relationship-delete-v2/new/01gghaa40.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 965X" + ], + "preferred": "0000 0004 9225 965X" + }, + { + "type": "fundref", + "all": [ + "501100015504" + ], + "preferred": "501100015504" + } + ], + "id": "https://ror.org/01gghaa40", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://sidb.org.uk" + } + ], + "names": [ + { + "value": "Simons Initiative for the Developing Brain", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SIDB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01h6dtw92.json b/test-relationship-delete-v2/new/01h6dtw92.json new file mode 100644 index 000000000..00a9811f5 --- /dev/null +++ b/test-relationship-delete-v2/new/01h6dtw92.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5883102, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 52.28333, + "lng": -117.469, + "name": "Alberta" + } + } + ], + "established": 1965, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0262 6338" + ], + "preferred": "0000 0005 0262 6338" + }, + { + "type": "wikidata", + "all": [ + "Q28233223" + ], + "preferred": "Q28233223" + }, + { + "type": "fundref", + "all": [ + "100011787" + ], + "preferred": "100011787" + } + ], + "id": "https://ror.org/01h6dtw92", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.tav.ca" + } + ], + "names": [ + { + "value": "TAV College", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "TAV", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01hn2pk88.json b/test-relationship-delete-v2/new/01hn2pk88.json new file mode 100644 index 000000000..70b992eab --- /dev/null +++ b/test-relationship-delete-v2/new/01hn2pk88.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 1260445, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 22.40418, + "lng": 87.71746, + "name": "Pānskura" + } + } + ], + "established": 1960, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 0073" + ], + "preferred": "0000 0004 9225 0073" + }, + { + "type": "wikidata", + "all": [ + "Q7131589" + ], + "preferred": "Q7131589" + } + ], + "id": "https://ror.org/01hn2pk88", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.panskurabanamalicollege.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Panskura_Banamali_College" + } + ], + "names": [ + { + "value": "Panskura Banamali College", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Panskura Banamali Autonomous College", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PBC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01hx2yw16.json b/test-relationship-delete-v2/new/01hx2yw16.json new file mode 100644 index 000000000..f92aee1b2 --- /dev/null +++ b/test-relationship-delete-v2/new/01hx2yw16.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 146268, + "geonames_details": { + "country_code": "CY", + "country_name": "Cyprus", + "lat": 35.17531, + "lng": 33.3642, + "name": "Nicosia" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/01hx2yw16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://medicover-genetics.com" + } + ], + "names": [ + { + "value": "Medicover Genetics (Cyprus)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NIPD Genetics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIPD Genetics Public Company Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Medicover Genetics", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01kde4v59.json b/test-relationship-delete-v2/new/01kde4v59.json new file mode 100644 index 000000000..b0f1aa9f5 --- /dev/null +++ b/test-relationship-delete-v2/new/01kde4v59.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 2792482, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.87959, + "lng": 4.70093, + "name": "Leuven" + } + } + ], + "established": 2018, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 9756" + ], + "preferred": "0000 0004 9225 9756" + }, + { + "type": "wikidata", + "all": [ + "Q112085345" + ], + "preferred": "Q112085345" + }, + { + "type": "fundref", + "all": [ + "100016326" + ], + "preferred": "100016326" + } + ], + "id": "https://ror.org/01kde4v59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.eitfood.eu" + } + ], + "names": [ + { + "value": "EIT Food", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "EIT Food iVZW", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "European Institute of Innovation & Technology Food", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Food4Future", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01kk86953.json b/test-relationship-delete-v2/new/01kk86953.json new file mode 100644 index 000000000..dcc130797 --- /dev/null +++ b/test-relationship-delete-v2/new/01kk86953.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2158177, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -37.814, + "lng": 144.96332, + "name": "Melbourne" + } + } + ], + "established": 2020, + "external_ids": [], + "id": "https://ror.org/01kk86953", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.climate-resource.com" + } + ], + "names": [ + { + "value": "Climate Resource (Australia)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Climate Resource", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Climate Resource Pty Ltd", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Climate Resource Ltd", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01kn3j525.json b/test-relationship-delete-v2/new/01kn3j525.json new file mode 100644 index 000000000..804c803bd --- /dev/null +++ b/test-relationship-delete-v2/new/01kn3j525.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 4143861, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.68372, + "lng": -75.74966, + "name": "Newark" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7863 322X" + ], + "preferred": "0000 0004 7863 322X" + }, + { + "type": "fundref", + "all": [ + "100013429" + ], + "preferred": "100013429" + } + ], + "id": "https://ror.org/01kn3j525", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://de-inbre.org" + } + ], + "names": [ + { + "value": "Delaware INBRE", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Delaware IDeA Network of Biomedical Research Excellence", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01nxm2y98.json b/test-relationship-delete-v2/new/01nxm2y98.json new file mode 100644 index 000000000..bc0b1e886 --- /dev/null +++ b/test-relationship-delete-v2/new/01nxm2y98.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2639864, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.95753, + "lng": -0.5128, + "name": "Pulborough" + } + } + ], + "established": 1841, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9224 0406" + ], + "preferred": "0000 0004 9224 0406" + }, + { + "type": "wikidata", + "all": [ + "Q5561481" + ], + "preferred": "Q5561481" + }, + { + "type": "fundref", + "all": [ + "100015651" + ], + "preferred": "100015651" + } + ], + "id": "https://ror.org/01nxm2y98", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.gilchristgrants.org.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Gilchrist_Educational_Trust" + } + ], + "names": [ + { + "value": "Gilchrist Educational Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "GET", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01q4vax14.json b/test-relationship-delete-v2/new/01q4vax14.json new file mode 100644 index 000000000..c06fd3271 --- /dev/null +++ b/test-relationship-delete-v2/new/01q4vax14.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 4781708, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.55376, + "lng": -77.46026, + "name": "Richmond" + } + } + ], + "established": 1788, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q5589334" + ], + "preferred": "Q5589334" + }, + { + "type": "fundref", + "all": [ + "100006822" + ], + "preferred": "100006822" + } + ], + "id": "https://ror.org/01q4vax14", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.virginia.gov" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Government_of_Virginia" + } + ], + "names": [ + { + "value": "Commonwealth of Virginia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Government of Virginia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Government of Virginia", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01q6sg345.json b/test-relationship-delete-v2/new/01q6sg345.json new file mode 100644 index 000000000..7d0ebfe41 --- /dev/null +++ b/test-relationship-delete-v2/new/01q6sg345.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 1645524, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -6.4, + "lng": 106.81861, + "name": "Depok" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0599 5729" + ], + "preferred": "0000 0005 0599 5729" + }, + { + "type": "wikidata", + "all": [ + "Q28723622" + ], + "preferred": "Q28723622" + } + ], + "id": "https://ror.org/01q6sg345", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uiii.ac.id" + }, + { + "type": "wikipedia", + "value": "https://id.wikipedia.org/wiki/Universitas_Islam_Internasional_Indonesia" + } + ], + "names": [ + { + "value": "Universitas Islam Internasional Indonesia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Indonesian International Islamic University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UIII", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "IIIU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01qew8q20.json b/test-relationship-delete-v2/new/01qew8q20.json new file mode 100644 index 000000000..633c4365a --- /dev/null +++ b/test-relationship-delete-v2/new/01qew8q20.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3114472, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.81687, + "lng": -1.64323, + "name": "Pamplona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1273 0083" + ], + "preferred": "0000 0005 1273 0083" + } + ], + "id": "https://ror.org/01qew8q20", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cima.cun.es" + } + ], + "names": [ + { + "value": "Fundación para la Investigación Médica Aplicada", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FIMA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01qgn1839.json b/test-relationship-delete-v2/new/01qgn1839.json new file mode 100644 index 000000000..9d8d75e56 --- /dev/null +++ b/test-relationship-delete-v2/new/01qgn1839.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2649808, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.7236, + "lng": -3.52751, + "name": "Exeter" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9129 3549" + ], + "preferred": "0000 0004 9129 3549" + }, + { + "type": "fundref", + "all": [ + "501100019219" + ], + "preferred": "501100019219" + } + ], + "id": "https://ror.org/01qgn1839", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://arc-swp.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Applied Research Collaboration South West Peninsula", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PenARC", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Applied Research Collaboration South West Peninsula", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR ARC South West Peninsula", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01qh08519.json b/test-relationship-delete-v2/new/01qh08519.json new file mode 100644 index 000000000..811060e03 --- /dev/null +++ b/test-relationship-delete-v2/new/01qh08519.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2023, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q123492521" + ], + "preferred": "Q123492521" + } + ], + "id": "https://ror.org/01qh08519", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://portal.mineco.gob.es" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Ministerio_de_Transformaci%C3%B3n_Digital" + } + ], + "names": [ + { + "value": "Ministerio para la Transformación Digital y de la Función Pública", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministerio para la Transformación Digital y de la Función Pública de España", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spanish Ministry of Digital Transformation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Digital Transformation, Spain", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MTDFP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01sqena74.json b/test-relationship-delete-v2/new/01sqena74.json new file mode 100644 index 000000000..16bc4c008 --- /dev/null +++ b/test-relationship-delete-v2/new/01sqena74.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 1264527, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 13.08784, + "lng": 80.27847, + "name": "Chennai" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100013419" + ], + "preferred": "501100013419" + } + ], + "id": "https://ror.org/01sqena74", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ssn.edu.in" + } + ], + "names": [ + { + "value": "SSN Educational and Charitable Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SSN Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Sri Sivasubramaniya Nadar Trust", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01tm9b530.json b/test-relationship-delete-v2/new/01tm9b530.json new file mode 100644 index 000000000..54aebe89d --- /dev/null +++ b/test-relationship-delete-v2/new/01tm9b530.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 4931972, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.3751, + "lng": -71.10561, + "name": "Cambridge" + } + } + ], + "established": 2007, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q22073896" + ], + "preferred": "Q22073896" + }, + { + "type": "fundref", + "all": [ + "100013113" + ], + "preferred": "100013113" + } + ], + "id": "https://ror.org/01tm9b530", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.broadinstitute.org/stanley-center-for-psychiatric-research" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Stanley_Center_for_Psychiatric_Research_at_Broad_Institute" + } + ], + "names": [ + { + "value": "Stanley Center for Psychiatric Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stanley Center for Psychiatric Research at Broad Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Stanley Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Stanley Center for Psychiatric Research at the Broad Institute", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01v9qfq10.json b/test-relationship-delete-v2/new/01v9qfq10.json new file mode 100644 index 000000000..063448365 --- /dev/null +++ b/test-relationship-delete-v2/new/01v9qfq10.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2037013, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 45.75, + "lng": 126.65, + "name": "Harbin" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/01v9qfq10", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.hilem.cn" + } + ], + "names": [ + { + "value": "Harbin Institute of Large Electric Machinery", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "哈尔滨大电机研究所", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "HILEM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01vt9w950.json b/test-relationship-delete-v2/new/01vt9w950.json new file mode 100644 index 000000000..87c7ae488 --- /dev/null +++ b/test-relationship-delete-v2/new/01vt9w950.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 3452925, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -30.03283, + "lng": -51.23019, + "name": "Porto Alegre" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6088 6907" + ], + "preferred": "0000 0004 6088 6907" + }, + { + "type": "wikidata", + "all": [ + "Q10302596" + ], + "preferred": "Q10302596" + }, + { + "type": "fundref", + "all": [ + "501100007762" + ], + "preferred": "501100007762" + } + ], + "id": "https://ror.org/01vt9w950", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://pt.wikipedia.org/wiki/Instituto_Nacional_de_Ci%C3%AAncia_e_Tecnologia_Translacional_em_Medicina" + } + ], + "names": [ + { + "value": "Instituto Nacional de Ciência e Tecnologia Translacional em Medicina", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Science and Technology Institute for Translational Medicine", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "INCT-TM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01vw4c203.json b/test-relationship-delete-v2/new/01vw4c203.json new file mode 100644 index 000000000..52f8dea9e --- /dev/null +++ b/test-relationship-delete-v2/new/01vw4c203.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 2217" + ], + "preferred": "0000 0004 0369 2217" + }, + { + "type": "wikidata", + "all": [ + "Q102872417" + ], + "preferred": "Q102872417" + }, + { + "type": "fundref", + "all": [ + "501100018814" + ], + "preferred": "501100018814" + } + ], + "id": "https://ror.org/01vw4c203", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://environment-health.ac.uk" + } + ], + "names": [ + { + "value": "MRC Centre for Environment and Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Medical Research Council Centre for Environment and Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MRC-PHE Centre for Environment & Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MRC CE&H", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01wjyqy10.json b/test-relationship-delete-v2/new/01wjyqy10.json new file mode 100644 index 000000000..43464f35f --- /dev/null +++ b/test-relationship-delete-v2/new/01wjyqy10.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q116776100" + ], + "preferred": "Q116776100" + }, + { + "type": "fundref", + "all": [ + "100017151" + ], + "preferred": "100017151" + } + ], + "id": "https://ror.org/01wjyqy10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.jubileetribute.org" + } + ], + "names": [ + { + "value": "Queen Elizabeth Diamond Jubilee Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Jubilee Tribute", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01yg1g961.json b/test-relationship-delete-v2/new/01yg1g961.json new file mode 100644 index 000000000..b43f18a1a --- /dev/null +++ b/test-relationship-delete-v2/new/01yg1g961.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 3660434, + "geonames_details": { + "country_code": "EC", + "country_name": "Ecuador", + "lat": -2.73969, + "lng": -78.8486, + "name": "Azogues" + } + } + ], + "established": 2014, + "external_ids": [], + "id": "https://ror.org/01yg1g961", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://unae.edu.ec" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Universidad_Nacional_de_Educaci%C3%B3n_(UNAE)" + } + ], + "names": [ + { + "value": "Universidad Nacional de Educación", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National University Of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidad Nacional De Educación, Ecuador", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidad Nacional de Educación del Ecuador", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UNAE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01yh3na84.json b/test-relationship-delete-v2/new/01yh3na84.json new file mode 100644 index 000000000..679e4a1b0 --- /dev/null +++ b/test-relationship-delete-v2/new/01yh3na84.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1621177, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -7.80139, + "lng": 110.36472, + "name": "Yogyakarta" + } + } + ], + "established": 2020, + "external_ids": [], + "id": "https://ror.org/01yh3na84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://idpublishing.org" + } + ], + "names": [ + { + "value": "Indonesian Journal Publisher (Indonesia)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IDPublishing", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Indonesian Journal Publisher", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Penerbit Jurnal Indonesia", + "types": [ + "label" + ], + "lang": "id" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/01z6fgx85.json b/test-relationship-delete-v2/new/01z6fgx85.json new file mode 100644 index 000000000..85016b324 --- /dev/null +++ b/test-relationship-delete-v2/new/01z6fgx85.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9291 8328" + ], + "preferred": "0000 0004 9291 8328" + }, + { + "type": "wikidata", + "all": [ + "Q38180956" + ], + "preferred": "Q38180956" + } + ], + "id": "https://ror.org/01z6fgx85", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ceic.com/gjnyjtwwEn/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/China_Energy_Investment" + } + ], + "names": [ + { + "value": "CHN Energy (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CHN Energy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CHN ENERGY Investment Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CHN ENERGY Investment Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CHN ENERGY Investment Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "国家能源投资集团", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/020rfvw83.json b/test-relationship-delete-v2/new/020rfvw83.json new file mode 100644 index 000000000..f568fe4e6 --- /dev/null +++ b/test-relationship-delete-v2/new/020rfvw83.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q10302791" + ], + "preferred": "Q10302791" + } + ], + "id": "https://ror.org/020rfvw83", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ics.ulisboa.pt" + }, + { + "type": "wikipedia", + "value": "https://pt.wikipedia.org/wiki/Instituto_de_Ci%C3%AAncias_Sociais_da_Universidade_de_Lisboa" + } + ], + "names": [ + { + "value": "Instituto de Ciências Sociais", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto de Ciências Sociais da Universidade de Lisboa", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institute of Social Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Lisbon Institute of Social Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ICS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/021354321.json b/test-relationship-delete-v2/new/021354321.json new file mode 100644 index 000000000..ee5dd6c71 --- /dev/null +++ b/test-relationship-delete-v2/new/021354321.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2800866, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6819 7604" + ], + "preferred": "0000 0004 6819 7604" + }, + { + "type": "fundref", + "all": [ + "501100011068" + ], + "preferred": "501100011068" + } + ], + "id": "https://ror.org/021354321", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fondationsaintluc.be" + } + ], + "names": [ + { + "value": "Fondation Saint-Luc", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fondation Saint Luc", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Saint Luc Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Saint-Luc Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/021954z67.json b/test-relationship-delete-v2/new/021954z67.json new file mode 100644 index 000000000..1a50d59ba --- /dev/null +++ b/test-relationship-delete-v2/new/021954z67.json @@ -0,0 +1,106 @@ +{ + "locations": [ + { + "geonames_id": 2648108, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.45, + "lng": -2.23333, + "name": "Greater Manchester" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1089 7795" + ], + "preferred": "0000 0005 1089 7795" + }, + { + "type": "fundref", + "all": [ + "501100012358" + ], + "preferred": "501100012358" + } + ], + "id": "https://ror.org/021954z67", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://arc-gm.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Applied Research Collaboration Greater Manchester", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care Greater Manchester", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC Greater Manchester", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR Collaborations for Leadership in Applied Health Research and Care", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ARC-GM", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CLAHRC GM", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC GM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/022pakb16.json b/test-relationship-delete-v2/new/022pakb16.json new file mode 100644 index 000000000..85c344d53 --- /dev/null +++ b/test-relationship-delete-v2/new/022pakb16.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3172394, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 40.85216, + "lng": 14.26811, + "name": "Naples" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/022pakb16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.create.unina.it" + } + ], + "names": [ + { + "value": "C.R.E.A.T.E. Consorzio Di Ricerca Per L'Energia E Le Applicazioni Technologiche Dell'Elettromagnetismo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Consorzio Di Ricerca Per L'Energia E Le Applicazioni Technologiche Dell'Elettromagnetismo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Consortium for Energy Research and Technological Applications of Electromagnetism", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CREATE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/023a2er20.json b/test-relationship-delete-v2/new/023a2er20.json new file mode 100644 index 000000000..dc3a5c734 --- /dev/null +++ b/test-relationship-delete-v2/new/023a2er20.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2653941, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.2, + "lng": 0.11667, + "name": "Cambridge" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100014679" + ], + "preferred": "501100014679" + } + ], + "id": "https://ror.org/023a2er20", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cruk.cam.ac.uk/research-groups/brindle-group/cancer-imaging-centre/" + } + ], + "names": [ + { + "value": "Cancer Imaging Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CRUK and EPSRC Cancer Imaging Centre in Cambridge and Manchester", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02525b202.json b/test-relationship-delete-v2/new/02525b202.json new file mode 100644 index 000000000..a8ecdbf04 --- /dev/null +++ b/test-relationship-delete-v2/new/02525b202.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02525b202", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.rechsand.com" + } + ], + "names": [ + { + "value": "Beijing Renchuang Technology Group Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Beijing Renchuang Technology Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Beijing Renchuang Technology Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Beijing Renchuang Technology Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Beijing Renchuang Technology Group Company Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "北京仁创科技集团有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/025dmzr60.json b/test-relationship-delete-v2/new/025dmzr60.json new file mode 100644 index 000000000..473a12d20 --- /dev/null +++ b/test-relationship-delete-v2/new/025dmzr60.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 4177887, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 26.71534, + "lng": -80.05337, + "name": "West Palm Beach" + } + } + ], + "established": 1903, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0508 0660" + ], + "preferred": "0000 0004 0508 0660" + }, + { + "type": "wikidata", + "all": [ + "Q4743883" + ], + "preferred": "Q4743883" + } + ], + "id": "https://ror.org/025dmzr60", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.theaga.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/American_Genetic_Association" + } + ], + "names": [ + { + "value": "American Genetic Association", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AGA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/026z37f85.json b/test-relationship-delete-v2/new/026z37f85.json new file mode 100644 index 000000000..b2a7815e6 --- /dev/null +++ b/test-relationship-delete-v2/new/026z37f85.json @@ -0,0 +1,83 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q9077957" + ], + "preferred": "Q9077957" + } + ], + "id": "https://ror.org/026z37f85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.sanidad.gob.es/organizacion/sns/home.htm" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Spanish_National_Health_System" + } + ], + "names": [ + { + "value": "Sistema Nacional de Salud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Sistema Nacional de Salud de España", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spanish National Health System", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Health System of Spain", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/027620g33.json b/test-relationship-delete-v2/new/027620g33.json new file mode 100644 index 000000000..caa42221f --- /dev/null +++ b/test-relationship-delete-v2/new/027620g33.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 3173435, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + } + } + ], + "established": 1994, + "external_ids": [], + "id": "https://ror.org/027620g33", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fondazionebassetti.org" + } + ], + "names": [ + { + "value": "Fondazione Giannino Bassetti", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FGB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02a2pkk25.json b/test-relationship-delete-v2/new/02a2pkk25.json new file mode 100644 index 000000000..4bde04206 --- /dev/null +++ b/test-relationship-delete-v2/new/02a2pkk25.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02a2pkk25", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.forum-transregionale-studien.de" + } + ], + "names": [ + { + "value": "Forum transregionale Studien e.V.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Forum transregionale Studien", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Forum for Transregional Studies", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02a37a132.json b/test-relationship-delete-v2/new/02a37a132.json new file mode 100644 index 000000000..bc79161f6 --- /dev/null +++ b/test-relationship-delete-v2/new/02a37a132.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1248991, + "geonames_details": { + "country_code": "LK", + "country_name": "Sri Lanka", + "lat": 6.93548, + "lng": 79.84868, + "name": "Colombo" + } + } + ], + "established": 2000, + "external_ids": [], + "id": "https://ror.org/02a37a132", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://icbt.lk" + } + ], + "names": [ + { + "value": "International College of Business and Technology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "International College of Business & Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ICBT Campus", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ICBT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02ackr434.json b/test-relationship-delete-v2/new/02ackr434.json new file mode 100644 index 000000000..7eb8660e6 --- /dev/null +++ b/test-relationship-delete-v2/new/02ackr434.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 4931972, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.3751, + "lng": -71.10561, + "name": "Cambridge" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0599 7276" + ], + "preferred": "0000 0004 0599 7276" + }, + { + "type": "wikidata", + "all": [ + "Q19604401" + ], + "preferred": "Q19604401" + }, + { + "type": "fundref", + "all": [ + "100019714" + ], + "preferred": "100019714" + } + ], + "id": "https://ror.org/02ackr434", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.foundationmedicine.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Foundation_Medicine" + } + ], + "names": [ + { + "value": "Foundation Medicine (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Foundation Medicine", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02b42av24.json b/test-relationship-delete-v2/new/02b42av24.json new file mode 100644 index 000000000..11ad3e5c5 --- /dev/null +++ b/test-relationship-delete-v2/new/02b42av24.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 601294, + "geonames_details": { + "country_code": "UZ", + "country_name": "Uzbekistan", + "lat": 42.45306, + "lng": 59.61028, + "name": "Nukus" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/02b42av24", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://tdaunukus.uz" + } + ], + "names": [ + { + "value": "Institute of Agriculture and Agrotechnologies of Karakalpakstan", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Karakalpak Institute of Agriculture and Agrotechnologies", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Институт сельского хозяйства и агротехнологий Каракалпакстана", + "types": [ + "label" + ], + "lang": "ru" + }, + { + "value": "Qoraqalpog'iston qishloq xo'jaligi va agrotexnologiyalar instituti", + "types": [ + "label" + ], + "lang": "uz" + }, + { + "value": "Qaraqalpaqstan awıl xojalıǵı hám agrotexnologiyalar institutı", + "types": [ + "label" + ], + "lang": "tt" + }, + { + "value": "IAAK", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02bf8e216.json b/test-relationship-delete-v2/new/02bf8e216.json new file mode 100644 index 000000000..315cb7784 --- /dev/null +++ b/test-relationship-delete-v2/new/02bf8e216.json @@ -0,0 +1,74 @@ +{ + "locations": [ + { + "geonames_id": 3435910, + "geonames_details": { + "country_code": "AR", + "country_name": "Argentina", + "lat": -34.61315, + "lng": -58.37723, + "name": "Buenos Aires" + } + } + ], + "established": 2007, + "external_ids": [], + "id": "https://ror.org/02bf8e216", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.editorialteseo.com" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Editorial_Teseo" + } + ], + "names": [ + { + "value": "Teseo (Argentina)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Editorial Teseo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TeseoPress", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Teseo", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02bjrmf75.json b/test-relationship-delete-v2/new/02bjrmf75.json new file mode 100644 index 000000000..b4fa1785b --- /dev/null +++ b/test-relationship-delete-v2/new/02bjrmf75.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2886242, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.93333, + "lng": 6.95, + "name": "Cologne" + } + } + ], + "established": 1999, + "external_ids": [], + "id": "https://ror.org/02bjrmf75", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.dip.de" + } + ], + "names": [ + { + "value": "Deutsche Institut für angewandte Pflegeforschung e.V.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Deutsche Institut für angewandte Pflegeforschung", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "German Institute of Applied Nursing Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DIP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02cc3ss06.json b/test-relationship-delete-v2/new/02cc3ss06.json new file mode 100644 index 000000000..65f65edec --- /dev/null +++ b/test-relationship-delete-v2/new/02cc3ss06.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0630 7561" + ], + "preferred": "0000 0005 0630 7561" + }, + { + "type": "fundref", + "all": [ + "501100022111" + ], + "preferred": "501100022111" + } + ], + "id": "https://ror.org/02cc3ss06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://huofamilyfoundation.org" + } + ], + "names": [ + { + "value": "Huo Family Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02cq2e244.json b/test-relationship-delete-v2/new/02cq2e244.json new file mode 100644 index 000000000..aff1135cf --- /dev/null +++ b/test-relationship-delete-v2/new/02cq2e244.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 5327684, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.87159, + "lng": -122.27275, + "name": "Berkeley" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2299 1026" + ], + "preferred": "0000 0001 2299 1026" + }, + { + "type": "fundref", + "all": [ + "100012597" + ], + "preferred": "100012597" + } + ], + "id": "https://ror.org/02cq2e244", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://peer.berkeley.edu" + } + ], + "names": [ + { + "value": "Pacific Earthquake Engineering Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "UC Berkeley Pacific Earthquake Engineering Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of California Berkeley Pacific Earthquake Engineering Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PEER", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "UCB PEER", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02cwv3a12.json b/test-relationship-delete-v2/new/02cwv3a12.json new file mode 100644 index 000000000..279c58ed8 --- /dev/null +++ b/test-relationship-delete-v2/new/02cwv3a12.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2654588, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.40606, + "lng": 0.01519, + "name": "Bromley" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7782 4876" + ], + "preferred": "0000 0004 7782 4876" + }, + { + "type": "wikidata", + "all": [ + "Q116236067" + ], + "preferred": "Q116236067" + }, + { + "type": "fundref", + "all": [ + "100013421" + ], + "preferred": "100013421" + } + ], + "id": "https://ror.org/02cwv3a12", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pinkribbonfoundation.org.uk" + } + ], + "names": [ + { + "value": "Pink Ribbon Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PRF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02fkq9g11.json b/test-relationship-delete-v2/new/02fkq9g11.json new file mode 100644 index 000000000..f42d803bd --- /dev/null +++ b/test-relationship-delete-v2/new/02fkq9g11.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 1808956, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 36.18389, + "lng": 113.10528, + "name": "Changzhi" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02fkq9g11", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.czszyyjsfsyy.cn" + } + ], + "names": [ + { + "value": "Affiliated Hospital of Changzhi Institute of Traditional Chinese Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Changzhi Traditional Chinese Medicine Hospital", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "长治市中医研究所附属医院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02ftfma65.json b/test-relationship-delete-v2/new/02ftfma65.json new file mode 100644 index 000000000..114b70eb0 --- /dev/null +++ b/test-relationship-delete-v2/new/02ftfma65.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 5967629, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.54594, + "lng": -80.25599, + "name": "Guelph" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100015516" + ], + "preferred": "501100015516" + } + ], + "id": "https://ror.org/02ftfma65", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uoguelph.ca/alliance/" + } + ], + "names": [ + { + "value": "Ontario Agri-Food Innovation Alliance", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02fy17q72.json b/test-relationship-delete-v2/new/02fy17q72.json new file mode 100644 index 000000000..7004924e6 --- /dev/null +++ b/test-relationship-delete-v2/new/02fy17q72.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3648522, + "geonames_details": { + "country_code": "VE", + "country_name": "Venezuela", + "lat": 10.0647, + "lng": -69.35703, + "name": "Barquisimeto" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0601 0063" + ], + "preferred": "0000 0005 0601 0063" + } + ], + "id": "https://ror.org/02fy17q72", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aulavirtual.web.ve" + } + ], + "names": [ + { + "value": "Fundación Aula Virtual", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Aula Virtual Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FAV", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02gqg2511.json b/test-relationship-delete-v2/new/02gqg2511.json new file mode 100644 index 000000000..1b2c70e5e --- /dev/null +++ b/test-relationship-delete-v2/new/02gqg2511.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100015091" + ], + "preferred": "501100015091" + } + ], + "id": "https://ror.org/02gqg2511", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.clahrc-southlondon.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Collaboration for Leadership in Applied Health Research and Care South London", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC South London", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care South London", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02hb5yj49.json b/test-relationship-delete-v2/new/02hb5yj49.json new file mode 100644 index 000000000..b474cb1fb --- /dev/null +++ b/test-relationship-delete-v2/new/02hb5yj49.json @@ -0,0 +1,61 @@ +{ + "locations": [ + { + "geonames_id": 4994358, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.96336, + "lng": -85.66809, + "name": "Grand Rapids" + } + } + ], + "established": 2022, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q123561060" + ], + "preferred": "Q123561060" + } + ], + "id": "https://ror.org/02hb5yj49", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://corewellhealth.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Corewell_Health" + } + ], + "names": [ + { + "value": "Corewell Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02hn9hc43.json b/test-relationship-delete-v2/new/02hn9hc43.json new file mode 100644 index 000000000..f687475bc --- /dev/null +++ b/test-relationship-delete-v2/new/02hn9hc43.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2659994, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.516, + "lng": 6.63282, + "name": "Lausanne" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02hn9hc43", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.swisslumix.com" + } + ], + "names": [ + { + "value": "SwissLumix (Switzerland)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SwissLumix", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SwissLumix Sarl", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02kvgs502.json b/test-relationship-delete-v2/new/02kvgs502.json new file mode 100644 index 000000000..dac524614 --- /dev/null +++ b/test-relationship-delete-v2/new/02kvgs502.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1816971, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 38.87288, + "lng": 115.46246, + "name": "Baoding" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02kvgs502", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.yingligroup.com" + } + ], + "names": [ + { + "value": "Yingli Energy Technology Group (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Yingli Energy Technology Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yingli", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "英利能源科技集团", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02kw1ws04.json b/test-relationship-delete-v2/new/02kw1ws04.json new file mode 100644 index 000000000..1b9d95646 --- /dev/null +++ b/test-relationship-delete-v2/new/02kw1ws04.json @@ -0,0 +1,79 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1087 9968" + ], + "preferred": "0000 0005 1087 9968" + } + ], + "id": "https://ror.org/02kw1ws04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bigai.ai" + } + ], + "names": [ + { + "value": "Beijing Institute for General Artificial Intelligence", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Beijing Institute for General Artificial Intelligence (BIGAI)", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "北京通用人工智能研究院", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "BIGAI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02mb2dn67.json b/test-relationship-delete-v2/new/02mb2dn67.json new file mode 100644 index 000000000..4a47daa38 --- /dev/null +++ b/test-relationship-delete-v2/new/02mb2dn67.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 1793511, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 37.86944, + "lng": 112.56028, + "name": "Taiyuan" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8342 6380" + ], + "preferred": "0000 0004 8342 6380" + } + ], + "id": "https://ror.org/02mb2dn67", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sx.sgcc.com.cn" + } + ], + "names": [ + { + "value": "State Grid Shanxi Electric Power Company (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "国网山西省电力公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02qqvpd39.json b/test-relationship-delete-v2/new/02qqvpd39.json new file mode 100644 index 000000000..1da8cf3ed --- /dev/null +++ b/test-relationship-delete-v2/new/02qqvpd39.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 2859147, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.25, + "lng": 11.56667, + "name": "Oberschleißheim" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q101378210" + ], + "preferred": "Q101378210" + } + ], + "id": "https://ror.org/02qqvpd39", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vetmed.uni-muenchen.de/einrichtungen/klini_einrichtungen/index.html" + } + ], + "names": [ + { + "value": "Zentrum für Klinische Tiermedizin", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02r40rn49.json b/test-relationship-delete-v2/new/02r40rn49.json new file mode 100644 index 000000000..834d2f8d0 --- /dev/null +++ b/test-relationship-delete-v2/new/02r40rn49.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2078025, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -34.92866, + "lng": 138.59863, + "name": "Adelaide" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000000417963647" + ], + "preferred": "0000000417963647" + }, + { + "type": "wikidata", + "all": [ + "Q58347341" + ], + "preferred": "Q58347341" + } + ], + "id": "https://ror.org/02r40rn49", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://centraladelaide.health.sa.gov.au" + } + ], + "names": [ + { + "value": "Central Adelaide Local Health Network", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CALHN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02r4fqa76.json b/test-relationship-delete-v2/new/02r4fqa76.json new file mode 100644 index 000000000..6c3ba6642 --- /dev/null +++ b/test-relationship-delete-v2/new/02r4fqa76.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2641673, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 54.97328, + "lng": -1.61396, + "name": "Newcastle upon Tyne" + } + } + ], + "established": 2016, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100017507" + ], + "preferred": "501100017507" + } + ], + "id": "https://ror.org/02r4fqa76", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ncl.ac.uk/cesi/" + } + ], + "names": [ + { + "value": "National Centre for Energy Systems Integration", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "EPSRC National Centre for Energy Systems Integration", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Engineering and Physical Sciences Research Council National Centre for Energy Systems Integration", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CESI", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "EPSRC CESI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02stdqb15.json b/test-relationship-delete-v2/new/02stdqb15.json new file mode 100644 index 000000000..83881257f --- /dev/null +++ b/test-relationship-delete-v2/new/02stdqb15.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 5967629, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.54594, + "lng": -80.25599, + "name": "Guelph" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 0217" + ], + "preferred": "0000 0004 9225 0217" + }, + { + "type": "fundref", + "all": [ + "100015900" + ], + "preferred": "100015900" + } + ], + "id": "https://ror.org/02stdqb15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://pettrust.uoguelph.ca" + } + ], + "names": [ + { + "value": "OVC Pet Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ontario Veterinary College Pet Trust", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02vrchf15.json b/test-relationship-delete-v2/new/02vrchf15.json new file mode 100644 index 000000000..1b44223b6 --- /dev/null +++ b/test-relationship-delete-v2/new/02vrchf15.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2988358, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.31117, + "lng": -0.35583, + "name": "Pau" + } + } + ], + "established": 1969, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q3117948" + ], + "preferred": "Q3117948" + } + ], + "id": "https://ror.org/02vrchf15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.esc-pau.fr" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Groupe_%C3%89cole_sup%C3%A9rieure_de_commerce_de_Pau" + } + ], + "names": [ + { + "value": "éklore-ed School of Management", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Eklore School of Management", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ESC Pau Business School", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02vzjz256.json b/test-relationship-delete-v2/new/02vzjz256.json new file mode 100644 index 000000000..9c66dd0b2 --- /dev/null +++ b/test-relationship-delete-v2/new/02vzjz256.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2636389, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.55797, + "lng": -1.78116, + "name": "Swindon" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2189 5796" + ], + "preferred": "0000 0001 2189 5796" + }, + { + "type": "wikidata", + "all": [ + "Q2054530" + ], + "preferred": "Q2054530" + }, + { + "type": "fundref", + "all": [ + "501100015724" + ], + "preferred": "501100015724" + } + ], + "id": "https://ror.org/02vzjz256", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Particle_Physics_and_Astronomy_Research_Council" + } + ], + "names": [ + { + "value": "Particle Physics and Astronomy Research Council", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02w3bnx54.json b/test-relationship-delete-v2/new/02w3bnx54.json new file mode 100644 index 000000000..bf789ba53 --- /dev/null +++ b/test-relationship-delete-v2/new/02w3bnx54.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": 1967, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8800 9608" + ], + "preferred": "0000 0000 8800 9608" + }, + { + "type": "wikidata", + "all": [ + "Q3152136" + ], + "preferred": "Q3152136" + } + ], + "id": "https://ror.org/02w3bnx54", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ithq.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Institut_de_tourisme_et_d%27h%C3%B4tellerie_du_Qu%C3%A9bec" + } + ], + "names": [ + { + "value": "Institut de tourisme et d'hôtellerie du Québec", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ITHQ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02wjh7838.json b/test-relationship-delete-v2/new/02wjh7838.json new file mode 100644 index 000000000..ca665a608 --- /dev/null +++ b/test-relationship-delete-v2/new/02wjh7838.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 4347778, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012678" + ], + "preferred": "100012678" + } + ], + "id": "https://ror.org/02wjh7838", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.morgan.edu/soe/ntc" + } + ], + "names": [ + { + "value": "National Transportation Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Morgan State University National Transportation Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NTC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02x2py139.json b/test-relationship-delete-v2/new/02x2py139.json new file mode 100644 index 000000000..e6c5ca748 --- /dev/null +++ b/test-relationship-delete-v2/new/02x2py139.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 1609350, + "geonames_details": { + "country_code": "TH", + "country_name": "Thailand", + "lat": 13.75398, + "lng": 100.50144, + "name": "Bangkok" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0482 0559" + ], + "preferred": "0000 0004 0482 0559" + }, + { + "type": "wikidata", + "all": [ + "Q18394263" + ], + "preferred": "Q18394263" + } + ], + "id": "https://ror.org/02x2py139", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.thonburi-u.ac.th" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Thonburi_University" + } + ], + "names": [ + { + "value": "Thonburi University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Thonburi College of Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Thonburi College", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TRU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02x402970.json b/test-relationship-delete-v2/new/02x402970.json new file mode 100644 index 000000000..08fc87b7d --- /dev/null +++ b/test-relationship-delete-v2/new/02x402970.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2509954, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.47391, + "lng": -0.37966, + "name": "Valencia" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02x402970", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ipronics.com" + } + ], + "names": [ + { + "value": "iPronics Programmable Photonics (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "iPronics Programmable Photonics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "iPronics Programmable Photonics, S.L.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "iPronics", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02x9gn510.json b/test-relationship-delete-v2/new/02x9gn510.json new file mode 100644 index 000000000..635bcc42e --- /dev/null +++ b/test-relationship-delete-v2/new/02x9gn510.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6088132, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.23085, + "lng": -72.61292, + "name": "Nicolet" + } + } + ], + "established": 1969, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9471 627X" + ], + "preferred": "0000 0000 9471 627X" + }, + { + "type": "wikidata", + "all": [ + "Q3578131" + ], + "preferred": "Q3578131" + } + ], + "id": "https://ror.org/02x9gn510", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.enpq.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/%C3%89cole_nationale_de_police_du_Qu%C3%A9bec" + } + ], + "names": [ + { + "value": "École nationale de police du Québec", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ENPQ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/02zap0h66.json b/test-relationship-delete-v2/new/02zap0h66.json new file mode 100644 index 000000000..847b75046 --- /dev/null +++ b/test-relationship-delete-v2/new/02zap0h66.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5987650, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.0164, + "lng": -73.4236, + "name": "Joliette" + } + } + ], + "established": 1988, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8059 5285" + ], + "preferred": "0000 0004 8059 5285" + } + ], + "id": "https://ror.org/02zap0h66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cisss-lanaudiere.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de Lanaudière", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de Lanaudière", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/0300g2m85.json b/test-relationship-delete-v2/new/0300g2m85.json new file mode 100644 index 000000000..f69f832a2 --- /dev/null +++ b/test-relationship-delete-v2/new/0300g2m85.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2654993, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.79391, + "lng": -1.75206, + "name": "Bradford" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100014338" + ], + "preferred": "501100014338" + } + ], + "id": "https://ror.org/0300g2m85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.arc-yh.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC Yorkshire and Humber", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC YH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/031tb8x29.json b/test-relationship-delete-v2/new/031tb8x29.json new file mode 100644 index 000000000..97b75b30c --- /dev/null +++ b/test-relationship-delete-v2/new/031tb8x29.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2655642, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.84861, + "lng": -1.83857, + "name": "Bingley" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8307 2092" + ], + "preferred": "0000 0004 8307 2092" + }, + { + "type": "fundref", + "all": [ + "100014894" + ], + "preferred": "100014894" + } + ], + "id": "https://ror.org/031tb8x29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.emeraldgrouppublishing.com" + } + ], + "names": [ + { + "value": "The Emerald Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Emerald Foundation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/0329bcd18.json b/test-relationship-delete-v2/new/0329bcd18.json new file mode 100644 index 000000000..1ec42f55f --- /dev/null +++ b/test-relationship-delete-v2/new/0329bcd18.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3171180, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 43.1122, + "lng": 12.38878, + "name": "Perugia" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2337 4150" + ], + "preferred": "0000 0001 2337 4150" + }, + { + "type": "wikidata", + "all": [ + "Q30888354" + ], + "preferred": "Q30888354" + }, + { + "type": "fundref", + "all": [ + "501100009889" + ], + "preferred": "501100009889" + } + ], + "id": "https://ror.org/0329bcd18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.regione.umbria.it/la-regione" + }, + { + "type": "wikipedia", + "value": "https://it.wikipedia.org/wiki/Giunta_regionale_dell%27Umbria" + } + ], + "names": [ + { + "value": "Regione Umbria", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Region of Umbria", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Umbria Region", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/033frs404.json b/test-relationship-delete-v2/new/033frs404.json new file mode 100644 index 000000000..e5cb55e51 --- /dev/null +++ b/test-relationship-delete-v2/new/033frs404.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1972, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2175 7086" + ], + "preferred": "0000 0001 2175 7086" + }, + { + "type": "fundref", + "all": [ + "100014693" + ], + "preferred": "100014693" + } + ], + "id": "https://ror.org/033frs404", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://sempre.org.uk" + } + ], + "names": [ + { + "value": "Society for Education, Music and Psychology Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SEMPRE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/033svsm10.json b/test-relationship-delete-v2/new/033svsm10.json new file mode 100644 index 000000000..399054356 --- /dev/null +++ b/test-relationship-delete-v2/new/033svsm10.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2648108, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.45, + "lng": -2.23333, + "name": "Greater Manchester" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0612 4047" + ], + "preferred": "0000 0004 0612 4047" + }, + { + "type": "wikidata", + "all": [ + "Q24060265" + ], + "preferred": "Q24060265" + }, + { + "type": "fundref", + "all": [ + "501100017008" + ], + "preferred": "501100017008" + } + ], + "id": "https://ror.org/033svsm10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.crukcentre.manchester.ac.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Manchester_Cancer_Research_Centre" + } + ], + "names": [ + { + "value": "Cancer Research UK Manchester Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CRUK Manchester Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Manchester Cancer Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MCRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/034a0rc87.json b/test-relationship-delete-v2/new/034a0rc87.json new file mode 100644 index 000000000..a7b83f876 --- /dev/null +++ b/test-relationship-delete-v2/new/034a0rc87.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2966685, + "geonames_details": { + "country_code": "IE", + "country_name": "Ireland", + "lat": 53.33082, + "lng": -6.23643, + "name": "Ballsbridge" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7784 8691" + ], + "preferred": "0000 0004 7784 8691" + }, + { + "type": "wikidata", + "all": [ + "Q122978876" + ], + "preferred": "Q122978876" + }, + { + "type": "fundref", + "all": [ + "100014251" + ], + "preferred": "100014251" + } + ], + "id": "https://ror.org/034a0rc87", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://heranet.info" + } + ], + "names": [ + { + "value": "Humanities in the European Research Area", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "HERA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/034d74a71.json b/test-relationship-delete-v2/new/034d74a71.json new file mode 100644 index 000000000..b1e7cf4c0 --- /dev/null +++ b/test-relationship-delete-v2/new/034d74a71.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6782 3650" + ], + "preferred": "0000 0004 6782 3650" + } + ], + "id": "https://ror.org/034d74a71", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fciencias-id.pt" + } + ], + "names": [ + { + "value": "FCiências.ID - Associação para a Investigação e Desenvolvimento de Ciências", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FCiências.ID", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/034x1af55.json b/test-relationship-delete-v2/new/034x1af55.json new file mode 100644 index 000000000..602978b96 --- /dev/null +++ b/test-relationship-delete-v2/new/034x1af55.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6453323, + "geonames_details": { + "country_code": "NO", + "country_name": "Norway", + "lat": 67.28325, + "lng": 14.38319, + "name": "Bodø" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2326 7101" + ], + "preferred": "0000 0001 2326 7101" + }, + { + "type": "wikidata", + "all": [ + "Q1779468" + ], + "preferred": "Q1779468" + }, + { + "type": "fundref", + "all": [ + "100015995" + ], + "preferred": "100015995" + } + ], + "id": "https://ror.org/034x1af55", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://uin.no" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Nordland" + } + ], + "names": [ + { + "value": "University of Nordland", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/035z18f46.json b/test-relationship-delete-v2/new/035z18f46.json new file mode 100644 index 000000000..668dc186e --- /dev/null +++ b/test-relationship-delete-v2/new/035z18f46.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 1793511, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 37.86944, + "lng": 112.56028, + "name": "Taiyuan" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/035z18f46", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://sklqo.sxu.edu.cn" + } + ], + "names": [ + { + "value": "State Key Laboratory of Quantum Optics and Quantum Optics Devices", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Quantum Optics and Quantum Optics Devices", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "量子光学与光量子器件国家重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/036wkjd70.json b/test-relationship-delete-v2/new/036wkjd70.json new file mode 100644 index 000000000..73049019d --- /dev/null +++ b/test-relationship-delete-v2/new/036wkjd70.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 4932869, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.59981, + "lng": -71.36728, + "name": "Chelmsford" + } + } + ], + "established": 1980, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0413 2799" + ], + "preferred": "0000 0004 0413 2799" + }, + { + "type": "wikidata", + "all": [ + "Q118075142" + ], + "preferred": "Q118075142" + }, + { + "type": "fundref", + "all": [ + "100015345" + ], + "preferred": "100015345" + } + ], + "id": "https://ror.org/036wkjd70", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.zoll.com" + } + ], + "names": [ + { + "value": "ZOLL Medical Corporation (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ZOLL", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ZOLL Medical", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ZOLL Medical Corporation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ZMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/036xwe059.json b/test-relationship-delete-v2/new/036xwe059.json new file mode 100644 index 000000000..02c3ab569 --- /dev/null +++ b/test-relationship-delete-v2/new/036xwe059.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2934246, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.22172, + "lng": 6.77616, + "name": "Düsseldorf" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/036xwe059", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.mlv.nrw.de" + } + ], + "names": [ + { + "value": "Ministerium für Landwirtschaft und Verbraucherschutz des Landes Nordrhein-Westfalen", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Agriculture and Consumer Protection of the State of North Rhine-Westphalia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MLV NRW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/038kr2d80.json b/test-relationship-delete-v2/new/038kr2d80.json new file mode 100644 index 000000000..1b608b1de --- /dev/null +++ b/test-relationship-delete-v2/new/038kr2d80.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 4180439, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 33.749, + "lng": -84.38798, + "name": "Atlanta" + } + } + ], + "established": 1930, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8741 8346" + ], + "preferred": "0000 0000 8741 8346" + }, + { + "type": "wikidata", + "all": [ + "Q2600140" + ], + "preferred": "Q2600140" + }, + { + "type": "fundref", + "all": [ + "100012692" + ], + "preferred": "100012692" + } + ], + "id": "https://ror.org/038kr2d80", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.enprc.emory.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Emory_National_Primate_Research_Center" + } + ], + "names": [ + { + "value": "Emory National Primate Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Yerkes National Primate Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Emory University Yerkes National Primate Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Emory University National Primate Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "YNPRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/039epzh36.json b/test-relationship-delete-v2/new/039epzh36.json new file mode 100644 index 000000000..d9acdac2f --- /dev/null +++ b/test-relationship-delete-v2/new/039epzh36.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2524907, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 39.2989, + "lng": 16.25307, + "name": "Cosenza" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/039epzh36", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cs.infn.it" + } + ], + "names": [ + { + "value": "INFN Gruppo Collegato di Cosenza", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Istituto Nazionale di Fisica Nucleare Gruppo Collegato di Cosenza", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Institute of Nuclear Physics - Cosenza Unit", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "GCC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03byxpy70.json b/test-relationship-delete-v2/new/03byxpy70.json new file mode 100644 index 000000000..1a0bdd151 --- /dev/null +++ b/test-relationship-delete-v2/new/03byxpy70.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2349276, + "geonames_details": { + "country_code": "NG", + "country_name": "Nigeria", + "lat": 6.19824, + "lng": 6.73187, + "name": "Asaba" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/03byxpy70", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://dou.edu.ng" + } + ], + "names": [ + { + "value": "Dennis Osadebay University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Dennis Osadebay University, Asaba", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DOU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03dcvs546.json b/test-relationship-delete-v2/new/03dcvs546.json new file mode 100644 index 000000000..4d1270a49 --- /dev/null +++ b/test-relationship-delete-v2/new/03dcvs546.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2636432, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.62079, + "lng": -3.94323, + "name": "Swansea" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7765 6809" + ], + "preferred": "0000 0004 7765 6809" + }, + { + "type": "fundref", + "all": [ + "100014590" + ], + "preferred": "100014590" + } + ], + "id": "https://ror.org/03dcvs546", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ernw.ac.uk" + } + ], + "names": [ + { + "value": "Engineering Research Network Wales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Rhwydwaith Ymchwil Peirianneg Cymru", + "types": [ + "label" + ], + "lang": "cy" + }, + { + "value": "ERNW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03eewzy02.json b/test-relationship-delete-v2/new/03eewzy02.json new file mode 100644 index 000000000..3d4923918 --- /dev/null +++ b/test-relationship-delete-v2/new/03eewzy02.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 2996944, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.74846, + "lng": 4.84671, + "name": "Lyon" + } + } + ], + "established": 1983, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q1052684" + ], + "preferred": "Q1052684" + } + ], + "id": "https://ror.org/03eewzy02", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cegid.com" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Cegid" + } + ], + "names": [ + { + "value": "Cegid (France)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Cegid", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03f1agw55.json b/test-relationship-delete-v2/new/03f1agw55.json new file mode 100644 index 000000000..a8038df29 --- /dev/null +++ b/test-relationship-delete-v2/new/03f1agw55.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2007, + "external_ids": [], + "id": "https://ror.org/03f1agw55", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://dpr-barcelona.com" + } + ], + "names": [ + { + "value": "dpr-barcelona", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DPR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03gf4dx13.json b/test-relationship-delete-v2/new/03gf4dx13.json new file mode 100644 index 000000000..64e9448e2 --- /dev/null +++ b/test-relationship-delete-v2/new/03gf4dx13.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/03gf4dx13", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.drace.com" + } + ], + "names": [ + { + "value": "DRACE GEOCISA S.A. (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DRACE GEOCISA S.A.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DRACE GEOCISA", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03hc27x54.json b/test-relationship-delete-v2/new/03hc27x54.json new file mode 100644 index 000000000..f18d3670a --- /dev/null +++ b/test-relationship-delete-v2/new/03hc27x54.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2464461, + "geonames_details": { + "country_code": "TN", + "country_name": "Tunisia", + "lat": 34, + "lng": 9, + "name": "Tunisia" + } + } + ], + "established": 1978, + "external_ids": [], + "id": "https://ror.org/03hc27x54", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cnudst.rnrt.tn" + } + ], + "names": [ + { + "value": "University National Center of Scientific and Technical Documentation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre National Universitaire de Documentation Scientifique et Technique", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "المركز الوطني الجامعي للتوثيق العلمي والتقني", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "CNUDST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03hecy592.json b/test-relationship-delete-v2/new/03hecy592.json new file mode 100644 index 000000000..1de003a95 --- /dev/null +++ b/test-relationship-delete-v2/new/03hecy592.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2857458, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 53.14118, + "lng": 8.21467, + "name": "Oldenburg" + } + } + ], + "established": 1792, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2331 9127" + ], + "preferred": "0000 0001 2331 9127" + }, + { + "type": "wikidata", + "all": [ + "Q1802139" + ], + "preferred": "Q1802139" + } + ], + "id": "https://ror.org/03hecy592", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lb-oldenburg.de" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Landesbibliothek_Oldenburg" + } + ], + "names": [ + { + "value": "Landesbibliothek Oldenburg", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Library of Oldenburg", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LBO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03hvdbf98.json b/test-relationship-delete-v2/new/03hvdbf98.json new file mode 100644 index 000000000..10ac4fafa --- /dev/null +++ b/test-relationship-delete-v2/new/03hvdbf98.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1839, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7239 8126" + ], + "preferred": "0000 0004 7239 8126" + }, + { + "type": "fundref", + "all": [ + "501100011950" + ], + "preferred": "501100011950" + } + ], + "id": "https://ror.org/03hvdbf98", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bmafoundationmr.org.uk" + } + ], + "names": [ + { + "value": "BMA Foundation for Medical Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BMA Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "British Medical Association Foundation for Medical Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "British Medical Association Foundation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03jn2p430.json b/test-relationship-delete-v2/new/03jn2p430.json new file mode 100644 index 000000000..9c1569a1c --- /dev/null +++ b/test-relationship-delete-v2/new/03jn2p430.json @@ -0,0 +1,110 @@ +{ + "locations": [ + { + "geonames_id": 1176615, + "geonames_details": { + "country_code": "PK", + "country_name": "Pakistan", + "lat": 33.72148, + "lng": 73.04329, + "name": "Islamabad" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2230 840X" + ], + "preferred": "0000 0001 2230 840X" + }, + { + "type": "wikidata", + "all": [ + "Q4294470" + ], + "preferred": "Q4294470" + }, + { + "type": "fundref", + "all": [ + "100019473" + ], + "preferred": "100019473" + } + ], + "id": "https://ror.org/03jn2p430", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://most.gov.pk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Science_and_Technology_%28Pakistan%29" + } + ], + "names": [ + { + "value": "Ministry of Science and Technology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Science and Technology, Government of Pakistan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Science and Technology of Pakistan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Pakistan Ministry of Science and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "وزارت سائنس و ٹیکنالوجی", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "MoST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03jsyxh43.json b/test-relationship-delete-v2/new/03jsyxh43.json new file mode 100644 index 000000000..4254b13d8 --- /dev/null +++ b/test-relationship-delete-v2/new/03jsyxh43.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2034937, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 41.79222, + "lng": 123.43278, + "name": "Shenyang" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/03jsyxh43", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sysard.com" + } + ], + "names": [ + { + "value": "Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Shenyang Sinochem Agrochemicals R&D Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Shenyang Sinochem Agrochemicals R&D Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "沈阳中化农药化工研发有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03jzzxg14.json b/test-relationship-delete-v2/new/03jzzxg14.json new file mode 100644 index 000000000..8b45f7981 --- /dev/null +++ b/test-relationship-delete-v2/new/03jzzxg14.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2654675, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q17028004" + ], + "preferred": "Q17028004" + }, + { + "type": "fundref", + "all": [ + "100012141" + ], + "preferred": "100012141" + } + ], + "id": "https://ror.org/03jzzxg14", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uhbw.nhs.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_Hospitals_Bristol_and_Weston_NHS_Foundation_Trust" + } + ], + "names": [ + { + "value": "University Hospitals Bristol and Weston NHS Foundation Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Bristol and Weston Foundation Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Bristol and Weston NHS Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University Hospitals Bristol and Weston Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UHBW NHS Foundation Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UHBW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03n9ja422.json b/test-relationship-delete-v2/new/03n9ja422.json new file mode 100644 index 000000000..82ecaad26 --- /dev/null +++ b/test-relationship-delete-v2/new/03n9ja422.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2928810, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.45657, + "lng": 7.01228, + "name": "Essen" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1956 7507" + ], + "preferred": "0000 0001 1956 7507" + }, + { + "type": "wikidata", + "all": [ + "Q2175050" + ], + "preferred": "Q2175050" + } + ], + "id": "https://ror.org/03n9ja422", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ruhrmuseum.de" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ruhr_Museum" + } + ], + "names": [ + { + "value": "Ruhr Museum", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ruhrlandmuseum", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03n9mt987.json b/test-relationship-delete-v2/new/03n9mt987.json new file mode 100644 index 000000000..9d7628dde --- /dev/null +++ b/test-relationship-delete-v2/new/03n9mt987.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 4644" + ], + "preferred": "0000 0004 4910 4644" + } + ], + "id": "https://ror.org/03n9mt987", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciusssnordmtl.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré universitaire de santé et de services sociaux du Nord-de-l’Île-de-Montréal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUSSS du Nord-de-l'Île-de-Montréal", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03p81rq42.json b/test-relationship-delete-v2/new/03p81rq42.json new file mode 100644 index 000000000..b9f02f03b --- /dev/null +++ b/test-relationship-delete-v2/new/03p81rq42.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 643492, + "geonames_details": { + "country_code": "FI", + "country_name": "Finland", + "lat": 65.01236, + "lng": 25.46816, + "name": "Oulu" + } + } + ], + "established": 2018, + "external_ids": [], + "id": "https://ror.org/03p81rq42", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.filnan.com" + } + ], + "names": [ + { + "value": "The Filipino Nurses Association in the Nordic Region", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Filipino Nurses Association in the Nordic Region", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Pohjoismainen Filippiiniläishoitajien Yhdistys Ry", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FINAN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03pdbtd82.json b/test-relationship-delete-v2/new/03pdbtd82.json new file mode 100644 index 000000000..fdf50b7df --- /dev/null +++ b/test-relationship-delete-v2/new/03pdbtd82.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2650628, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 54.77676, + "lng": -1.57566, + "name": "Durham" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q4231269" + ], + "preferred": "Q4231269" + }, + { + "type": "fundref", + "all": [ + "501100015066" + ], + "preferred": "501100015066" + } + ], + "id": "https://ror.org/03pdbtd82", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://virgo.dur.ac.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Virgo_Consortium" + } + ], + "names": [ + { + "value": "The Virgo Consortium", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Virgo Consortium", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03pzxq793.json b/test-relationship-delete-v2/new/03pzxq793.json new file mode 100644 index 000000000..c576c8912 --- /dev/null +++ b/test-relationship-delete-v2/new/03pzxq793.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2654675, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9128 4888" + ], + "preferred": "0000 0004 9128 4888" + }, + { + "type": "fundref", + "all": [ + "501100022244" + ], + "preferred": "501100022244" + } + ], + "id": "https://ror.org/03pzxq793", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://arc-w.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Applied Research Collaboration West", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Applied Research Collaboration West", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR ARC West", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03q5e6q66.json b/test-relationship-delete-v2/new/03q5e6q66.json new file mode 100644 index 000000000..5dcdf9552 --- /dev/null +++ b/test-relationship-delete-v2/new/03q5e6q66.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 3171728, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.40797, + "lng": 11.88586, + "name": "Padua" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/03q5e6q66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fondbiomed.it" + } + ], + "names": [ + { + "value": "Fondazione Ricerca Biomedica Avanzata Onlus - VIMM", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fondazione Ricerca Biomedica Avanzata Onlus", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03qk53891.json b/test-relationship-delete-v2/new/03qk53891.json new file mode 100644 index 000000000..fae9e3ebd --- /dev/null +++ b/test-relationship-delete-v2/new/03qk53891.json @@ -0,0 +1,117 @@ +{ + "locations": [ + { + "geonames_id": 1805518, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 35.405, + "lng": 116.58139, + "name": "Jining" + } + } + ], + "established": 1976, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7245 6824" + ], + "preferred": "0000 0004 7245 6824" + }, + { + "type": "wikidata", + "all": [ + "Q884019" + ], + "preferred": "Q884019" + } + ], + "id": "https://ror.org/03qk53891", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.yanzhoucoal.com.cn" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Yankuang_Group" + } + ], + "names": [ + { + "value": "Yankuang Energy Group Company Limited (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Yankuang Energy Group Company Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yankuang Energy Group Company", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yankuang Energy Group Company, Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yankuang Energy Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yankuang Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "兗礦集團有限公司", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "兖矿能源集团股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03sdv7269.json b/test-relationship-delete-v2/new/03sdv7269.json new file mode 100644 index 000000000..2c6cef076 --- /dev/null +++ b/test-relationship-delete-v2/new/03sdv7269.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2640729, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.75222, + "lng": -1.25596, + "name": "Oxford" + } + } + ], + "established": 2018, + "external_ids": [], + "id": "https://ror.org/03sdv7269", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://pqshield.com" + } + ], + "names": [ + { + "value": "PQShield (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PQShield", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PQShield, SAS", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PQShield, Inc.", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03thdsj80.json b/test-relationship-delete-v2/new/03thdsj80.json new file mode 100644 index 000000000..f5c2d719a --- /dev/null +++ b/test-relationship-delete-v2/new/03thdsj80.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2641689, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.40148, + "lng": -1.32471, + "name": "Newbury" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q99440281" + ], + "preferred": "Q99440281" + }, + { + "type": "fundref", + "all": [ + "100008058" + ], + "preferred": "100008058" + } + ], + "id": "https://ror.org/03thdsj80", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vodafone.com/vodafone-foundation" + } + ], + "names": [ + { + "value": "Vodafone Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03tmzq288.json b/test-relationship-delete-v2/new/03tmzq288.json new file mode 100644 index 000000000..eb4f93883 --- /dev/null +++ b/test-relationship-delete-v2/new/03tmzq288.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2644210, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.41058, + "lng": -2.97794, + "name": "Liverpool" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100015509" + ], + "preferred": "501100015509" + } + ], + "id": "https://ror.org/03tmzq288", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://arc-nwc.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Collaboration for Leadership in Applied Health Research and Care North West Coast", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care North West Coast", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC NWC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03tsg3y65.json b/test-relationship-delete-v2/new/03tsg3y65.json new file mode 100644 index 000000000..062eff97c --- /dev/null +++ b/test-relationship-delete-v2/new/03tsg3y65.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2644688, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.79648, + "lng": -1.54785, + "name": "Leeds" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9439 5292" + ], + "preferred": "0000 0004 9439 5292" + }, + { + "type": "wikidata", + "all": [ + "Q5062378" + ], + "preferred": "Q5062378" + }, + { + "type": "fundref", + "all": [ + "100012730" + ], + "preferred": "100012730" + } + ], + "id": "https://ror.org/03tsg3y65", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cccep.ac.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Centre_for_Climate_Change_Economics_and_Policy" + } + ], + "names": [ + { + "value": "Centre for Climate Change Economics and Policy", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ESRC Centre for Climate Change Economics and Policy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Economic and Social Research Council Centre for Climate Change Economics and Policy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CCCEP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03vgcjv39.json b/test-relationship-delete-v2/new/03vgcjv39.json new file mode 100644 index 000000000..f97845015 --- /dev/null +++ b/test-relationship-delete-v2/new/03vgcjv39.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/03vgcjv39", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://conhecimentoinovacao.iscte-iul.pt" + } + ], + "names": [ + { + "value": "Iscte-Conhecimento e Inovação é um Centro de Valorização e Transferência de Tecnologias", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Iscte Conhecimento E Inovacao - Centro De Valorizacao E Transferencia De Tecnologias", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03x3g5467.json b/test-relationship-delete-v2/new/03x3g5467.json new file mode 100644 index 000000000..9b2220985 --- /dev/null +++ b/test-relationship-delete-v2/new/03x3g5467.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 4407066, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.62727, + "lng": -90.19789, + "name": "St Louis" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100013395" + ], + "preferred": "100013395" + } + ], + "id": "https://ror.org/03x3g5467", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://taylorfamilyinstitute.wustl.edu" + } + ], + "names": [ + { + "value": "Taylor Family Institute for Innovative Psychiatric Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Taylor Family Institute for Innovative Psychiatric Research at Washington University School of Medicine in St. Louis", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03y0ymy78.json b/test-relationship-delete-v2/new/03y0ymy78.json new file mode 100644 index 000000000..151d5eaa9 --- /dev/null +++ b/test-relationship-delete-v2/new/03y0ymy78.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2653822, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.48, + "lng": -3.18, + "name": "Cardiff" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9503 2776" + ], + "preferred": "0000 0004 9503 2776" + }, + { + "type": "wikidata", + "all": [ + "Q65060598" + ], + "preferred": "Q65060598" + } + ], + "id": "https://ror.org/03y0ymy78", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.wcpp.org.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Wales_Centre_for_Public_Policy" + } + ], + "names": [ + { + "value": "Wales Centre for Public Policy", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Canolfan Polisi Cyhoeddus Cymru", + "types": [ + "label" + ], + "lang": "cy" + }, + { + "value": "WCPP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03y8jvk69.json b/test-relationship-delete-v2/new/03y8jvk69.json new file mode 100644 index 000000000..edda480a0 --- /dev/null +++ b/test-relationship-delete-v2/new/03y8jvk69.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 8299576, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.60079, + "lng": -74.64815, + "name": "Bridgewater" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6430 7044" + ], + "preferred": "0000 0004 6430 7044" + }, + { + "type": "wikidata", + "all": [ + "Q45132270" + ], + "preferred": "Q45132270" + }, + { + "type": "fundref", + "all": [ + "100010886" + ], + "preferred": "100010886" + } + ], + "id": "https://ror.org/03y8jvk69", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nestlehealthscience.com" + } + ], + "names": [ + { + "value": "Nestlé Health Science (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Nestlé Health Science", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/03zyxxj44.json b/test-relationship-delete-v2/new/03zyxxj44.json new file mode 100644 index 000000000..4fd6387e8 --- /dev/null +++ b/test-relationship-delete-v2/new/03zyxxj44.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5938 4379" + ], + "preferred": "0000 0004 5938 4379" + }, + { + "type": "wikidata", + "all": [ + "Q30260211" + ], + "preferred": "Q30260211" + } + ], + "id": "https://ror.org/03zyxxj44", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ciusss-estmtl.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré universitaire de santé et de services sociaux de l'Est-de-l'Île-de-Montréal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUSSS de l'Est-de-l'Île-de-Montréal", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/041kymq04.json b/test-relationship-delete-v2/new/041kymq04.json new file mode 100644 index 000000000..4d5dc3e2d --- /dev/null +++ b/test-relationship-delete-v2/new/041kymq04.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 1271715, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 23.21667, + "lng": 72.68333, + "name": "Gandhinagar" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0726 9739" + ], + "preferred": "0000 0005 0726 9739" + }, + { + "type": "fundref", + "all": [ + "100019126" + ], + "preferred": "100019126" + } + ], + "id": "https://ror.org/041kymq04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://dst.gujarat.gov.in/gcst.htm" + } + ], + "names": [ + { + "value": "Gujarat Council on Science and Technology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Gujarat Council of Science and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "GCST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/041qq2t66.json b/test-relationship-delete-v2/new/041qq2t66.json new file mode 100644 index 000000000..15efd400d --- /dev/null +++ b/test-relationship-delete-v2/new/041qq2t66.json @@ -0,0 +1,73 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6085 4796" + ], + "preferred": "0000 0004 6085 4796" + }, + { + "type": "wikidata", + "all": [ + "Q45132743" + ], + "preferred": "Q45132743" + }, + { + "type": "fundref", + "all": [ + "501100008754" + ], + "preferred": "501100008754" + } + ], + "id": "https://ror.org/041qq2t66", + "domains": [], + "links": [], + "names": [ + { + "value": "Leverhulme Centre for Integrative Research on Agriculture and Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "LCIRAH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/041repn61.json b/test-relationship-delete-v2/new/041repn61.json new file mode 100644 index 000000000..6eee8124e --- /dev/null +++ b/test-relationship-delete-v2/new/041repn61.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6066513, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.86682, + "lng": -79.2663, + "name": "Markham" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0634 9545" + ], + "preferred": "0000 0004 0634 9545" + }, + { + "type": "fundref", + "all": [ + "100012317" + ], + "preferred": "100012317" + } + ], + "id": "https://ror.org/041repn61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.astellas.com/ca/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Astellas_Pharma" + } + ], + "names": [ + { + "value": "Astellas Pharma (Canada)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Astellas Pharmaceuticals", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/042en9b35.json b/test-relationship-delete-v2/new/042en9b35.json new file mode 100644 index 000000000..e4cc810f1 --- /dev/null +++ b/test-relationship-delete-v2/new/042en9b35.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2803138, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 51.22047, + "lng": 4.40026, + "name": "Antwerp" + } + } + ], + "established": 2013, + "external_ids": [], + "id": "https://ror.org/042en9b35", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://accelleran.com" + } + ], + "names": [ + { + "value": "Accelleran NV (Belgium)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Accelleran", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Accelleran NV", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ACC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/042fhmq33.json b/test-relationship-delete-v2/new/042fhmq33.json new file mode 100644 index 000000000..080b2810b --- /dev/null +++ b/test-relationship-delete-v2/new/042fhmq33.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 4347778, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012312" + ], + "preferred": "100012312" + } + ], + "id": "https://ror.org/042fhmq33", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://packardcenter.org" + } + ], + "names": [ + { + "value": "Packard Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Robert Packard Center for ALS Research, Johns Hopkins University", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/042k5q325.json b/test-relationship-delete-v2/new/042k5q325.json new file mode 100644 index 000000000..f4835967e --- /dev/null +++ b/test-relationship-delete-v2/new/042k5q325.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2945024, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.26594, + "lng": 10.52673, + "name": "Braunschweig" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100014132" + ], + "preferred": "100014132" + } + ], + "id": "https://ror.org/042k5q325", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.euramet.org/research-innovation/research-empir" + } + ], + "names": [ + { + "value": "European Metrology Programme for Innovation and Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "EMPIR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/042t2dj58.json b/test-relationship-delete-v2/new/042t2dj58.json new file mode 100644 index 000000000..8b17de273 --- /dev/null +++ b/test-relationship-delete-v2/new/042t2dj58.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2034937, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 41.79222, + "lng": 123.43278, + "name": "Shenyang" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/042t2dj58", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sysard.com" + } + ], + "names": [ + { + "value": "Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Shenyang Sinochem Agrochemicals R&D Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Shenyang Sinochem Agrochemicals R&D Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "沈阳中化农药化工研发有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/042vxm455.json b/test-relationship-delete-v2/new/042vxm455.json new file mode 100644 index 000000000..e05bd0b9d --- /dev/null +++ b/test-relationship-delete-v2/new/042vxm455.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 5128581, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.71427, + "lng": -74.00597, + "name": "New York" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0453 5264" + ], + "preferred": "0000 0004 0453 5264" + } + ], + "id": "https://ror.org/042vxm455", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bloomsbury.com/us/" + } + ], + "names": [ + { + "value": "Bloomsbury (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Bloomsbury USA", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/0436znn81.json b/test-relationship-delete-v2/new/0436znn81.json new file mode 100644 index 000000000..9e9d09ebe --- /dev/null +++ b/test-relationship-delete-v2/new/0436znn81.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 2648108, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.45, + "lng": -2.23333, + "name": "Greater Manchester" + } + } + ], + "established": 2023, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7871 7132" + ], + "preferred": "0000 0004 7871 7132" + }, + { + "type": "fundref", + "all": [ + "501100013235" + ], + "preferred": "501100013235" + } + ], + "id": "https://ror.org/0436znn81", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.psrc-gm.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Greater Manchester Patient Safety Translational Research Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Greater Manchester Patient Safety Translational Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Greater Manchester Patient Safety Translational Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Manchester Patient Safety Translational Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR GM PSTRC", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "GM PSTRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/043evzg22.json b/test-relationship-delete-v2/new/043evzg22.json new file mode 100644 index 000000000..d977642d2 --- /dev/null +++ b/test-relationship-delete-v2/new/043evzg22.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011284" + ], + "preferred": "501100011284" + } + ], + "id": "https://ror.org/043evzg22", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://eesklab.tsinghua.edu.cn" + } + ], + "names": [ + { + "value": "State Key Laboratory of Power System and Generation Equipment", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Power System and Generation Equipment", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Laboratory of Safety Control and Simulation of Power System and Large-scale Power Generation Equipment", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "电力系统及发电设备控制和仿真国家重点实验室", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "电力系统及大型发电设备安全控制和仿真国家重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/043xqa828.json b/test-relationship-delete-v2/new/043xqa828.json new file mode 100644 index 000000000..df18f8df6 --- /dev/null +++ b/test-relationship-delete-v2/new/043xqa828.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q45137372" + ], + "preferred": "Q45137372" + }, + { + "type": "fundref", + "all": [ + "501100003263" + ], + "preferred": "501100003263" + } + ], + "id": "https://ror.org/043xqa828", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Scottish_Office" + } + ], + "names": [ + { + "value": "Scottish Home and Health Department", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Scottish Office Home and Health Department", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/044kpcz50.json b/test-relationship-delete-v2/new/044kpcz50.json new file mode 100644 index 000000000..eeefcf8a0 --- /dev/null +++ b/test-relationship-delete-v2/new/044kpcz50.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2618425, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 55.67594, + "lng": 12.56553, + "name": "Copenhagen" + } + } + ], + "established": 1920, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7866 339X" + ], + "preferred": "0000 0004 7866 339X" + }, + { + "type": "wikidata", + "all": [ + "Q12309486" + ], + "preferred": "Q12309486" + }, + { + "type": "fundref", + "all": [ + "501100009902" + ], + "preferred": "501100009902" + } + ], + "id": "https://ror.org/044kpcz50", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.egmontfonden.dk" + }, + { + "type": "wikipedia", + "value": "https://da.wikipedia.org/wiki/Egmont_Fonden" + } + ], + "names": [ + { + "value": "Egmont Fonden", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Egmont H. Petersens Fond", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Egmont Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/046j7pv84.json b/test-relationship-delete-v2/new/046j7pv84.json new file mode 100644 index 000000000..74a2ad6e4 --- /dev/null +++ b/test-relationship-delete-v2/new/046j7pv84.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2660646, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.20222, + "lng": 6.14569, + "name": "Geneva" + } + } + ], + "established": 1974, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2191 7262" + ], + "preferred": "0000 0001 2191 7262" + }, + { + "type": "wikidata", + "all": [ + "Q30261831" + ], + "preferred": "Q30261831" + }, + { + "type": "fundref", + "all": [ + "100016285" + ], + "preferred": "100016285" + } + ], + "id": "https://ror.org/046j7pv84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://tdr.who.int" + } + ], + "names": [ + { + "value": "Special Programme for Research and Training in Tropical Diseases", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "TDR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/047dkqn05.json b/test-relationship-delete-v2/new/047dkqn05.json new file mode 100644 index 000000000..8b0d57063 --- /dev/null +++ b/test-relationship-delete-v2/new/047dkqn05.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 4347778, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/047dkqn05", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.equinoxsensors.com" + } + ], + "names": [ + { + "value": "Equinox Corporation (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Equinox Sensors", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Equinox Corporation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/049ctcj40.json b/test-relationship-delete-v2/new/049ctcj40.json new file mode 100644 index 000000000..00b7cfd68 --- /dev/null +++ b/test-relationship-delete-v2/new/049ctcj40.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 1642911, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -6.21462, + "lng": 106.84513, + "name": "Jakarta" + } + } + ], + "established": 1975, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109911827" + ], + "preferred": "Q109911827" + } + ], + "id": "https://ror.org/049ctcj40", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://stmi.ac.id" + }, + { + "type": "wikipedia", + "value": "https://id.wikipedia.org/wiki/Politeknik_STMI" + } + ], + "names": [ + { + "value": "Politeknik STMI Jakarta", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "STMI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/049h9f890.json b/test-relationship-delete-v2/new/049h9f890.json new file mode 100644 index 000000000..9bbadacf8 --- /dev/null +++ b/test-relationship-delete-v2/new/049h9f890.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5964215, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.40008, + "lng": -72.73243, + "name": "Granby" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9536 9505" + ], + "preferred": "0000 0000 9536 9505" + }, + { + "type": "wikidata", + "all": [ + "Q3009996" + ], + "preferred": "Q3009996" + } + ], + "id": "https://ror.org/049h9f890", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cegepgranby.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/C%C3%A9gep_de_Granby" + } + ], + "names": [ + { + "value": "Cégep de Granby", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04b57z061.json b/test-relationship-delete-v2/new/04b57z061.json new file mode 100644 index 000000000..0605e4855 --- /dev/null +++ b/test-relationship-delete-v2/new/04b57z061.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5391811, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.71571, + "lng": -117.16472, + "name": "San Diego" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9465 4856" + ], + "preferred": "0000 0004 9465 4856" + }, + { + "type": "wikidata", + "all": [ + "Q45137754" + ], + "preferred": "Q45137754" + }, + { + "type": "fundref", + "all": [ + "100011231" + ], + "preferred": "100011231" + } + ], + "id": "https://ror.org/04b57z061", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://cwc.ucsd.edu" + } + ], + "names": [ + { + "value": "Center for Wireless Communications", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CWC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04cjmvv09.json b/test-relationship-delete-v2/new/04cjmvv09.json new file mode 100644 index 000000000..4be389044 --- /dev/null +++ b/test-relationship-delete-v2/new/04cjmvv09.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2654313, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.9724, + "lng": 0.77488, + "name": "Bures Saint Mary" + } + } + ], + "established": 1974, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7782 485X" + ], + "preferred": "0000 0004 7782 485X" + }, + { + "type": "fundref", + "all": [ + "100012354" + ], + "preferred": "100012354" + } + ], + "id": "https://ror.org/04cjmvv09", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.jfec.org.uk" + } + ], + "names": [ + { + "value": "Japan Foundation Endowment Committee", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "JFEC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04d2k2606.json b/test-relationship-delete-v2/new/04d2k2606.json new file mode 100644 index 000000000..36277c708 --- /dev/null +++ b/test-relationship-delete-v2/new/04d2k2606.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2656284, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.55, + "lng": -1.48333, + "name": "Barnsley" + } + } + ], + "established": 2004, + "external_ids": [], + "id": "https://ror.org/04d2k2606", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.luto.co.uk" + } + ], + "names": [ + { + "value": "Luto Research (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Luto Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Luto Research Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Luto Research Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Luto", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04d4pvt78.json b/test-relationship-delete-v2/new/04d4pvt78.json new file mode 100644 index 000000000..bb5315627 --- /dev/null +++ b/test-relationship-delete-v2/new/04d4pvt78.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 4347778, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012306" + ], + "preferred": "100012306" + } + ], + "id": "https://ror.org/04d4pvt78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.hopkinscim.org" + } + ], + "names": [ + { + "value": "Center for Innovative Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Johns Hopkins Center for Innovative Medicine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CIM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04e7rcy65.json b/test-relationship-delete-v2/new/04e7rcy65.json new file mode 100644 index 000000000..54bdf0358 --- /dev/null +++ b/test-relationship-delete-v2/new/04e7rcy65.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3390760, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -8.05389, + "lng": -34.88111, + "name": "Recife" + } + } + ], + "established": 1980, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0417 9458" + ], + "preferred": "0000 0004 0417 9458" + }, + { + "type": "wikidata", + "all": [ + "Q56841516" + ], + "preferred": "Q56841516" + } + ], + "id": "https://ror.org/04e7rcy65", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.for.edu.br" + } + ], + "names": [ + { + "value": "Faculdade de Odontologia do Recife", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Faculty of Dentistry of Recife", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FOR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04ect1284.json b/test-relationship-delete-v2/new/04ect1284.json new file mode 100644 index 000000000..6939c67e5 --- /dev/null +++ b/test-relationship-delete-v2/new/04ect1284.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8306 8464" + ], + "preferred": "0000 0004 8306 8464" + }, + { + "type": "fundref", + "all": [ + "501100014335" + ], + "preferred": "501100014335" + } + ], + "id": "https://ror.org/04ect1284", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ed.ac.uk/usher/aukcar" + } + ], + "names": [ + { + "value": "Asthma UK Centre for Applied Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AUKCAR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04f18cg29.json b/test-relationship-delete-v2/new/04f18cg29.json new file mode 100644 index 000000000..1d558d4c5 --- /dev/null +++ b/test-relationship-delete-v2/new/04f18cg29.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 7498240, + "geonames_details": { + "country_code": "IL", + "country_name": "Israel", + "lat": 31.78199, + "lng": 35.21961, + "name": "West Jerusalem" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0631 158X" + ], + "preferred": "0000 0004 0631 158X" + }, + { + "type": "wikidata", + "all": [ + "Q12406716" + ], + "preferred": "Q12406716" + } + ], + "id": "https://ror.org/04f18cg29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://idi.org.il" + } + ], + "names": [ + { + "value": "Israel Democracy Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "המכון הישראלי לדמוקרטיה", + "types": [ + "label" + ], + "lang": "he" + }, + { + "value": "IDI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04fab7w85.json b/test-relationship-delete-v2/new/04fab7w85.json new file mode 100644 index 000000000..639b41953 --- /dev/null +++ b/test-relationship-delete-v2/new/04fab7w85.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2740637, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 40.20564, + "lng": -8.41955, + "name": "Coimbra" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100014071" + ], + "preferred": "501100014071" + } + ], + "id": "https://ror.org/04fab7w85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ces.uc.pt" + } + ], + "names": [ + { + "value": "Centro de Estudos Sociais", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidade de Coimbra Centro de Estudos Sociais", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Centro de Estudos Sociais de Universidade de Coimbra", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Coimbra Centre for Social Studies", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04fg9pk96.json b/test-relationship-delete-v2/new/04fg9pk96.json new file mode 100644 index 000000000..244f863d7 --- /dev/null +++ b/test-relationship-delete-v2/new/04fg9pk96.json @@ -0,0 +1,131 @@ +{ + "locations": [ + { + "geonames_id": 6167865, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.70643, + "lng": -79.39864, + "name": "Toronto" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0721 7876" + ], + "preferred": "0000 0001 0721 7876" + }, + { + "type": "wikidata", + "all": [ + "Q3315245" + ], + "preferred": "Q3315245" + }, + { + "type": "fundref", + "all": [ + "100016329" + ], + "preferred": "100016329" + } + ], + "id": "https://ror.org/04fg9pk96", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ontario.ca/page/ministry-education" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Education_%28Ontario%29" + } + ], + "names": [ + { + "value": "Ministry of Education", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Education of Ontario", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Education, Government of Ontario", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministère de l’Éducation, Gouvernement de l’Ontario", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ontario Ministry of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministère de l'Éducation de l'Ontario", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministère de l'Éducation", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "EDU", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "MEO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04fzs4293.json b/test-relationship-delete-v2/new/04fzs4293.json new file mode 100644 index 000000000..d98a15c57 --- /dev/null +++ b/test-relationship-delete-v2/new/04fzs4293.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2648579, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.86515, + "lng": -4.25763, + "name": "Glasgow" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0629 7087" + ], + "preferred": "0000 0004 0629 7087" + }, + { + "type": "fundref", + "all": [ + "100011776" + ], + "preferred": "100011776" + } + ], + "id": "https://ror.org/04fzs4293", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mndscotland.org.uk" + } + ], + "names": [ + { + "value": "MND Scotland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Motor Neuron Disease Scotland", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04g1a0w27.json b/test-relationship-delete-v2/new/04g1a0w27.json new file mode 100644 index 000000000..bd14bd0ad --- /dev/null +++ b/test-relationship-delete-v2/new/04g1a0w27.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 4553433, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 36.15398, + "lng": -95.99277, + "name": "Tulsa" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0386 8892" + ], + "preferred": "0000 0004 0386 8892" + }, + { + "type": "wikidata", + "all": [ + "Q39056078" + ], + "preferred": "Q39056078" + } + ], + "id": "https://ror.org/04g1a0w27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ou.edu/tulsa" + } + ], + "names": [ + { + "value": "University of Oklahoma - Tulsa", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Oklahoma - Tulsa Schusterman Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OU - Tulsa Schusterman Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Oklahoma at Tulsa", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04gww2j56.json b/test-relationship-delete-v2/new/04gww2j56.json new file mode 100644 index 000000000..a5c06f974 --- /dev/null +++ b/test-relationship-delete-v2/new/04gww2j56.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 2618425, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 55.67594, + "lng": 12.56553, + "name": "Copenhagen" + } + } + ], + "established": 1982, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7478 7897" + ], + "preferred": "0000 0004 7478 7897" + }, + { + "type": "wikidata", + "all": [ + "Q27430020" + ], + "preferred": "Q27430020" + }, + { + "type": "fundref", + "all": [ + "501100010344" + ], + "preferred": "501100010344" + } + ], + "id": "https://ror.org/04gww2j56", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://louis-hansenfonden.dk" + } + ], + "names": [ + { + "value": "Aage og Johanne Louis-Hansens Fond", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Aage og Johanne Louis-Hansens Familiefond", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Aage og Johanne Louis-Hansen ApS", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Aage and Johanne Louis-Hansen's Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04gz5mr64.json b/test-relationship-delete-v2/new/04gz5mr64.json new file mode 100644 index 000000000..48200215f --- /dev/null +++ b/test-relationship-delete-v2/new/04gz5mr64.json @@ -0,0 +1,72 @@ +{ + "locations": [ + { + "geonames_id": 993800, + "geonames_details": { + "country_code": "ZA", + "country_name": "South Africa", + "lat": -26.20227, + "lng": 28.04363, + "name": "Johannesburg" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100016961" + ], + "preferred": "100016961" + } + ], + "id": "https://ror.org/04gz5mr64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nihss.ac.za" + } + ], + "names": [ + { + "value": "National Institute for the Humanities and Social Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for the Humanities and Social Sciences, South Africa", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHSS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04h7zpy51.json b/test-relationship-delete-v2/new/04h7zpy51.json new file mode 100644 index 000000000..a2b2335a2 --- /dev/null +++ b/test-relationship-delete-v2/new/04h7zpy51.json @@ -0,0 +1,61 @@ +{ + "locations": [ + { + "geonames_id": 2736680, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 41.17289, + "lng": -8.59931, + "name": "Paranhos" + } + } + ], + "established": 1852, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q3152860" + ], + "preferred": "Q3152860" + } + ], + "id": "https://ror.org/04h7zpy51", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.isep.pt" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Instituto_Superior_de_Engenharia_do_Porto" + } + ], + "names": [ + { + "value": "Instituto Superior de Engenharia do Porto", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04hh1k009.json b/test-relationship-delete-v2/new/04hh1k009.json new file mode 100644 index 000000000..26a728bc1 --- /dev/null +++ b/test-relationship-delete-v2/new/04hh1k009.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0281 4136" + ], + "preferred": "0000 0005 0281 4136" + }, + { + "type": "fundref", + "all": [ + "100017147" + ], + "preferred": "100017147" + } + ], + "id": "https://ror.org/04hh1k009", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.progressivemsalliance.org" + } + ], + "names": [ + { + "value": "International Progressive MS Alliance", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "International Progressive Multiple Sclerosis Alliance", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04hp1ky92.json b/test-relationship-delete-v2/new/04hp1ky92.json new file mode 100644 index 000000000..0ac28e630 --- /dev/null +++ b/test-relationship-delete-v2/new/04hp1ky92.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 3165524, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.07049, + "lng": 7.68682, + "name": "Turin" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/04hp1ky92", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ecs-nodes.eu" + } + ], + "names": [ + { + "value": "NODES S.c.a.r.l", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NODES - Nord Ovest Digitale E Sostenibile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Nord Ovest Digitale E Sostenibile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "HUB NODES S.c.a.r.l", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NODES", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04htg4q18.json b/test-relationship-delete-v2/new/04htg4q18.json new file mode 100644 index 000000000..a76f68b4f --- /dev/null +++ b/test-relationship-delete-v2/new/04htg4q18.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 98463, + "geonames_details": { + "country_code": "IQ", + "country_name": "Iraq", + "lat": 35.56496, + "lng": 45.4329, + "name": "Sulaymaniyah" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0277 0727" + ], + "preferred": "0000 0005 0277 0727" + } + ], + "id": "https://ror.org/04htg4q18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://chu.edu.iq" + } + ], + "names": [ + { + "value": "Charmo University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "زانکۆی چەرموو", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ChU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04hwsx993.json b/test-relationship-delete-v2/new/04hwsx993.json new file mode 100644 index 000000000..cfc41b0d0 --- /dev/null +++ b/test-relationship-delete-v2/new/04hwsx993.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2637487, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.90395, + "lng": -1.40428, + "name": "Southampton" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6428 5500" + ], + "preferred": "0000 0004 6428 5500" + }, + { + "type": "wikidata", + "all": [ + "Q45136919" + ], + "preferred": "Q45136919" + }, + { + "type": "fundref", + "all": [ + "100012166" + ], + "preferred": "100012166" + } + ], + "id": "https://ror.org/04hwsx993", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.kerkut-trust.org.uk" + } + ], + "names": [ + { + "value": "Gerald Kerkut Charitable Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04kn56m50.json b/test-relationship-delete-v2/new/04kn56m50.json new file mode 100644 index 000000000..789f3b2fa --- /dev/null +++ b/test-relationship-delete-v2/new/04kn56m50.json @@ -0,0 +1,106 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4670 2593" + ], + "preferred": "0000 0004 4670 2593" + }, + { + "type": "wikidata", + "all": [ + "Q105169356" + ], + "preferred": "Q105169356" + }, + { + "type": "fundref", + "all": [ + "501100002418" + ], + "preferred": "501100002418" + } + ], + "id": "https://ror.org/04kn56m50", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://zh.wikipedia.org/wiki/%E4%B8%AD%E5%9B%BD%E5%8C%BB%E5%AD%A6%E7%A7%91%E5%AD%A6%E9%99%A2%E8%8D%AF%E7%89%A9%E7%A0%94%E7%A9%B6%E6%89%80" + } + ], + "names": [ + { + "value": "Institute of Chinese Materia Medica", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "China Academy of Chinese Medical Sciences Institute of Materia Medica", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中国医学科学院药物研究所", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "IMM", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CAMS&PUMC IMM", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CAMS IMM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04kpdmm83.json b/test-relationship-delete-v2/new/04kpdmm83.json new file mode 100644 index 000000000..33b4d2ad4 --- /dev/null +++ b/test-relationship-delete-v2/new/04kpdmm83.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 143073, + "geonames_details": { + "country_code": "IR", + "country_name": "Iran", + "lat": 32.31001, + "lng": 54.01747, + "name": "Ardakān" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7425 0037" + ], + "preferred": "0000 0004 7425 0037" + }, + { + "type": "fundref", + "all": [ + "100019272" + ], + "preferred": "100019272" + } + ], + "id": "https://ror.org/04kpdmm83", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ardakan.ac.ir" + } + ], + "names": [ + { + "value": "Ardakan University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "دانشگاه اردکان", + "types": [ + "label" + ], + "lang": "fa" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04m2z2476.json b/test-relationship-delete-v2/new/04m2z2476.json new file mode 100644 index 000000000..ac75306ac --- /dev/null +++ b/test-relationship-delete-v2/new/04m2z2476.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/04m2z2476", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.aku.edu" + } + ], + "names": [ + { + "value": "The Aga Khan University (International) in the United Kingdom", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "The Aga Khan University in the United Kingdom", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Aga Khan University in the United Kingdom", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04n3e7v86.json b/test-relationship-delete-v2/new/04n3e7v86.json new file mode 100644 index 000000000..7613679df --- /dev/null +++ b/test-relationship-delete-v2/new/04n3e7v86.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 1886760, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.30408, + "lng": 120.59538, + "name": "Suzhou" + } + } + ], + "established": 2020, + "external_ids": [], + "id": "https://ror.org/04n3e7v86", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.sdhmdp.com" + } + ], + "names": [ + { + "value": "The Fourth Affiliated Hospital of Soochow University (Suzhou Dushu Lake Hospital)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "The Fourth Affiliated Hospital of Soochow University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Suzhou Dushu Lake Hospital", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "苏州大学附属第四医院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "苏州市独墅湖医院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "苏州大学附属第四医院 (苏州市独墅湖医院)", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "SDH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04ns7ha44.json b/test-relationship-delete-v2/new/04ns7ha44.json new file mode 100644 index 000000000..6a3fc6824 --- /dev/null +++ b/test-relationship-delete-v2/new/04ns7ha44.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 4843564, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.05343, + "lng": -73.53873, + "name": "Stamford" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q96272921" + ], + "preferred": "Q96272921" + }, + { + "type": "fundref", + "all": [ + "100016230" + ], + "preferred": "100016230" + } + ], + "id": "https://ror.org/04ns7ha44", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.steveandalex.org" + } + ], + "names": [ + { + "value": "Steven & Alexandra Cohen Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Steven and Alexandra Cohen Foundation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04qdwq068.json b/test-relationship-delete-v2/new/04qdwq068.json new file mode 100644 index 000000000..04d077cc7 --- /dev/null +++ b/test-relationship-delete-v2/new/04qdwq068.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2648579, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.86515, + "lng": -4.25763, + "name": "Glasgow" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012927" + ], + "preferred": "100012927" + } + ], + "id": "https://ror.org/04qdwq068", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.quantic.ac.uk" + } + ], + "names": [ + { + "value": "QuantIC", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "QuantIC – UK Quantum Technology Hub in Quantum Enhanced Imaging", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "QuantIC – UK QT Hub in Quantum Enhanced Imaging", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "QuantIC Advanced Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "QuantIC ARC", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04qekdn52.json b/test-relationship-delete-v2/new/04qekdn52.json new file mode 100644 index 000000000..e894f4c48 --- /dev/null +++ b/test-relationship-delete-v2/new/04qekdn52.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6059891, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.5152, + "lng": -73.46818, + "name": "Longueuil" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8064 4091" + ], + "preferred": "0000 0004 8064 4091" + } + ], + "id": "https://ror.org/04qekdn52", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.santemonteregie.qc.ca/centre" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de la Montérégie-Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de la Montérégie-Centre", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04qtk4r03.json b/test-relationship-delete-v2/new/04qtk4r03.json new file mode 100644 index 000000000..9133d18b5 --- /dev/null +++ b/test-relationship-delete-v2/new/04qtk4r03.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 786714, + "geonames_details": { + "country_code": "XK", + "country_name": "Kosovo", + "lat": 42.67272, + "lng": 21.16688, + "name": "Pristina" + } + } + ], + "established": 1967, + "external_ids": [], + "id": "https://ror.org/04qtk4r03", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ih-rks.org" + } + ], + "names": [ + { + "value": "Instituti i Historisë \"Ali Hadri\" Prishtinë", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of History “Ali Hadri” Prishtina", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04r5ma125.json b/test-relationship-delete-v2/new/04r5ma125.json new file mode 100644 index 000000000..95257d555 --- /dev/null +++ b/test-relationship-delete-v2/new/04r5ma125.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1815286, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 30.66667, + "lng": 104.06667, + "name": "Chengdu" + } + } + ], + "established": 1958, + "external_ids": [], + "id": "https://ror.org/04r5ma125", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.hhxny.chemchina.com" + } + ], + "names": [ + { + "value": "Southwest Research & Design Institute of the Chemical Industry", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Southwest Research and Design Institute of the Chemical Industry", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "西南化工研究设计院有限公司", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "SWRDICI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04rf54t04.json b/test-relationship-delete-v2/new/04rf54t04.json new file mode 100644 index 000000000..a213d8079 --- /dev/null +++ b/test-relationship-delete-v2/new/04rf54t04.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2618425, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 55.67594, + "lng": 12.56553, + "name": "Copenhagen" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6091 1914" + ], + "preferred": "0000 0004 6091 1914" + }, + { + "type": "wikidata", + "all": [ + "Q45135950" + ], + "preferred": "Q45135950" + }, + { + "type": "fundref", + "all": [ + "501100008267" + ], + "preferred": "501100008267" + } + ], + "id": "https://ror.org/04rf54t04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.kongehuset.dk/om-kongehuset/fonde-og-legater/kong-christian-den-tiendes-fond/" + } + ], + "names": [ + { + "value": "Kong Christian den Tiendes Fond", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "King Christian the Tenth Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04rhqkc66.json b/test-relationship-delete-v2/new/04rhqkc66.json new file mode 100644 index 000000000..b9c0a0162 --- /dev/null +++ b/test-relationship-delete-v2/new/04rhqkc66.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2852458, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.39886, + "lng": 13.06566, + "name": "Potsdam" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/04rhqkc66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mluk.brandenburg.de/mluk/" + } + ], + "names": [ + { + "value": "Ministerium für Landwirtschaft, Umwelt und Klimaschutz des Landes Brandenburg", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Landesministerium für Landwirtschaft, Umwelt und Klimaschutz Brandenburg", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MLUK", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04rswvr48.json b/test-relationship-delete-v2/new/04rswvr48.json new file mode 100644 index 000000000..855d39c15 --- /dev/null +++ b/test-relationship-delete-v2/new/04rswvr48.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 5391811, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.71571, + "lng": -117.16472, + "name": "San Diego" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9230 1205" + ], + "preferred": "0000 0004 9230 1205" + }, + { + "type": "fundref", + "all": [ + "100016136" + ], + "preferred": "100016136" + } + ], + "id": "https://ror.org/04rswvr48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fundacionaraucariafoundation.com" + } + ], + "names": [ + { + "value": "Fundacion Araucaria Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04shwth06.json b/test-relationship-delete-v2/new/04shwth06.json new file mode 100644 index 000000000..accb27b53 --- /dev/null +++ b/test-relationship-delete-v2/new/04shwth06.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2490584, + "geonames_details": { + "country_code": "DZ", + "country_name": "Algeria", + "lat": 34.84969, + "lng": -1.72753, + "name": "Maghnia" + } + } + ], + "established": 2006, + "external_ids": [], + "id": "https://ror.org/04shwth06", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cu-maghnia.edu.dz" + } + ], + "names": [ + { + "value": "University Centre of Maghnia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Maghnia University Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CU Maghnia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UC Maghnia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "المركز الجامعي مغنية", + "types": [ + "label" + ], + "lang": "ar" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04tfhh831.json b/test-relationship-delete-v2/new/04tfhh831.json new file mode 100644 index 000000000..cdb02172f --- /dev/null +++ b/test-relationship-delete-v2/new/04tfhh831.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 4938836, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.11316, + "lng": -70.81199, + "name": "Hanover" + } + } + ], + "established": 2015, + "external_ids": [], + "id": "https://ror.org/04tfhh831", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://centerforopenneuroscience.org" + } + ], + "names": [ + { + "value": "Center for Open Neuroscience", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CON", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04vdnev70.json b/test-relationship-delete-v2/new/04vdnev70.json new file mode 100644 index 000000000..fc8eee40f --- /dev/null +++ b/test-relationship-delete-v2/new/04vdnev70.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100016989" + ], + "preferred": "501100016989" + } + ], + "id": "https://ror.org/04vdnev70", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.archer.ac.uk" + } + ], + "names": [ + { + "value": "ARCHER Service", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04vh24428.json b/test-relationship-delete-v2/new/04vh24428.json new file mode 100644 index 000000000..750da2c0b --- /dev/null +++ b/test-relationship-delete-v2/new/04vh24428.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/04vh24428", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.novaidfct.pt" + } + ], + "names": [ + { + "value": "NOVA.id.FCT - Associação para a Inovação e Desenvolvimento da FCT", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NOVA.id.FCT", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04vzm8988.json b/test-relationship-delete-v2/new/04vzm8988.json new file mode 100644 index 000000000..082110a32 --- /dev/null +++ b/test-relationship-delete-v2/new/04vzm8988.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 5121509, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.25286, + "lng": -73.79096, + "name": "Hudson" + } + } + ], + "established": 1945, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7863 3094" + ], + "preferred": "0000 0004 7863 3094" + }, + { + "type": "fundref", + "all": [ + "100014337" + ], + "preferred": "100014337" + } + ], + "id": "https://ror.org/04vzm8988", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://furthermore.org" + } + ], + "names": [ + { + "value": "FURTHERMORE grants in publishing", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04w0a0617.json b/test-relationship-delete-v2/new/04w0a0617.json new file mode 100644 index 000000000..aacdd168a --- /dev/null +++ b/test-relationship-delete-v2/new/04w0a0617.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3985606, + "geonames_details": { + "country_code": "MX", + "country_name": "Mexico", + "lat": 22.14982, + "lng": -100.97916, + "name": "San Luis Potosí City" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 8555" + ], + "preferred": "0000 0004 0369 8555" + }, + { + "type": "wikidata", + "all": [ + "Q5917885" + ], + "preferred": "Q5917885" + } + ], + "id": "https://ror.org/04w0a0617", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://slp.tecnm.mx" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Instituto_Tecnol%C3%B3gico_de_San_Luis_Potos%C3%AD" + } + ], + "names": [ + { + "value": "Instituto Tecnológico de San Luis Potosí", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "TecNM campus San Luis Potosí", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ITSLP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04wcn4e27.json b/test-relationship-delete-v2/new/04wcn4e27.json new file mode 100644 index 000000000..523df4551 --- /dev/null +++ b/test-relationship-delete-v2/new/04wcn4e27.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 2750053, + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + } + } + ], + "established": 2017, + "external_ids": [], + "id": "https://ror.org/04wcn4e27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://leaps-initiative.eu" + } + ], + "names": [ + { + "value": "LEAPS", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "League of European Accelerator-based Photon Sources", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04x2nq985.json b/test-relationship-delete-v2/new/04x2nq985.json new file mode 100644 index 000000000..6a55aa7cc --- /dev/null +++ b/test-relationship-delete-v2/new/04x2nq985.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 1811103, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 23.02677, + "lng": 113.13148, + "name": "Foshan" + } + } + ], + "established": 1958, + "external_ids": [], + "id": "https://ror.org/04x2nq985", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.sddermyy.com" + } + ], + "names": [ + { + "value": "The Affiliated Shunde Hospital of Jinan University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "The Second People's Hospital of Shunde", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Affiliated Shunde Hospital of Jinan University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Second People's Hospital of Shunde", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "顺德第二人民医院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "暨南大学附属顺德医院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04xrsn650.json b/test-relationship-delete-v2/new/04xrsn650.json new file mode 100644 index 000000000..291ec9486 --- /dev/null +++ b/test-relationship-delete-v2/new/04xrsn650.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2653941, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.2, + "lng": 0.11667, + "name": "Cambridge" + } + } + ], + "established": 2000, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q1783815" + ], + "preferred": "Q1783815" + } + ], + "id": "https://ror.org/04xrsn650", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ninjatheory.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ninja_Theory" + } + ], + "names": [ + { + "value": "Ninja Theory (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ninja Theory", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ninja Theory Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ninja Theory Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Just Add Monsters", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Just Add Monsters Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Just Add Monsters Limited", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/04z2hsy54.json b/test-relationship-delete-v2/new/04z2hsy54.json new file mode 100644 index 000000000..a4840e014 --- /dev/null +++ b/test-relationship-delete-v2/new/04z2hsy54.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 3173435, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/04z2hsy54", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nvidia.com/it-it/" + } + ], + "names": [ + { + "value": "NVIDIA (Italy)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NVIDIA Italy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Nvidia Italy S.R.L.", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/050gm3a53.json b/test-relationship-delete-v2/new/050gm3a53.json new file mode 100644 index 000000000..fe8662cb5 --- /dev/null +++ b/test-relationship-delete-v2/new/050gm3a53.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 1169825, + "geonames_details": { + "country_code": "PK", + "country_name": "Pakistan", + "lat": 30.19679, + "lng": 71.47824, + "name": "Multan" + } + } + ], + "established": 2007, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0397 1697" + ], + "preferred": "0000 0004 0397 1697" + } + ], + "id": "https://ror.org/050gm3a53", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cpeic.punjab.gov.pk" + } + ], + "names": [ + { + "value": "Ch. Pervaiz Elahi Institute of Cardiology, Multan", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Chaudhry Pervaiz Elahi Institute of Cardiology, Multan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CPE Institute of Cardiology, Multan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CPEIC Multan", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/051eysy15.json b/test-relationship-delete-v2/new/051eysy15.json new file mode 100644 index 000000000..ddd56f134 --- /dev/null +++ b/test-relationship-delete-v2/new/051eysy15.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 2925533, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.11552, + "lng": 8.68417, + "name": "Frankfurt am Main" + } + } + ], + "established": 1936, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9236 090X" + ], + "preferred": "0000 0004 9236 090X" + }, + { + "type": "fundref", + "all": [ + "100015931" + ], + "preferred": "100015931" + } + ], + "id": "https://ror.org/051eysy15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://dechema.de/mbf.html" + } + ], + "names": [ + { + "value": "Max Buchner Forschungsstiftung", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Max-Buchner-Forschungsstiftung", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Max Buchner Research Foundation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "MBF", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "MBFSt", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/0526zh358.json b/test-relationship-delete-v2/new/0526zh358.json new file mode 100644 index 000000000..60efe64e9 --- /dev/null +++ b/test-relationship-delete-v2/new/0526zh358.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2653822, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.48, + "lng": -3.18, + "name": "Cardiff" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8306 8544" + ], + "preferred": "0000 0004 8306 8544" + }, + { + "type": "fundref", + "all": [ + "501100014332" + ], + "preferred": "501100014332" + } + ], + "id": "https://ror.org/0526zh358", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lsrnw.ac.uk" + } + ], + "names": [ + { + "value": "Life Sciences Research Network Wales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Rhwydwaith Gwyddorau Bywyd Cymru", + "types": [ + "label" + ], + "lang": "cy" + }, + { + "value": "LSRNW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/0538nf417.json b/test-relationship-delete-v2/new/0538nf417.json new file mode 100644 index 000000000..6e9d129c5 --- /dev/null +++ b/test-relationship-delete-v2/new/0538nf417.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 3199016, + "geonames_details": { + "country_code": "SI", + "country_name": "Slovenia", + "lat": 45.51123, + "lng": 13.65655, + "name": "Izola" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/0538nf417", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://innorenew.eu" + } + ], + "names": [ + { + "value": "InnoRenew CoE", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "InnoRenew CoE Center odličnosti za raziskave in inovacije na področju obnovljivih materialov in zdravega bivanjskega okolja", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/0551gkb08.json b/test-relationship-delete-v2/new/0551gkb08.json new file mode 100644 index 000000000..67841dd38 --- /dev/null +++ b/test-relationship-delete-v2/new/0551gkb08.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5398563, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.42411, + "lng": -122.16608, + "name": "Stanford" + } + } + ], + "established": 1978, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8307 2922" + ], + "preferred": "0000 0004 8307 2922" + }, + { + "type": "fundref", + "all": [ + "100015269" + ], + "preferred": "100015269" + } + ], + "id": "https://ror.org/0551gkb08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://systemx.stanford.edu" + } + ], + "names": [ + { + "value": "Stanford SystemX Alliance", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Center for Integrated Systems", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CIS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/055rh9p75.json b/test-relationship-delete-v2/new/055rh9p75.json new file mode 100644 index 000000000..4732be991 --- /dev/null +++ b/test-relationship-delete-v2/new/055rh9p75.json @@ -0,0 +1,79 @@ +{ + "locations": [ + { + "geonames_id": 1800627, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.46784, + "lng": 104.68168, + "name": "Mianyang" + } + } + ], + "established": 2007, + "external_ids": [], + "id": "https://ror.org/055rh9p75", + "domains": [], + "links": [], + "names": [ + { + "value": "State Key Laboratory of Aerodynamics", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Aerodynamics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "空气动力学国家重点实验室", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Laboratory of Aerodynamic Science and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Lab of Aerodynamic Science and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "空天飞行空气动力科学与技术全国重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05679z329.json b/test-relationship-delete-v2/new/05679z329.json new file mode 100644 index 000000000..dc6f2f21f --- /dev/null +++ b/test-relationship-delete-v2/new/05679z329.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5811696, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 47.65966, + "lng": -117.42908, + "name": "Spokane" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6087 9942" + ], + "preferred": "0000 0004 6087 9942" + }, + { + "type": "fundref", + "all": [ + "100011502" + ], + "preferred": "100011502" + } + ], + "id": "https://ror.org/05679z329", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://wagrains.org" + } + ], + "names": [ + { + "value": "Washington Grain Commission", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Washington State Grain Commission", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "WGC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/0568g2481.json b/test-relationship-delete-v2/new/0568g2481.json new file mode 100644 index 000000000..146709eaa --- /dev/null +++ b/test-relationship-delete-v2/new/0568g2481.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 4487042, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 35.7721, + "lng": -78.63861, + "name": "Raleigh" + } + } + ], + "established": 2007, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012671" + ], + "preferred": "100012671" + } + ], + "id": "https://ror.org/0568g2481", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://thenonwovensinstitute.com" + } + ], + "names": [ + { + "value": "The Nonwovens Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Nonwovens Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "North Carolina State University Nonwovens Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NWI NCSU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/056nnzb78.json b/test-relationship-delete-v2/new/056nnzb78.json new file mode 100644 index 000000000..22f1f617e --- /dev/null +++ b/test-relationship-delete-v2/new/056nnzb78.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5134086, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.15478, + "lng": -77.61556, + "name": "Rochester" + } + } + ], + "established": 1881, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0940 8270" + ], + "preferred": "0000 0001 0940 8270" + }, + { + "type": "wikidata", + "all": [ + "Q70060834" + ], + "preferred": "Q70060834" + }, + { + "type": "fundref", + "all": [ + "100011435" + ], + "preferred": "100011435" + } + ], + "id": "https://ror.org/056nnzb78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.rasny.org" + } + ], + "names": [ + { + "value": "Rochester Academy of Science", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "RAS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/057apef51.json b/test-relationship-delete-v2/new/057apef51.json new file mode 100644 index 000000000..f8ef3fa78 --- /dev/null +++ b/test-relationship-delete-v2/new/057apef51.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1088 8602" + ], + "preferred": "0000 0005 1088 8602" + }, + { + "type": "fundref", + "all": [ + "100015427" + ], + "preferred": "100015427" + } + ], + "id": "https://ror.org/057apef51", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://cqmf-qcam.ca" + } + ], + "names": [ + { + "value": "Centre québécois sur les matériaux fonctionnels", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Quebec Centre for Advanced Materials", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CQMF", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "QCAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/057c1ry34.json b/test-relationship-delete-v2/new/057c1ry34.json new file mode 100644 index 000000000..e60686359 --- /dev/null +++ b/test-relationship-delete-v2/new/057c1ry34.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6138374, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.63076, + "lng": -72.95699, + "name": "Saint-Hyacinthe" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 5137" + ], + "preferred": "0000 0004 4910 5137" + } + ], + "id": "https://ror.org/057c1ry34", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.santemonteregie.qc.ca/est" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de la Montérégie-Est", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de la Montérégie-Est", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/057k6gq03.json b/test-relationship-delete-v2/new/057k6gq03.json new file mode 100644 index 000000000..e2cf4f303 --- /dev/null +++ b/test-relationship-delete-v2/new/057k6gq03.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 3108681, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.76401, + "lng": -2.46883, + "name": "Soria" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/057k6gq03", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cesefor.com" + } + ], + "names": [ + { + "value": "Cesefor", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fundacion Centro de Servicios y Promocion Forestal y de su Industria de Castilla y Leon", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/057p7e749.json b/test-relationship-delete-v2/new/057p7e749.json new file mode 100644 index 000000000..6adf96822 --- /dev/null +++ b/test-relationship-delete-v2/new/057p7e749.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 1705536, + "geonames_details": { + "country_code": "PH", + "country_name": "Philippines", + "lat": 14.17025, + "lng": 121.24181, + "name": "Los Baños" + } + } + ], + "established": 1972, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0095 710X" + ], + "preferred": "0000 0001 0095 710X" + }, + { + "type": "wikidata", + "all": [ + "Q7185026" + ], + "preferred": "Q7185026" + }, + { + "type": "fundref", + "all": [ + "501100014166" + ], + "preferred": "501100014166" + } + ], + "id": "https://ror.org/057p7e749", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pcaarrd.dost.gov.ph" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Philippine_Council_for_Agriculture%2C_Aquatic%2C_and_Natural_Resources_Research_and_Development" + } + ], + "names": [ + { + "value": "Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PCAARRD", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "DOST-PCAARRD", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/058ne9w36.json b/test-relationship-delete-v2/new/058ne9w36.json new file mode 100644 index 000000000..d3fab013e --- /dev/null +++ b/test-relationship-delete-v2/new/058ne9w36.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0490 965X" + ], + "preferred": "0000 0004 0490 965X" + }, + { + "type": "fundref", + "all": [ + "100016916" + ], + "preferred": "100016916" + } + ], + "id": "https://ror.org/058ne9w36", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.royalmarsden.org" + } + ], + "names": [ + { + "value": "Royal Marsden Cancer Charity", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/059wz5438.json b/test-relationship-delete-v2/new/059wz5438.json new file mode 100644 index 000000000..01812e70e --- /dev/null +++ b/test-relationship-delete-v2/new/059wz5438.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0512 5953" + ], + "preferred": "0000 0004 0512 5953" + }, + { + "type": "wikidata", + "all": [ + "Q842509" + ], + "preferred": "Q842509" + } + ], + "id": "https://ror.org/059wz5438", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.chng.com.cn" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/China_Huaneng_Group" + } + ], + "names": [ + { + "value": "China Huaneng Group Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "China Huaneng Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "China Huaneng Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "China Huaneng Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中国华能集团", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05b0g2v72.json b/test-relationship-delete-v2/new/05b0g2v72.json new file mode 100644 index 000000000..56982c3db --- /dev/null +++ b/test-relationship-delete-v2/new/05b0g2v72.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 4931972, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.3751, + "lng": -71.10561, + "name": "Cambridge" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q7300869" + ], + "preferred": "Q7300869" + }, + { + "type": "fundref", + "all": [ + "100013721" + ], + "preferred": "100013721" + } + ], + "id": "https://ror.org/05b0g2v72", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://rcc.harvard.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Real_Colegio_Complutense" + } + ], + "names": [ + { + "value": "Real Colegio Complutense", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Real Colegio Complutense at Harvard University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "RCC at Harvard University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "RCCHU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05bjr0y28.json b/test-relationship-delete-v2/new/05bjr0y28.json new file mode 100644 index 000000000..d8c4253bd --- /dev/null +++ b/test-relationship-delete-v2/new/05bjr0y28.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 5278052, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.01168, + "lng": -88.23148, + "name": "Waukesha" + } + } + ], + "established": 2006, + "external_ids": [], + "id": "https://ror.org/05bjr0y28", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.neurotecheeg.com" + } + ], + "names": [ + { + "value": "Neurotech, LLC (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Neurotech", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Neurotech, LLC", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05cebxq10.json b/test-relationship-delete-v2/new/05cebxq10.json new file mode 100644 index 000000000..0053da23e --- /dev/null +++ b/test-relationship-delete-v2/new/05cebxq10.json @@ -0,0 +1,86 @@ +{ + "locations": [ + { + "geonames_id": 112931, + "geonames_details": { + "country_code": "IR", + "country_name": "Iran", + "lat": 35.69439, + "lng": 51.42151, + "name": "Tehran" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7433 9111" + ], + "preferred": "0000 0004 7433 9111" + }, + { + "type": "wikidata", + "all": [ + "Q112085401" + ], + "preferred": "Q112085401" + }, + { + "type": "fundref", + "all": [ + "501100010606" + ], + "preferred": "501100010606" + } + ], + "id": "https://ror.org/05cebxq10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aeoi.org.ir/en/portal/home/?47916/%D8%B5%D9%81%D8%AD%D9%87-nuclear-science-and-technology-research" + } + ], + "names": [ + { + "value": "Nuclear Science and Technology Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Nuclear Science and Technology Research Institute of Iran", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NSTRI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05cmj5t40.json b/test-relationship-delete-v2/new/05cmj5t40.json new file mode 100644 index 000000000..92adc4458 --- /dev/null +++ b/test-relationship-delete-v2/new/05cmj5t40.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5920433, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.38338, + "lng": -73.74919, + "name": "Châteauguay" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 5129" + ], + "preferred": "0000 0004 4910 5129" + } + ], + "id": "https://ror.org/05cmj5t40", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.santemonteregie.qc.ca/ouest" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de la Montérégie-Ouest", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de la Montérégie-Ouest", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05cshtm26.json b/test-relationship-delete-v2/new/05cshtm26.json new file mode 100644 index 000000000..a4c794403 --- /dev/null +++ b/test-relationship-delete-v2/new/05cshtm26.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 5140405, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.04812, + "lng": -76.14742, + "name": "Syracuse" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1483 9309" + ], + "preferred": "0000 0004 1483 9309" + }, + { + "type": "fundref", + "all": [ + "100013115" + ], + "preferred": "100013115" + } + ], + "id": "https://ror.org/05cshtm26", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.esf.edu/glrc/index.php" + } + ], + "names": [ + { + "value": "Great Lakes Research Consortium", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "GLRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05d6tb673.json b/test-relationship-delete-v2/new/05d6tb673.json new file mode 100644 index 000000000..84f2175fe --- /dev/null +++ b/test-relationship-delete-v2/new/05d6tb673.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3176219, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 44.40478, + "lng": 8.94439, + "name": "Genoa" + } + } + ], + "established": 1948, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1530 5008" + ], + "preferred": "0000 0001 1530 5008" + }, + { + "type": "wikidata", + "all": [ + "Q30888334" + ], + "preferred": "Q30888334" + }, + { + "type": "fundref", + "all": [ + "501100009881" + ], + "preferred": "501100009881" + } + ], + "id": "https://ror.org/05d6tb673", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.regione.liguria.it" + }, + { + "type": "wikipedia", + "value": "https://it.wikipedia.org/wiki/Giunta_regionale_della_Liguria" + } + ], + "names": [ + { + "value": "Regione Liguria", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Liguria Region", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Region of Liguria", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05d8cac05.json b/test-relationship-delete-v2/new/05d8cac05.json new file mode 100644 index 000000000..23de9f0ce --- /dev/null +++ b/test-relationship-delete-v2/new/05d8cac05.json @@ -0,0 +1,51 @@ +{ + "locations": [ + { + "geonames_id": 1796236, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.22222, + "lng": 121.45806, + "name": "Shanghai" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/05d8cac05", + "domains": [], + "links": [], + "names": [ + { + "value": "Shanghai Institute of Pollution Control and Ecological Security", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "上海污染控制与生态安全研究院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05dch6316.json b/test-relationship-delete-v2/new/05dch6316.json new file mode 100644 index 000000000..15d1d9319 --- /dev/null +++ b/test-relationship-delete-v2/new/05dch6316.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 4259418, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.76838, + "lng": -86.15804, + "name": "Indianapolis" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0431 6096" + ], + "preferred": "0000 0004 0431 6096" + }, + { + "type": "wikidata", + "all": [ + "Q73495380" + ], + "preferred": "Q73495380" + } + ], + "id": "https://ror.org/05dch6316", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://palni.org" + } + ], + "names": [ + { + "value": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Private Academic Library Network of Indiana, Inc.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Private Academic Library Network of Indiana", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PALNI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05dpwde09.json b/test-relationship-delete-v2/new/05dpwde09.json new file mode 100644 index 000000000..981e8886b --- /dev/null +++ b/test-relationship-delete-v2/new/05dpwde09.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2639192, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.57515, + "lng": 0.18582, + "name": "Romford" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4904 9470" + ], + "preferred": "0000 0004 4904 9470" + }, + { + "type": "fundref", + "all": [ + "501100018817" + ], + "preferred": "501100018817" + } + ], + "id": "https://ror.org/05dpwde09", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://lupusuk.org.uk" + } + ], + "names": [ + { + "value": "LUPUS UK", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05ehpzy81.json b/test-relationship-delete-v2/new/05ehpzy81.json new file mode 100644 index 000000000..f2ee93969 --- /dev/null +++ b/test-relationship-delete-v2/new/05ehpzy81.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5928 1249" + ], + "preferred": "0000 0004 5928 1249" + }, + { + "type": "fundref", + "all": [ + "501100015648" + ], + "preferred": "501100015648" + } + ], + "id": "https://ror.org/05ehpzy81", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.epri.sgcc.com.cn" + } + ], + "names": [ + { + "value": "China Electric Power Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "中国电力科学研究院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "China Electric Power Research Institute Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "China Electric Power Research Institute Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中国电力科学研究院有限公司", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "CEPRI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05eky6607.json b/test-relationship-delete-v2/new/05eky6607.json new file mode 100644 index 000000000..78791de60 --- /dev/null +++ b/test-relationship-delete-v2/new/05eky6607.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5959974, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.47723, + "lng": -75.70164, + "name": "Gatineau" + } + } + ], + "established": 1967, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8063 3499" + ], + "preferred": "0000 0004 8063 3499" + } + ], + "id": "https://ror.org/05eky6607", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cisss-outaouais.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et des services sociaux de l’Outaouais", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de l'Outaouais", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05gt9yw23.json b/test-relationship-delete-v2/new/05gt9yw23.json new file mode 100644 index 000000000..d7ac13b5e --- /dev/null +++ b/test-relationship-delete-v2/new/05gt9yw23.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 333750, + "geonames_details": { + "country_code": "ET", + "country_name": "Ethiopia", + "lat": 5.65, + "lng": 36.65, + "name": "Jinka" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0976 328X" + ], + "preferred": "0000 0005 0976 328X" + } + ], + "id": "https://ror.org/05gt9yw23", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://jku.edu.et" + } + ], + "names": [ + { + "value": "Jinka University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ጂንካ ዩኒቨርሲቲ", + "types": [ + "label" + ], + "lang": "am" + }, + { + "value": "JKU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05jge5x64.json b/test-relationship-delete-v2/new/05jge5x64.json new file mode 100644 index 000000000..1dd9ebe41 --- /dev/null +++ b/test-relationship-delete-v2/new/05jge5x64.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2185018, + "geonames_details": { + "country_code": "NZ", + "country_name": "New Zealand", + "lat": -40.35636, + "lng": 175.61113, + "name": "Palmerston North" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7863 9787" + ], + "preferred": "0000 0004 7863 9787" + }, + { + "type": "wikidata", + "all": [ + "Q116185757" + ], + "preferred": "Q116185757" + }, + { + "type": "fundref", + "all": [ + "501100009482" + ], + "preferred": "501100009482" + } + ], + "id": "https://ror.org/05jge5x64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nzagrc.org.nz" + } + ], + "names": [ + { + "value": "New Zealand Agricultural Greenhouse Gas Research Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NZ Agricultural Greenhouse Gas Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NZAGRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05jnma812.json b/test-relationship-delete-v2/new/05jnma812.json new file mode 100644 index 000000000..619be6e5a --- /dev/null +++ b/test-relationship-delete-v2/new/05jnma812.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0697 156X" + ], + "preferred": "0000 0001 0697 156X" + }, + { + "type": "fundref", + "all": [ + "100012387" + ], + "preferred": "100012387" + } + ], + "id": "https://ror.org/05jnma812", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.acf.hhs.gov/opre/" + } + ], + "names": [ + { + "value": "Office of Planning, Research and Evaluation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Office of Planning, Research & Evaluation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OPRE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05jvrb780.json b/test-relationship-delete-v2/new/05jvrb780.json new file mode 100644 index 000000000..527a0bc8a --- /dev/null +++ b/test-relationship-delete-v2/new/05jvrb780.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 756135, + "geonames_details": { + "country_code": "PL", + "country_name": "Poland", + "lat": 52.22977, + "lng": 21.01178, + "name": "Warsaw" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9334 2236" + ], + "preferred": "0000 0004 9334 2236" + } + ], + "id": "https://ror.org/05jvrb780", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://grape.org.pl/fame" + } + ], + "names": [ + { + "value": "Fundacja Adeptów i Miłośników Ekonomii", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Foundation of Admirers and Mavens of Economics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FAME", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05mee8y17.json b/test-relationship-delete-v2/new/05mee8y17.json new file mode 100644 index 000000000..d1bdbc2bb --- /dev/null +++ b/test-relationship-delete-v2/new/05mee8y17.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3448439, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -23.5475, + "lng": -46.63611, + "name": "São Paulo" + } + } + ], + "established": 2013, + "external_ids": [], + "id": "https://ror.org/05mee8y17", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://vitaalere.com.br" + } + ], + "names": [ + { + "value": "Instituto Vita Alere", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto Vita Alere de Prevenção e Posvenção do Suicídio", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Vita Alere Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IVA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05mz0pr34.json b/test-relationship-delete-v2/new/05mz0pr34.json new file mode 100644 index 000000000..f15fa0724 --- /dev/null +++ b/test-relationship-delete-v2/new/05mz0pr34.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q45131942" + ], + "preferred": "Q45131942" + }, + { + "type": "fundref", + "all": [ + "100011088" + ], + "preferred": "100011088" + } + ], + "id": "https://ror.org/05mz0pr34", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uclhcharity.org.uk" + } + ], + "names": [ + { + "value": "UCL Hospitals Charitable Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "UCLH Charitable Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University College London Hospitals Charitable Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UCLH Charity", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05nqvv719.json b/test-relationship-delete-v2/new/05nqvv719.json new file mode 100644 index 000000000..60b411742 --- /dev/null +++ b/test-relationship-delete-v2/new/05nqvv719.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 3871336, + "geonames_details": { + "country_code": "CL", + "country_name": "Chile", + "lat": -33.45694, + "lng": -70.64827, + "name": "Santiago" + } + } + ], + "established": 1924, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0628 5553" + ], + "preferred": "0000 0004 0628 5553" + }, + { + "type": "wikidata", + "all": [ + "Q6017174" + ], + "preferred": "Q6017174" + } + ], + "id": "https://ror.org/05nqvv719", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.minagri.gob.cl" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Agriculture_%28Chile%29" + } + ], + "names": [ + { + "value": "Ministerio de Agricultura", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Minagri", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministerio de Agricultura de Chile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Chilean Ministry of Agriculture", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Agriculture, Chile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Agriculture", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05q4hzm57.json b/test-relationship-delete-v2/new/05q4hzm57.json new file mode 100644 index 000000000..0db5b57ef --- /dev/null +++ b/test-relationship-delete-v2/new/05q4hzm57.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/05q4hzm57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://kfid-online.de" + } + ], + "names": [ + { + "value": "Kommission für Forschungsinformationen in Deutschland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Commission for Research Information in Germany", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "KFID", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05q6yhx55.json b/test-relationship-delete-v2/new/05q6yhx55.json new file mode 100644 index 000000000..8a97d575c --- /dev/null +++ b/test-relationship-delete-v2/new/05q6yhx55.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2656173, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.3751, + "lng": -2.36172, + "name": "Bath" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7784 7859" + ], + "preferred": "0000 0004 7784 7859" + }, + { + "type": "fundref", + "all": [ + "100012660" + ], + "preferred": "100012660" + } + ], + "id": "https://ror.org/05q6yhx55", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.evacranetrust.org" + } + ], + "names": [ + { + "value": "Eva Crane Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05sqppn31.json b/test-relationship-delete-v2/new/05sqppn31.json new file mode 100644 index 000000000..1127b3178 --- /dev/null +++ b/test-relationship-delete-v2/new/05sqppn31.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2797656, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 51.05, + "lng": 3.71667, + "name": "Ghent" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0729 1485" + ], + "preferred": "0000 0005 0729 1485" + }, + { + "type": "fundref", + "all": [ + "100019618" + ], + "preferred": "100019618" + } + ], + "id": "https://ror.org/05sqppn31", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vscentrum.be" + } + ], + "names": [ + { + "value": "Vlaams Supercomputer Centrum", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Flemish Supercomputer Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Flemish Supercomputer Centre", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "VSC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05stqjz94.json b/test-relationship-delete-v2/new/05stqjz94.json new file mode 100644 index 000000000..7c48ec96f --- /dev/null +++ b/test-relationship-delete-v2/new/05stqjz94.json @@ -0,0 +1,66 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q45134415" + ], + "preferred": "Q45134415" + }, + { + "type": "fundref", + "all": [ + "100012164" + ], + "preferred": "100012164" + } + ], + "id": "https://ror.org/05stqjz94", + "domains": [], + "links": [], + "names": [ + { + "value": "Row Fogo Charitable Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Mrs. Gladys Row Fogo Charitable Trust", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05sz3st37.json b/test-relationship-delete-v2/new/05sz3st37.json new file mode 100644 index 000000000..82102c38b --- /dev/null +++ b/test-relationship-delete-v2/new/05sz3st37.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6325521, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.80326, + "lng": -71.17793, + "name": "Lévis" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9606 3209" + ], + "preferred": "0000 0000 9606 3209" + }, + { + "type": "wikidata", + "all": [ + "Q3009983" + ], + "preferred": "Q3009983" + } + ], + "id": "https://ror.org/05sz3st37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cegepba.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/C%C3%A9gep_Beauce-Appalaches" + } + ], + "names": [ + { + "value": "Cégep Beauce-Appalaches", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05t17k830.json b/test-relationship-delete-v2/new/05t17k830.json new file mode 100644 index 000000000..ec595566a --- /dev/null +++ b/test-relationship-delete-v2/new/05t17k830.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0285 1076" + ], + "preferred": "0000 0005 0285 1076" + }, + { + "type": "fundref", + "all": [ + "501100019326" + ], + "preferred": "501100019326" + } + ], + "id": "https://ror.org/05t17k830", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ukrmp.org.uk" + } + ], + "names": [ + { + "value": "UK Regenerative Medicine Platform", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "United Kingdom Regenerative Medicine Platform", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UKRMP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05t2rs949.json b/test-relationship-delete-v2/new/05t2rs949.json new file mode 100644 index 000000000..f33c481f3 --- /dev/null +++ b/test-relationship-delete-v2/new/05t2rs949.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 3470353, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -23.51056, + "lng": -46.87611, + "name": "Barueri" + } + } + ], + "established": 1994, + "external_ids": [], + "id": "https://ror.org/05t2rs949", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fieb.edu.br" + } + ], + "names": [ + { + "value": "Fundação Instututo de Educação de Barueri", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto Tecnológico de Barueri", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FIEB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05tamah23.json b/test-relationship-delete-v2/new/05tamah23.json new file mode 100644 index 000000000..b834f70bf --- /dev/null +++ b/test-relationship-delete-v2/new/05tamah23.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2653941, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.2, + "lng": 0.11667, + "name": "Cambridge" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011032" + ], + "preferred": "501100011032" + } + ], + "id": "https://ror.org/05tamah23", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cedar.iph.cam.ac.uk" + } + ], + "names": [ + { + "value": "Communicating Diet and Activity Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre for Diet and Activity Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CEDAR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05tvkct11.json b/test-relationship-delete-v2/new/05tvkct11.json new file mode 100644 index 000000000..7ad1b9f21 --- /dev/null +++ b/test-relationship-delete-v2/new/05tvkct11.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2158177, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -37.814, + "lng": 144.96332, + "name": "Melbourne" + } + } + ], + "established": 1978, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6431 4914" + ], + "preferred": "0000 0004 6431 4914" + }, + { + "type": "wikidata", + "all": [ + "Q7238757" + ], + "preferred": "Q7238757" + }, + { + "type": "fundref", + "all": [ + "100012188" + ], + "preferred": "100012188" + } + ], + "id": "https://ror.org/05tvkct11", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Pratt_Foundation" + } + ], + "names": [ + { + "value": "Pratt Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05v727m31.json b/test-relationship-delete-v2/new/05v727m31.json new file mode 100644 index 000000000..4581efefc --- /dev/null +++ b/test-relationship-delete-v2/new/05v727m31.json @@ -0,0 +1,106 @@ +{ + "locations": [ + { + "geonames_id": 2978317, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.1787, + "lng": 5.76281, + "name": "Saint-Martin-d'Hères" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q3551589" + ], + "preferred": "Q3551589" + }, + { + "type": "fundref", + "all": [ + "100012953" + ], + "preferred": "100012953" + } + ], + "id": "https://ror.org/05v727m31", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Community_Universit%C3%A9_Grenoble_Alpes" + } + ], + "names": [ + { + "value": "Communauté Université Grenoble Alpes", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Grenoble Alpes ComUE", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Communauté Université Grenoble-Alpes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Grenoble Alpes Community", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ComUE Université Grenoble Alpes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Community University Grenoble Alps", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "COMUE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05vs9t239.json b/test-relationship-delete-v2/new/05vs9t239.json new file mode 100644 index 000000000..1e38561a2 --- /dev/null +++ b/test-relationship-delete-v2/new/05vs9t239.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 1793511, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 37.86944, + "lng": 112.56028, + "name": "Taiyuan" + } + } + ], + "established": 1998, + "external_ids": [], + "id": "https://ror.org/05vs9t239", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sx.sgcc.com.cn" + } + ], + "names": [ + { + "value": "State Grid Shanxi Electric Power Company Electric Power Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "国网山西省电力公司电力科学研究院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/new/05wnp0977.json b/test-relationship-delete-v2/new/05wnp0977.json new file mode 100644 index 000000000..5dfd34e12 --- /dev/null +++ b/test-relationship-delete-v2/new/05wnp0977.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012339" + ], + "preferred": "100012339" + } + ], + "id": "https://ror.org/05wnp0977", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gov.uk/government/organisations/defence-and-security-accelerator" + } + ], + "names": [ + { + "value": "Defence and Security Accelerator", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DASA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/relationships.csv b/test-relationship-delete-v2/relationships.csv new file mode 100644 index 000000000..564d2eb76 --- /dev/null +++ b/test-relationship-delete-v2/relationships.csv @@ -0,0 +1,73 @@ +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 +9986,https://github.com/ror-community/ror-updates/issues/9986,"Modify the information in an existing ROR record: +UNIVERSIDAD DE LA LAGUNA https://ror.org/01r9z8p25 +",UNIVERSIDAD DE LA LAGUNA,https://ror.org/01r9z8p25,https://ror.org/03cmntr54,Instituto de Astrof√≠sica de Canarias,Child,Production +9986,https://github.com/ror-community/ror-updates/issues/9986,"Modify the information in an existing ROR record: +UNIVERSIDAD DE LA LAGUNA https://ror.org/01r9z8p25 +",Instituto de Astrof√≠sica de Canarias,https://ror.org/03cmntr54,https://ror.org/01r9z8p25,UNIVERSIDAD DE LA LAGUNA,Parent,Release +9986,https://github.com/ror-community/ror-updates/issues/9986,"Modify the information in an existing ROR record: +UNIVERSIDAD DE LA LAGUNA https://ror.org/01r9z8p25 +",UNIVERSIDAD DE LA LAGUNA,https://ror.org/01r9z8p25,https://ror.org/005a3p084,Hospital Universitario Nuestra Se√±ora de Candelaria,Related,Production +9986,https://github.com/ror-community/ror-updates/issues/9986,"Modify the information in an existing ROR record: +UNIVERSIDAD DE LA LAGUNA https://ror.org/01r9z8p25 +",Hospital Universitario Nuestra Se√±ora de Candelaria,https://ror.org/005a3p084,https://ror.org/01r9z8p25,UNIVERSIDAD DE LA LAGUNA,Related,Release +9712,https://github.com/ror-community/ror-updates/issues/9712,Modify the information in an existing ROR record: AT4 wireless (Spain) - https://ror.org/05f8nen40,AT4 wireless (Spain),https://ror.org/05f8nen40,https://ror.org/02b3ny291,Dekra (Germany),Successor,Production +,,,Institute for Translational Medicine and Liver Disease,https://ror.org/00jvqbw52,https://ror.org/02vjkv261,Inserm,Delete, +9713,https://github.com/ror-community/ror-updates/issues/9713,Modify the information in an existing ROR record: IberEspacio (Spain) - https://ror.org/00mccb878,IberEspacio (Spain),https://ror.org/00mccb878,https://ror.org/04mnaqe33,Arquimea (Spain),Successor,Production +9715,https://github.com/ror-community/ror-updates/issues/9715,Modify the information in an existing ROR record: Lipotec (Spain) - https://ror.org/04k1qv985,Lipotec (Spain),https://ror.org/04k1qv985,https://ror.org/03kp1tb17,Lubrizol Life Science Health (United States),Successor,Production +9760,https://github.com/ror-community/ror-updates/issues/9760,Modify the information in an existing ROR record: AIDIMA Technology Institute - https://ror.org/030gd0911,AIDIMA Technology Institute,https://ror.org/030gd0911,https://ror.org/057f9wg13,"Instituto Tecnol√≥gico Metalmec√°nico, Mueble, Madera, Embalaje y Afines",Successor,Production +9755,https://github.com/ror-community/ror-updates/issues/9755,Modify the information in an existing ROR record: Catalonian Research and Innovation Centre - https://ror.org/03hpdk269,Catalonian Research and Innovation Centre,https://ror.org/03hpdk269,https://ror.org/01m260238,Ateknea Solutions (Spain),Successor,Production +9726,https://github.com/ror-community/ror-updates/issues/9726,Modify the information in an existing ROR record: Centre de Recerca en Sanitat Animal - https://ror.org/011jtr847,Centre de Recerca en Sanitat Animal,https://ror.org/011jtr847,https://ror.org/012zh9h13,Institute for Research and Technology in Food and Agriculture,Successor,Production +9719,https://github.com/ror-community/ror-updates/issues/9719,Modify the information in an existing ROR record: Ramem (Spain) - https://ror.org/057yy7z71,Ramem (Spain),https://ror.org/057yy7z71,https://ror.org/04mnaqe33,Arquimea (Spain),Successor,Production +9765,https://github.com/ror-community/ror-updates/issues/9765,Modify the information in an existing ROR record: Centre for Nanoscience and Nanotechnology - https://ror.org/00zay3w86,Centre for Nanoscience and Nanotechnology,https://ror.org/00zay3w86,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9765,https://github.com/ror-community/ror-updates/issues/9765,Modify the information in an existing ROR record: Centre for Nanoscience and Nanotechnology - https://ror.org/00zay3w86,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/00zay3w86,Centre for Nanoscience and Nanotechnology,Child,Release +,,,Délégation Ile-de-France Sud,https://ror.org/01y8j9r24,https://ror.org/03yz3tz18,Direction Générale Déléguée aux Ressources,Delete, +9766,https://github.com/ror-community/ror-updates/issues/9766,Modify the information in an existing ROR record: Centre de recherche en Epid√©miologie et Sant√© des Populations - https://ror.org/01ed4t417,Centre de recherche en Epid√©miologie et Sant√© des Populations,https://ror.org/01ed4t417,https://ror.org/02vjkv261,Inserm,Parent,Release +9766,https://github.com/ror-community/ror-updates/issues/9766,Modify the information in an existing ROR record: Centre de recherche en Epid√©miologie et Sant√© des Populations - https://ror.org/01ed4t417,Inserm,https://ror.org/02vjkv261,https://ror.org/01ed4t417,Centre de recherche en Epid√©miologie et Sant√© des Populations,Child,Release +9766,https://github.com/ror-community/ror-updates/issues/9766,Modify the information in an existing ROR record: Centre de recherche en Epid√©miologie et Sant√© des Populations - https://ror.org/01ed4t417,Centre de recherche en Epid√©miologie et Sant√© des Populations,https://ror.org/01ed4t417,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9766,https://github.com/ror-community/ror-updates/issues/9766,Modify the information in an existing ROR record: Centre de recherche en Epid√©miologie et Sant√© des Populations - https://ror.org/01ed4t417,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/01ed4t417,Centre de recherche en Epid√©miologie et Sant√© des Populations,Child,Release +9767,https://github.com/ror-community/ror-updates/issues/9767,Modify the information in an existing ROR record: Department of Mathematics and their Applications - https://ror.org/03k9z2963,Department of Mathematics and their Applications,https://ror.org/03k9z2963,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9767,https://github.com/ror-community/ror-updates/issues/9767,Modify the information in an existing ROR record: Department of Mathematics and their Applications - https://ror.org/03k9z2963,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/03k9z2963,Department of Mathematics and their Applications,Child,Release +9768,https://github.com/ror-community/ror-updates/issues/9768,Modify the information in an existing ROR record: D√©partement de Math√©matiques - https://ror.org/03ab0zs98,D√©partement de Math√©matiques,https://ror.org/03ab0zs98,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9768,https://github.com/ror-community/ror-updates/issues/9768,Modify the information in an existing ROR record: D√©partement de Math√©matiques - https://ror.org/03ab0zs98,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/03ab0zs98,D√©partement de Math√©matiques,Child,Release +9768,https://github.com/ror-community/ror-updates/issues/9768,Modify the information in an existing ROR record: D√©partement de Math√©matiques - https://ror.org/03ab0zs98,D√©partement de Math√©matiques,https://ror.org/03ab0zs98,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9768,https://github.com/ror-community/ror-updates/issues/9768,Modify the information in an existing ROR record: D√©partement de Math√©matiques - https://ror.org/03ab0zs98,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/03ab0zs98,D√©partement de Math√©matiques,Child,Release +9769,https://github.com/ror-community/ror-updates/issues/9769,"Modify the information in an existing ROR record: Fluides, Automatique et Syst√®mes Thermiques - https://ror.org/02byv2846","Fluides, Automatique et Syst√®mes Thermiques",https://ror.org/02byv2846,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9769,https://github.com/ror-community/ror-updates/issues/9769,"Modify the information in an existing ROR record: Fluides, Automatique et Syst√®mes Thermiques - https://ror.org/02byv2846",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02byv2846,"Fluides, Automatique et Syst√®mes Thermiques",Child,Release +9769,https://github.com/ror-community/ror-updates/issues/9769,"Modify the information in an existing ROR record: Fluides, Automatique et Syst√®mes Thermiques - https://ror.org/02byv2846","Fluides, Automatique et Syst√®mes Thermiques",https://ror.org/02byv2846,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9769,https://github.com/ror-community/ror-updates/issues/9769,"Modify the information in an existing ROR record: Fluides, Automatique et Syst√®mes Thermiques - https://ror.org/02byv2846",University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02byv2846,"Fluides, Automatique et Syst√®mes Thermiques",Child,Release +9771,https://github.com/ror-community/ror-updates/issues/9771,Modify the information in an existing ROR record: Genotoxic Stress and Cancer - https://ror.org/01b5rtm37,Genotoxic Stress and Cancer,https://ror.org/01b5rtm37,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9771,https://github.com/ror-community/ror-updates/issues/9771,Modify the information in an existing ROR record: Genotoxic Stress and Cancer - https://ror.org/01b5rtm37,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/01b5rtm37,Genotoxic Stress and Cancer,Child,Release +9771,https://github.com/ror-community/ror-updates/issues/9771,Modify the information in an existing ROR record: Genotoxic Stress and Cancer - https://ror.org/01b5rtm37,Genotoxic Stress and Cancer,https://ror.org/01b5rtm37,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9771,https://github.com/ror-community/ror-updates/issues/9771,Modify the information in an existing ROR record: Genotoxic Stress and Cancer - https://ror.org/01b5rtm37,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/01b5rtm37,Genotoxic Stress and Cancer,Child,Release +9773,https://github.com/ror-community/ror-updates/issues/9773,Modify the information in an existing ROR record: G√©n√©tique Quantitative et √âvolution Le Moulon - https://ror.org/012fqzm33,G√©n√©tique Quantitative et √âvolution Le Moulon,https://ror.org/012fqzm33,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9773,https://github.com/ror-community/ror-updates/issues/9773,Modify the information in an existing ROR record: G√©n√©tique Quantitative et √âvolution Le Moulon - https://ror.org/012fqzm33,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/012fqzm33,G√©n√©tique Quantitative et √âvolution Le Moulon,Child,Release +9773,https://github.com/ror-community/ror-updates/issues/9773,Modify the information in an existing ROR record: G√©n√©tique Quantitative et √âvolution Le Moulon - https://ror.org/012fqzm33,G√©n√©tique Quantitative et √âvolution Le Moulon,https://ror.org/012fqzm33,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9773,https://github.com/ror-community/ror-updates/issues/9773,Modify the information in an existing ROR record: G√©n√©tique Quantitative et √âvolution Le Moulon - https://ror.org/012fqzm33,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/012fqzm33,G√©n√©tique Quantitative et √âvolution Le Moulon,Child,Release +9774,https://github.com/ror-community/ror-updates/issues/9774,"Modify the information in an existing ROR record: Inflammation, Chemokines and Immunopathology - https://ror.org/05dy6wv04","Inflammation, Chemokines and Immunopathology",https://ror.org/05dy6wv04,https://ror.org/02vjkv261,Inserm,Parent,Release +9774,https://github.com/ror-community/ror-updates/issues/9774,"Modify the information in an existing ROR record: Inflammation, Chemokines and Immunopathology - https://ror.org/05dy6wv04",Inserm,https://ror.org/02vjkv261,https://ror.org/05dy6wv04,"Inflammation, Chemokines and Immunopathology",Child,Release +9774,https://github.com/ror-community/ror-updates/issues/9774,"Modify the information in an existing ROR record: Inflammation, Chemokines and Immunopathology - https://ror.org/05dy6wv04","Inflammation, Chemokines and Immunopathology",https://ror.org/05dy6wv04,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9774,https://github.com/ror-community/ror-updates/issues/9774,"Modify the information in an existing ROR record: Inflammation, Chemokines and Immunopathology - https://ror.org/05dy6wv04",University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/05dy6wv04,"Inflammation, Chemokines and Immunopathology",Child,Release +9776,https://github.com/ror-community/ror-updates/issues/9776,Modify the information in an existing ROR record: Institut Galien Paris Sud - https://ror.org/02mnw9q71,Institut Galien Paris Sud,https://ror.org/02mnw9q71,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9776,https://github.com/ror-community/ror-updates/issues/9776,Modify the information in an existing ROR record: Institut Galien Paris Sud - https://ror.org/02mnw9q71,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02mnw9q71,Institut Galien Paris Sud,Child,Release +9776,https://github.com/ror-community/ror-updates/issues/9776,Modify the information in an existing ROR record: Institut Galien Paris Sud - https://ror.org/02mnw9q71,Institut Galien Paris Sud,https://ror.org/02mnw9q71,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9776,https://github.com/ror-community/ror-updates/issues/9776,Modify the information in an existing ROR record: Institut Galien Paris Sud - https://ror.org/02mnw9q71,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02mnw9q71,Institut Galien Paris Sud,Child,Release +9777,https://github.com/ror-community/ror-updates/issues/9777,Modify the information in an existing ROR record: Institut d'Astrophysique Spatiale - https://ror.org/014p8mr66,Institut d'Astrophysique Spatiale,https://ror.org/014p8mr66,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9777,https://github.com/ror-community/ror-updates/issues/9777,Modify the information in an existing ROR record: Institut d'Astrophysique Spatiale - https://ror.org/014p8mr66,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/014p8mr66,Institut d'Astrophysique Spatiale,Child,Release +9777,https://github.com/ror-community/ror-updates/issues/9777,Modify the information in an existing ROR record: Institut d'Astrophysique Spatiale - https://ror.org/014p8mr66,Institut d'Astrophysique Spatiale,https://ror.org/014p8mr66,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9777,https://github.com/ror-community/ror-updates/issues/9777,Modify the information in an existing ROR record: Institut d'Astrophysique Spatiale - https://ror.org/014p8mr66,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/014p8mr66,Institut d'Astrophysique Spatiale,Child,Release +9779,https://github.com/ror-community/ror-updates/issues/9779,Modify the information in an existing ROR record: Institut de Chimie Mol√©culaire et des Mat√©riaux d'Orsay - https://ror.org/05wzh1m37,Institut de Chimie Mol√©culaire et des Mat√©riaux d'Orsay,https://ror.org/05wzh1m37,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9779,https://github.com/ror-community/ror-updates/issues/9779,Modify the information in an existing ROR record: Institut de Chimie Mol√©culaire et des Mat√©riaux d'Orsay - https://ror.org/05wzh1m37,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/05wzh1m37,Institut de Chimie Mol√©culaire et des Mat√©riaux d'Orsay,Child,Release +9779,https://github.com/ror-community/ror-updates/issues/9779,Modify the information in an existing ROR record: Institut de Chimie Mol√©culaire et des Mat√©riaux d'Orsay - https://ror.org/05wzh1m37,Institut de Chimie Mol√©culaire et des Mat√©riaux d'Orsay,https://ror.org/05wzh1m37,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9779,https://github.com/ror-community/ror-updates/issues/9779,Modify the information in an existing ROR record: Institut de Chimie Mol√©culaire et des Mat√©riaux d'Orsay - https://ror.org/05wzh1m37,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/05wzh1m37,Institut de Chimie Mol√©culaire et des Mat√©riaux d'Orsay,Child,Release +9778,https://github.com/ror-community/ror-updates/issues/9778,Modify the information in an existing ROR record: University of Paris-Sud - https://ror.org/028rypz17,University of Paris-Sud,https://ror.org/028rypz17,https://ror.org/03xjwb503,University of Paris-Saclay,Successor,Release +9780,https://github.com/ror-community/ror-updates/issues/9780,Modify the information in an existing ROR record: Institut de Chimie des Substances Naturelles - https://ror.org/02st4q439,Institut de Chimie des Substances Naturelles,https://ror.org/02st4q439,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9780,https://github.com/ror-community/ror-updates/issues/9780,Modify the information in an existing ROR record: Institut de Chimie des Substances Naturelles - https://ror.org/02st4q439,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02st4q439,Institut de Chimie des Substances Naturelles,Child,Release +9780,https://github.com/ror-community/ror-updates/issues/9780,Modify the information in an existing ROR record: Institut de Chimie des Substances Naturelles - https://ror.org/02st4q439,Institut de Chimie des Substances Naturelles,https://ror.org/02st4q439,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9780,https://github.com/ror-community/ror-updates/issues/9780,Modify the information in an existing ROR record: Institut de Chimie des Substances Naturelles - https://ror.org/02st4q439,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02st4q439,Institut de Chimie des Substances Naturelles,Child,Release +9781,https://github.com/ror-community/ror-updates/issues/9781,Modify the information in an existing ROR record: Institut de M√©canique C√©leste et de Calcul des √âph√©m√©rides - https://ror.org/002zc3t08,Institut de M√©canique C√©leste et de Calcul des √âph√©m√©rides,https://ror.org/002zc3t08,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9781,https://github.com/ror-community/ror-updates/issues/9781,Modify the information in an existing ROR record: Institut de M√©canique C√©leste et de Calcul des √âph√©m√©rides - https://ror.org/002zc3t08,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/002zc3t08,Institut de M√©canique C√©leste et de Calcul des √âph√©m√©rides,Child,Release +9782,https://github.com/ror-community/ror-updates/issues/9782,Modify the information in an existing ROR record: Institut des Sciences Mol√©culaires d'Orsay - https://ror.org/0211r2z47,Institut des Sciences Mol√©culaires d'Orsay,https://ror.org/0211r2z47,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9782,https://github.com/ror-community/ror-updates/issues/9782,Modify the information in an existing ROR record: Institut des Sciences Mol√©culaires d'Orsay - https://ror.org/0211r2z47,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/0211r2z47,Institut des Sciences Mol√©culaires d'Orsay,Child,Release +,,,University of California System,https://ror.org/00pjdza24,https://ror.org/03yrm5c26,California Digital Library,Delete, +,,,University of California System,https://ror.org/00pjdza24,https://ror.org/03yrm5c26,California Digital Library,Child, \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0015ws592.json b/test-relationship-delete-v2/updates/0015ws592.json new file mode 100644 index 000000000..04fc174ff --- /dev/null +++ b/test-relationship-delete-v2/updates/0015ws592.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 3012834, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.52894, + "lng": 7.71523, + "name": "Illkirch-Graffenstaden" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0638 2716" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.420255.4" + ], + "preferred": "grid.420255.4" + } + ], + "id": "https://ror.org/0015ws592", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.igbmc.fr" + } + ], + "names": [ + { + "value": "Institute of Genetics and Molecular and Cellular Biology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "institut de génétique et de biologie moléculaire et cellulaire", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "Centre Européen de Recherche en Biologie et en Médecine", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "IGBMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/001p3jz28.json b/test-relationship-delete-v2/updates/001p3jz28.json new file mode 100644 index 000000000..cbe11a5da --- /dev/null +++ b/test-relationship-delete-v2/updates/001p3jz28.json @@ -0,0 +1,147 @@ +{ + "locations": [ + { + "geonames_id": 1259693, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 28.36725, + "lng": 75.60352, + "name": "Pilāni" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1015 3164" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006464" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2648311" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418391.6" + ], + "preferred": "grid.418391.6" + } + ], + "id": "https://ror.org/001p3jz28", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.bits-pilani.ac.in/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Birla_Institute_of_Technology_and_Science" + } + ], + "names": [ + { + "value": "Birla Institute of Technology and Science, Pilani", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BITS Pilani", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "बिरला प्रौद्योगिकी एवं विज्ञान संस्थान", + "types": [ + "label" + ], + "lang": "hi" + }, + { + "value": "ബിർള ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് ടെക്നോളജി ആന്റ് സയൻസ്", + "types": [ + "label" + ], + "lang": "ml" + }, + { + "value": "बिर्ला इन्स्टिट्यूट ऑफ टेक्नोलॉजी अँड सायन्स", + "types": [ + "label" + ], + "lang": "mr" + }, + { + "value": "ਬਿਰਲਾ ਤਕਨਾਲੋਜੀ ਅਤੇ ਵਿਗਿਆਨ ਸੰਸਥਾ", + "types": [ + "label" + ], + "lang": "pa" + }, + { + "value": "பிர்லா தொழில்நுட்பம் மற்றும் அறிவியல் கழகம்", + "types": [ + "label" + ], + "lang": "ta" + }, + { + "value": "బిట్స్ పిలానీ", + "types": [ + "label" + ], + "lang": "te" + } + ], + "relationships": [ + { + "label": "Birla Institute of Technology and Science - Hyderabad Campus", + "type": "child", + "id": "https://ror.org/014ctt859" + }, + { + "label": "Birla Institute of Technology and Science, Pilani - Dubai Campus", + "type": "child", + "id": "https://ror.org/05jnbme07" + }, + { + "label": "Birla Institute of Technology and Science, Pilani - Goa Campus", + "type": "child", + "id": "https://ror.org/046sh6j17" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/001sezm06.json b/test-relationship-delete-v2/updates/001sezm06.json new file mode 100644 index 000000000..c29de83e2 --- /dev/null +++ b/test-relationship-delete-v2/updates/001sezm06.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 4751935, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89428, + "lng": -77.4311, + "name": "Chantilly" + } + } + ], + "established": 1944, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0421 9542" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3896512" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.456154.7" + ], + "preferred": "grid.456154.7" + } + ], + "id": "https://ror.org/001sezm06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.parsons.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Parsons_Corporation" + } + ], + "names": [ + { + "value": "Parsons (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00235nr42.json b/test-relationship-delete-v2/updates/00235nr42.json new file mode 100644 index 000000000..297ee8b2d --- /dev/null +++ b/test-relationship-delete-v2/updates/00235nr42.json @@ -0,0 +1,111 @@ +{ + "locations": [ + { + "geonames_id": 3460834, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -22.42556, + "lng": -45.45278, + "name": "Itajubá" + } + } + ], + "established": 1913, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8992 4656" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006241", + "501100005673" + ], + "preferred": "501100006241" + }, + { + "type": "wikidata", + "all": [ + "Q7894372" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.440561.2" + ], + "preferred": "grid.440561.2" + } + ], + "id": "https://ror.org/00235nr42", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://unifei.edu.br" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Federal_University_of_Itajub%C3%A1" + } + ], + "names": [ + { + "value": "Universidade Federal de Itajubá", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Escola Federal de Engenharia de Itajubá", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Federal University of Itajubá", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UNIFEI", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "EFEI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/002kg1049.json b/test-relationship-delete-v2/updates/002kg1049.json new file mode 100644 index 000000000..148366a08 --- /dev/null +++ b/test-relationship-delete-v2/updates/002kg1049.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3617763, + "geonames_details": { + "country_code": "NI", + "country_name": "Nicaragua", + "lat": 12.13282, + "lng": -86.2504, + "name": "Managua" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6465 5145" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30293812" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.441310.3" + ], + "preferred": "grid.441310.3" + } + ], + "id": "https://ror.org/002kg1049", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ulam.edu.ni" + } + ], + "names": [ + { + "value": "Universidad de las Américas", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ULAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/002ty1h48.json b/test-relationship-delete-v2/updates/002ty1h48.json new file mode 100644 index 000000000..b07eb71b4 --- /dev/null +++ b/test-relationship-delete-v2/updates/002ty1h48.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1960, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9029 5703" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3214506" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463726.2" + ], + "preferred": "grid.463726.2" + } + ], + "id": "https://ror.org/002ty1h48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://luli.ip-paris.fr" + } + ], + "names": [ + { + "value": "Laboratoire pour l'utilisation des lasers intenses", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory for the User of Intense Lasers", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LULI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Atomic Energy and Alternative Energies Commission", + "type": "parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "École Polytechnique", + "type": "parent", + "id": "https://ror.org/05hy3tk52" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/002v40q27.json b/test-relationship-delete-v2/updates/002v40q27.json new file mode 100644 index 000000000..d431726fb --- /dev/null +++ b/test-relationship-delete-v2/updates/002v40q27.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2982043, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.7326, + "lng": 2.16923, + "name": "Saclay" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30261478" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.465540.6" + ], + "preferred": "grid.465540.6" + } + ], + "id": "https://ror.org/002v40q27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://neuropsi.cnrs.fr" + } + ], + "names": [ + { + "value": "Institut des Neurosciences Paris-Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut des Neurosciences Paris Saclay", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "Paris-Saclay Institute of Neuroscience", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Neuro-PSI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/002zc3t08.json b/test-relationship-delete-v2/updates/002zc3t08.json new file mode 100644 index 000000000..dfa7e1f18 --- /dev/null +++ b/test-relationship-delete-v2/updates/002zc3t08.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0672 5780" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3152052" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462516.2" + ], + "preferred": "grid.462516.2" + } + ], + "id": "https://ror.org/002zc3t08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.imcce.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Institut_de_m%C3%A9canique_c%C3%A9leste_et_de_calcul_des_%C3%A9ph%C3%A9m%C3%A9rides" + } + ], + "names": [ + { + "value": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IMCCE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Observatoire de Paris", + "type": "parent", + "id": "https://ror.org/029nkcm90" + }, + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "University of Lille", + "type": "parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/003vg9w96.json b/test-relationship-delete-v2/updates/003vg9w96.json new file mode 100644 index 000000000..b4422caca --- /dev/null +++ b/test-relationship-delete-v2/updates/003vg9w96.json @@ -0,0 +1,761 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100022077" + ], + "preferred": "501100022077" + }, + { + "type": "wikidata", + "all": [ + "Q70571774" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.507621.7" + ], + "preferred": "grid.507621.7" + } + ], + "id": "https://ror.org/003vg9w96", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.inrae.fr/" + } + ], + "names": [ + { + "value": "National Research Institute for Agriculture, Food and Environment", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "INRAE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroResonance Platform", + "type": "child", + "id": "https://ror.org/01wzg9f04" + }, + { + "label": "Agroecology", + "type": "child", + "id": "https://ror.org/00mkad321" + }, + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Biologie Fonctionnelle Insectes et Interactions", + "type": "child", + "id": "https://ror.org/03d1jma17" + }, + { + "label": "Biologie des Oiseaux et Aviculture", + "type": "child", + "id": "https://ror.org/02y3mfk39" + }, + { + "label": "Carnot Institute Qualiment", + "type": "child", + "id": "https://ror.org/032k75171" + }, + { + "label": "Centre Bourgogne-Franche-Comté", + "type": "child", + "id": "https://ror.org/002jby155" + }, + { + "label": "Centre Bretagne-Normandie", + "type": "child", + "id": "https://ror.org/01v6wmk25" + }, + { + "label": "Centre Clermont-Auvergne-Rhône-Alpes", + "type": "child", + "id": "https://ror.org/04aqtsh50" + }, + { + "label": "Centre INRAE Grand-Est - Colmar", + "type": "child", + "id": "https://ror.org/00zg31r41" + }, + { + "label": "Centre Nouvelle Aquitaine-Bordeaux", + "type": "child", + "id": "https://ror.org/00tebkv94" + }, + { + "label": "Centre Occitanie-Montpellier", + "type": "child", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Centre Occitanie-Toulouse", + "type": "child", + "id": "https://ror.org/02sxjwh33" + }, + { + "label": "Centre Pays de la Loire", + "type": "child", + "id": "https://ror.org/020jynt45" + }, + { + "label": "Centre Provence-Alpes-Côte d'Azur", + "type": "child", + "id": "https://ror.org/03qbdej90" + }, + { + "label": "Centre Régional d’Innovation et de Transferts Technologiques des Industries du Bois", + "type": "child", + "id": "https://ror.org/016crzw98" + }, + { + "label": "Centre Val de Loire", + "type": "child", + "id": "https://ror.org/03ntmtb29" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biochimie Structurale", + "type": "child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Centre de Corse", + "type": "child", + "id": "https://ror.org/04hrbdg71" + }, + { + "label": "Centre de Recherche en Nutrition Humaine d'Auvergne", + "type": "child", + "id": "https://ror.org/03rzyjb72" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Centre Île-de-France - Jouy-en-Josas - Antony", + "type": "child", + "id": "https://ror.org/00gtg0p11" + }, + { + "label": "Centre Île-de-France - Versailles-Grignon", + "type": "child", + "id": "https://ror.org/02cbapb21" + }, + { + "label": "Dynamique des Génomes et Adaptation Microbienne", + "type": "child", + "id": "https://ror.org/01gbppd30" + }, + { + "label": "Département Alimentation Humaine", + "type": "child", + "id": "https://ror.org/00pgyqh43" + }, + { + "label": "Département Biologie et Amélioration des Plantes", + "type": "child", + "id": "https://ror.org/05r63mf91" + }, + { + "label": "Département Environnement et Agronomie", + "type": "child", + "id": "https://ror.org/01e7wth34" + }, + { + "label": "Département Mathématiques et Informatique Appliquées", + "type": "child", + "id": "https://ror.org/011emb038" + }, + { + "label": "Département Microbiologie et Chaîne Alimentaire", + "type": "child", + "id": "https://ror.org/03n4vkw74" + }, + { + "label": "Département Physiologie Animale et Systèmes d’Élevage", + "type": "child", + "id": "https://ror.org/03tpcfk14" + }, + { + "label": "Département Santé Animale", + "type": "child", + "id": "https://ror.org/024409k12" + }, + { + "label": "Département Santé des Plantes et Environnement", + "type": "child", + "id": "https://ror.org/0455v8x20" + }, + { + "label": "Département Sciences pour l’Action et le Développement", + "type": "child", + "id": "https://ror.org/03vxmn596" + }, + { + "label": "Département Sciences sociales, agriculture et alimentation, espace et environnement", + "type": "child", + "id": "https://ror.org/012221e05" + }, + { + "label": "Département Génétique Animale", + "type": "child", + "id": "https://ror.org/029xmsm82" + }, + { + "label": "Département Écologie des Forêts, Prairies et Milieux Aquatiques", + "type": "child", + "id": "https://ror.org/00yv4p972" + }, + { + "label": "Ecology of Guianan Forests", + "type": "child", + "id": "https://ror.org/04q9vef57" + }, + { + "label": "Field Observatory in Urban Hydrology", + "type": "child", + "id": "https://ror.org/05v3w8223" + }, + { + "label": "Fish Physiology and Genomics Institute", + "type": "child", + "id": "https://ror.org/04xtaw673" + }, + { + "label": "Fractionnation of AgroResources and Environment", + "type": "child", + "id": "https://ror.org/00136g547" + }, + { + "label": "Genomics and Biotechnology of the Fruits Laboratory", + "type": "child", + "id": "https://ror.org/01z0xsq42" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Grenoble Applied Economics Lab", + "type": "child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Groupe de Recherche en Droit, Économie, Gestion", + "type": "child", + "id": "https://ror.org/00rfccx09" + }, + { + "label": "Génétique Animale et Biologie Intégrative", + "type": "child", + "id": "https://ror.org/03rkgeb39" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Human Nutrition Unit", + "type": "child", + "id": "https://ror.org/003qhrc72" + }, + { + "label": "Infectiologie Animale et Santé Publique", + "type": "child", + "id": "https://ror.org/0454zjr22" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Institut Jean-Pierre Bourgin", + "type": "child", + "id": "https://ror.org/01wqd6v19" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institute for Genetics, Environment and Plant Protection", + "type": "child", + "id": "https://ror.org/038kxsm48" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institute of Mechanics and Engineering", + "type": "child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire CarMeN", + "type": "child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Biologiques et des Procédés", + "type": "child", + "id": "https://ror.org/01yypjb30" + }, + { + "label": "Laboratoire de Biotechnologie de l'Environnement", + "type": "child", + "id": "https://ror.org/022m8c549" + }, + { + "label": "Laboratoire de Génétique Cellulaire", + "type": "child", + "id": "https://ror.org/05k317v03" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire des Interactions Plantes Micro-Organismes", + "type": "child", + "id": "https://ror.org/02gwt2810" + }, + { + "label": "Laboratoire des Symbioses Tropicales et Méditerranéennes", + "type": "child", + "id": "https://ror.org/05q94pf14" + }, + { + "label": "Laboratoire Écologie Fonctionnelle et Environnement", + "type": "child", + "id": "https://ror.org/027rbaq21" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Microbial Ecology", + "type": "child", + "id": "https://ror.org/053vv7851" + }, + { + "label": "Nutrition Obesity & Risk of Thrombosis", + "type": "child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "PhysioPathologie des Adaptations Nutritionnelles", + "type": "child", + "id": "https://ror.org/05vb5nm66" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Soil Agro and Hydrosystems Spatialization", + "type": "child", + "id": "https://ror.org/03k4s1p46" + }, + { + "label": "Stem-Cell and Brain Research Institute", + "type": "child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Stress Abiotiques et Différenciation des Végétaux Cultivés", + "type": "child", + "id": "https://ror.org/03wzth680" + }, + { + "label": "TRANSFORM", + "type": "child", + "id": "https://ror.org/00sxj6k90" + }, + { + "label": "Tropical and Mediterranean Cropping System Functioning and Management", + "type": "child", + "id": "https://ror.org/033x0mt18" + }, + { + "label": "UMR BIOdiversity, GEnes & Communities", + "type": "child", + "id": "https://ror.org/033ebya06" + }, + { + "label": "UMR Territoires", + "type": "child", + "id": "https://ror.org/026tc4g97" + }, + { + "label": "Unité Matériaux et Transformations", + "type": "child", + "id": "https://ror.org/03q99v794" + }, + { + "label": "Unité Mixte de Recherche sur les Herbivores", + "type": "child", + "id": "https://ror.org/03yvemy54" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "child", + "id": "https://ror.org/02g6y2720" + }, + { + "label": "Unité de Recherche Pluridisciplinaire Prairies et Plantes Fourragères", + "type": "child", + "id": "https://ror.org/04247y265" + }, + { + "label": "Zone Atelier Moselle", + "type": "child", + "id": "https://ror.org/016vxbe23" + }, + { + "label": "UMR Transfrontalière BioEcoAgro", + "type": "child", + "id": "https://ror.org/032v67m28" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Unité Mixte de Recherche sur les Fromages", + "type": "child", + "id": "https://ror.org/01xbd2h58" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Agri Obtentions (France)", + "type": "child", + "id": "https://ror.org/04db8q179" + }, + { + "label": "Agronomie", + "type": "child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Centre Alpin sur les Réseaux Trophiques et Ecosystèmes Lacustre", + "type": "child", + "id": "https://ror.org/037vdeb02" + }, + { + "label": "Laboratoire d'Etude des Interactions entre Sol-Agrosystème-Hydrosystème", + "type": "child", + "id": "https://ror.org/05deqk823" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "PAnTher - Physiopathologie Animale et bioThérapie du muscle et du système nerveux", + "type": "child", + "id": "https://ror.org/05vex5m10" + }, + { + "label": "Biomécanique et Pathologie Locomotrice du Cheval", + "type": "child", + "id": "https://ror.org/001rmv394" + }, + { + "label": "Infections Virales et Pathologie Comparée", + "type": "child", + "id": "https://ror.org/015a85k79" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Dynamique Musculaire et Métabolisme", + "type": "child", + "id": "https://ror.org/00xffm983" + }, + { + "label": "EMMAH - Environnement Méditerranéen et Modélisation des Agro-Hydrosystèmes", + "type": "child", + "id": "https://ror.org/048bnmc64" + }, + { + "label": "GESTE - Gestion Territoriale de l'Eau et de l'Environnement", + "type": "child", + "id": "https://ror.org/00pz29t13" + }, + { + "label": "Laboratoire d'Ecophysiologie Végétale, Agronomie & nutritions N.C.S", + "type": "child", + "id": "https://ror.org/01s4cye48" + }, + { + "label": "Laboratoire Agronomie et Environnement", + "type": "child", + "id": "https://ror.org/01dg9a450" + }, + { + "label": "Virologie", + "type": "child", + "id": "https://ror.org/0318tzh81" + }, + { + "label": "ITAP - Technologies et Méthodes pour les Agricultures de demain", + "type": "child", + "id": "https://ror.org/00ftatp57" + }, + { + "label": "Ecologie Comportementale et Biologie des Populations de Poissons", + "type": "child", + "id": "https://ror.org/02brsbg31" + }, + { + "label": "Dynamiques et écologie des paysages agriforestiers", + "type": "child", + "id": "https://ror.org/04wa4se75" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Biologie Epidémiologie et Analyse de Risque en santé animale", + "type": "child", + "id": "https://ror.org/059h64789" + }, + { + "label": "Structures et Marchés Agricoles, Ressources et Territoires", + "type": "child", + "id": "https://ror.org/04fa3ke77" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "child", + "id": "https://ror.org/00780az30" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "France Génomique", + "type": "child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "Épidémiologie des maladies Animales et zoonotiques", + "type": "child", + "id": "https://ror.org/03e04sg66" + }, + { + "label": "Unité Mixte de Recherche sur l'Ecosystème Prairial", + "type": "child", + "id": "https://ror.org/02c3c9255" + }, + { + "label": "Biodiversité, Agroécologie et Aménagement du Paysage", + "type": "child", + "id": "https://ror.org/04byv8g40" + }, + { + "label": "Biologie intégrée pour la valorisation de la diversité des arbres et de la forêt", + "type": "child", + "id": "https://ror.org/04f6qd925" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Innovations thérapeutiques et résistances", + "type": "child", + "id": "https://ror.org/01shz5j60" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "child", + "id": "https://ror.org/03j65n394" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Unité de Recherche Agrosystèmes tropicaux", + "type": "child", + "id": "https://ror.org/00vxck708" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Paris School of Economics", + "type": "child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Etude et Compréhension de la biodiversité", + "type": "child", + "id": "https://ror.org/042w6m452" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0040z4m89.json b/test-relationship-delete-v2/updates/0040z4m89.json new file mode 100644 index 000000000..342d75225 --- /dev/null +++ b/test-relationship-delete-v2/updates/0040z4m89.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0508 2314" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30257014" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434904.e" + ], + "preferred": "grid.434904.e" + } + ], + "id": "https://ror.org/0040z4m89", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.geocisa.com/" + } + ], + "names": [ + { + "value": "Geocisa (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0048jxt15.json b/test-relationship-delete-v2/updates/0048jxt15.json new file mode 100644 index 000000000..c5cee8f41 --- /dev/null +++ b/test-relationship-delete-v2/updates/0048jxt15.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 3171728, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.40797, + "lng": 11.88586, + "name": "Padua" + } + } + ], + "established": 2000, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.428736.c" + ], + "preferred": "grid.428736.c" + }, + { + "type": "wikidata", + "all": [ + "Q30287361" + ], + "preferred": "Q30287361" + }, + { + "type": "isni", + "all": [ + "0000 0005 0370 449X" + ], + "preferred": "0000 0005 0370 449X" + } + ], + "id": "https://ror.org/0048jxt15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vimm.it" + } + ], + "names": [ + { + "value": "Veneto Institute of Molecular Medicine Home", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "VIMM - Veneto Institute of Molecular Medicine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Venetian Institute of Molecular Medicine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "VIMM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0050cbz19.json b/test-relationship-delete-v2/updates/0050cbz19.json new file mode 100644 index 000000000..32fd53ded --- /dev/null +++ b/test-relationship-delete-v2/updates/0050cbz19.json @@ -0,0 +1,87 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1975, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51785610" + ], + "preferred": "Q51785610" + } + ], + "id": "https://ror.org/0050cbz19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www6.jouy.inrae.fr/mosar" + } + ], + "names": [ + { + "value": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Modelisation Systemique Appliquee aux Ruminants", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MoSAR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0051rme32.json b/test-relationship-delete-v2/updates/0051rme32.json new file mode 100644 index 000000000..40b75f5e0 --- /dev/null +++ b/test-relationship-delete-v2/updates/0051rme32.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 1787458, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 34.27173, + "lng": 108.07891, + "name": "Yangling" + } + } + ], + "established": 1934, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1760 4150" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100007548" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q985808" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.144022.1" + ], + "preferred": "grid.144022.1" + } + ], + "id": "https://ror.org/0051rme32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nwsuaf.edu.cn" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Northwest_A%26F_University" + } + ], + "names": [ + { + "value": "Northwest A&F University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Xīběi Nónglín Kējì Dàxué", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "西北农林科技大学", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "NWAFU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00559m198.json b/test-relationship-delete-v2/updates/00559m198.json new file mode 100644 index 000000000..0eb8e6cd8 --- /dev/null +++ b/test-relationship-delete-v2/updates/00559m198.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3113236, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.54664, + "lng": -6.59619, + "name": "Ponferrada" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424790.c" + ], + "preferred": "grid.424790.c" + } + ], + "id": "https://ror.org/00559m198", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ciuden.es" + } + ], + "names": [ + { + "value": "Fundación Ciudad de la Energía", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUDEN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/005a3p084.json b/test-relationship-delete-v2/updates/005a3p084.json new file mode 100644 index 000000000..cd7b259eb --- /dev/null +++ b/test-relationship-delete-v2/updates/005a3p084.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1966, + "external_ids": [ + { + "all": [ + "grid.411331.5" + ], + "preferred": "grid.411331.5", + "type": "grid" + }, + { + "all": [ + "0000 0004 1771 1220" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5908637" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/005a3p084", + "links": [ + { + "type": "website", + "value": "http://www.uihunsc.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Hospital_Universitario_Nuestra_Se%C3%B1ora_de_Candelaria" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 28.46824, + "lng": -16.25462, + "name": "Tenerife" + }, + "geonames_id": 2511174 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "HUNSC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hospital Universitario Nuestra Señora de Candelaria" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "University Hospital of the Nuestra Señora de Candelaria" + } + ], + "relationships": [ + { + "label": "Universidad de La Laguna", + "type": "related", + "id": "https://ror.org/01r9z8p25" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00675rp98.json b/test-relationship-delete-v2/updates/00675rp98.json new file mode 100644 index 000000000..87e555e06 --- /dev/null +++ b/test-relationship-delete-v2/updates/00675rp98.json @@ -0,0 +1,106 @@ +{ + "locations": [ + { + "geonames_id": 2538475, + "geonames_details": { + "country_code": "MA", + "country_name": "Morocco", + "lat": 34.01325, + "lng": -6.83255, + "name": "Rabat" + } + } + ], + "established": 1975, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0441 6417" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006319" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423788.2" + ], + "preferred": "grid.423788.2" + }, + { + "type": "wikidata", + "all": [ + "Q30284534" + ], + "preferred": "Q30284534" + } + ], + "id": "https://ror.org/00675rp98", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cnrst.ma" + } + ], + "names": [ + { + "value": "Centre National pour la Recherche Scientifique et Technique (CNRST)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre National pour la Recherche Scientifique et Technique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Center for Scientific and Technical Research (CNRST)", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "المركز الوطني للبحث العلمي والتقني", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "CNRST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/006m74d95.json b/test-relationship-delete-v2/updates/006m74d95.json new file mode 100644 index 000000000..9c96243a2 --- /dev/null +++ b/test-relationship-delete-v2/updates/006m74d95.json @@ -0,0 +1,90 @@ +{ + "locations": [ + { + "geonames_id": 290030, + "geonames_details": { + "country_code": "QA", + "country_name": "Qatar", + "lat": 25.28545, + "lng": 51.53096, + "name": "Doha" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0548 1261", + "0000 0004 9474 7403" + ], + "preferred": "0000 0004 0548 1261" + }, + { + "type": "wikidata", + "all": [ + "Q890759" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.452115.6" + ], + "preferred": "grid.452115.6" + } + ], + "id": "https://ror.org/006m74d95", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.qatar.northwestern.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Northwestern_University_in_Qatar" + } + ], + "names": [ + { + "value": "Northwestern University in Qatar", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidad del noroeste", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "NU-Q", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/007sts724.json b/test-relationship-delete-v2/updates/007sts724.json new file mode 100644 index 000000000..f25c6c6cc --- /dev/null +++ b/test-relationship-delete-v2/updates/007sts724.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 5454627, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.89953, + "lng": -105.96027, + "name": "Alamogordo" + } + } + ], + "established": 1958, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4650 5039" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q7010288" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.449449.0" + ], + "preferred": "grid.449449.0" + } + ], + "id": "https://ror.org/007sts724", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://alamogordo.nmsu.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/New_Mexico_State_University_Alamogordo" + } + ], + "names": [ + { + "value": "New Mexico State University Alamogordo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NMSU Alamogordo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NMSU-A", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/007x3c094.json b/test-relationship-delete-v2/updates/007x3c094.json new file mode 100644 index 000000000..fa273ef61 --- /dev/null +++ b/test-relationship-delete-v2/updates/007x3c094.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1990, + "external_ids": [ + { + "all": [ + "grid.457096.9" + ], + "preferred": "grid.457096.9", + "type": "grid" + } + ], + "id": "https://ror.org/007x3c094", + "links": [ + { + "type": "website", + "value": "http://www.dr1.cnrs.fr/spip.php?article118" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.755585, + "lng": 2.370073, + "name": "Thiais" + }, + "geonames_id": 2972893 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Délégation Paris-Villejuif-03" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "DR03" + } + ], + "relationships": [ + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/008kn4z11.json b/test-relationship-delete-v2/updates/008kn4z11.json new file mode 100644 index 000000000..7e47ab594 --- /dev/null +++ b/test-relationship-delete-v2/updates/008kn4z11.json @@ -0,0 +1,115 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.457095.a" + ], + "preferred": "grid.457095.a" + } + ], + "id": "https://ror.org/008kn4z11", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iledefrance-villejuif.cnrs.fr/" + } + ], + "names": [ + { + "value": "Délégation Ile-de-France Villejuif", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DR01", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "parent", + "id": "https://ror.org/03yz3tz18" + }, + { + "label": "Architecture Urbanisme Société : Savoirs, Enseignement, Recherche", + "type": "child", + "id": "https://ror.org/0157t2j08" + }, + { + "label": "Centre de Recherche de l'Institut de Démographie de l'Université Paris 1", + "type": "child", + "id": "https://ror.org/02rv1bf67" + }, + { + "label": "Centre de Sociologie Européenne", + "type": "child", + "id": "https://ror.org/05qn0z879" + }, + { + "label": "Institut Carnot ARTS", + "type": "child", + "id": "https://ror.org/04zr5ey71" + }, + { + "label": "International College of Territorial Sciences", + "type": "child", + "id": "https://ror.org/002t9r032" + }, + { + "label": "Laboratoire d'Économie Mathématique et de Microéconomie Appliquée", + "type": "child", + "id": "https://ror.org/003ckn545" + }, + { + "label": "Population and Development Center", + "type": "child", + "id": "https://ror.org/002yg6s88" + }, + { + "label": "Research Institute on the Foundations of Computer Science", + "type": "child", + "id": "https://ror.org/02krdtz55" + }, + { + "label": "Équipe de Recherche sur l’Utilisation des Données Individuelles en Lien avec la Théorie Économique", + "type": "child", + "id": "https://ror.org/047egvh76" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00a7bnr15.json b/test-relationship-delete-v2/updates/00a7bnr15.json new file mode 100644 index 000000000..7f48897e4 --- /dev/null +++ b/test-relationship-delete-v2/updates/00a7bnr15.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0614 8604" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434278.e" + ], + "preferred": "grid.434278.e" + } + ], + "id": "https://ror.org/00a7bnr15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fundae.es" + } + ], + "names": [ + { + "value": "Fundación Tripartita para la Formación en el Empleo", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00ajjta07.json b/test-relationship-delete-v2/updates/00ajjta07.json new file mode 100644 index 000000000..da81b32c4 --- /dev/null +++ b/test-relationship-delete-v2/updates/00ajjta07.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51784779" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503243.3" + ], + "preferred": "grid.503243.3" + } + ], + "id": "https://ror.org/00ajjta07", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ips2.u-psud.fr" + } + ], + "names": [ + { + "value": "Institut des Sciences des Plantes de Paris Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Paris Saclay Institute of Plant Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institute of Plant Sciences of Paris Saclay", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IPS2", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Paris Cité", + "type": "parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "University of Évry Val d'Essonne", + "type": "parent", + "id": "https://ror.org/00e96v939" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00bep5t26.json b/test-relationship-delete-v2/updates/00bep5t26.json new file mode 100644 index 000000000..97e5b0e8f --- /dev/null +++ b/test-relationship-delete-v2/updates/00bep5t26.json @@ -0,0 +1,110 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1907, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2291 9040" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1200925" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462577.5" + ], + "preferred": "grid.462577.5" + } + ], + "id": "https://ror.org/00bep5t26", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bnc.cat" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/National_Library_of_Catalonia" + } + ], + "names": [ + { + "value": "National Library of Catalonia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Bibliotèca de Catalonha", + "types": [ + "label" + ], + "lang": "oc" + }, + { + "value": "Biblioteca de Catalunya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Kataluniako Liburutegia", + "types": [ + "label" + ], + "lang": "eu" + }, + { + "value": "Biblioteca de Catalunya", + "types": [ + "label" + ], + "lang": "gl" + }, + { + "value": "Biblioteca de Cataluña", + "types": [ + "label" + ], + "lang": "es" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00bv2aa44.json b/test-relationship-delete-v2/updates/00bv2aa44.json new file mode 100644 index 000000000..09102f04d --- /dev/null +++ b/test-relationship-delete-v2/updates/00bv2aa44.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 4355843, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.14344, + "lng": -77.20137, + "name": "Gaithersburg" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011016" + ], + "preferred": "501100011016" + }, + { + "type": "grid", + "all": [ + "grid.511415.5" + ], + "preferred": "grid.511415.5" + } + ], + "id": "https://ror.org/00bv2aa44", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.stcube.com/" + } + ], + "names": [ + { + "value": "STCube (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "STCube Pharmaceuticals", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "STCube Pharmaceuticals, Inc.", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00cy6xh23.json b/test-relationship-delete-v2/updates/00cy6xh23.json new file mode 100644 index 000000000..94cb970a0 --- /dev/null +++ b/test-relationship-delete-v2/updates/00cy6xh23.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2519752, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.98567, + "lng": -0.04935, + "name": "Castellon" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q61931981" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.502340.0" + ], + "preferred": "grid.502340.0" + } + ], + "id": "https://ror.org/00cy6xh23", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.conservatorisuperiorcastello.com/" + } + ], + "names": [ + { + "value": "Conservatori Superior de Música de Castelló", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Conservatorio Superior de Música de Castellón", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CSMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00f3x4340.json b/test-relationship-delete-v2/updates/00f3x4340.json new file mode 100644 index 000000000..53d22785f --- /dev/null +++ b/test-relationship-delete-v2/updates/00f3x4340.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1914, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0943 6642" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100011034" + ], + "preferred": "501100011034" + }, + { + "type": "grid", + "all": [ + "grid.410389.7" + ], + "preferred": "grid.410389.7" + } + ], + "id": "https://ror.org/00f3x4340", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ieo.es" + } + ], + "names": [ + { + "value": "Instituto Español de Oceanografía", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spanish Institute of Oceanography", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IEO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00fpvte21.json b/test-relationship-delete-v2/updates/00fpvte21.json new file mode 100644 index 000000000..1b508581d --- /dev/null +++ b/test-relationship-delete-v2/updates/00fpvte21.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2640194, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.37153, + "lng": -4.14305, + "name": "Plymouth" + } + } + ], + "established": 1856, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0455 3120" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q7205783" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.451096.f" + ], + "preferred": "grid.451096.f" + } + ], + "id": "https://ror.org/00fpvte21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.aup.ac.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Plymouth_College_of_Art" + } + ], + "names": [ + { + "value": "Arts University Plymouth", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Plymouth College of Art", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00gjj5n39.json b/test-relationship-delete-v2/updates/00gjj5n39.json new file mode 100644 index 000000000..7dc3782ce --- /dev/null +++ b/test-relationship-delete-v2/updates/00gjj5n39.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2519752, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.98567, + "lng": -0.04935, + "name": "Castellon" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1766 8613" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q6156487" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.440832.9" + ], + "preferred": "grid.440832.9" + } + ], + "id": "https://ror.org/00gjj5n39", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.universidadviu.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Valencian_International_University" + } + ], + "names": [ + { + "value": "Valencian International University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidad Internacional de Valencia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidad Internacional Valenciana", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "VIU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00h3hwc05.json b/test-relationship-delete-v2/updates/00h3hwc05.json new file mode 100644 index 000000000..c8166aa6e --- /dev/null +++ b/test-relationship-delete-v2/updates/00h3hwc05.json @@ -0,0 +1,78 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1832, + "external_ids": [ + { + "all": [ + "0000 0004 0399 4653" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4968908" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.415177.1" + ], + "preferred": "grid.415177.1", + "type": "grid" + } + ], + "id": "https://ror.org/00h3hwc05", + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Bristol_General_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.44692, + "lng": -2.593214, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bristol General Hospital" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BGH" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00hx6zz33.json b/test-relationship-delete-v2/updates/00hx6zz33.json new file mode 100644 index 000000000..023fde400 --- /dev/null +++ b/test-relationship-delete-v2/updates/00hx6zz33.json @@ -0,0 +1,165 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1892, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1765 0915" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q273604" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.6390.c" + ], + "preferred": "grid.6390.c" + } + ], + "id": "https://ror.org/00hx6zz33", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://ens-paris-saclay.fr/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/%C3%89cole_normale_sup%C3%A9rieure_de_Cachan" + } + ], + "names": [ + { + "value": "École Normale Supérieure Paris-Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ENS Cachan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Normale Sup' Cachan", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre d'Économie de la Sorbonne", + "type": "child", + "id": "https://ror.org/006shqv80" + }, + { + "label": "Institut des Sciences Sociales du Politique", + "type": "child", + "id": "https://ror.org/03jdg7625" + }, + { + "label": "Institutions et Dynamiques Historiques de l'Économie et de la Société", + "type": "child", + "id": "https://ror.org/03p76m698" + }, + { + "label": "Laboratoire de Biologie et Pharmacologie Appliquée", + "type": "child", + "id": "https://ror.org/03njrcx45" + }, + { + "label": "Laboratoire de Photophysique et Photochimie Supramoléculaires et Macromoléculaires", + "type": "child", + "id": "https://ror.org/03r7eh527" + }, + { + "label": "Laboratory of Quantum and Molecular Photonics", + "type": "child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratory of Systems & Applications of Information & Energy Technologies", + "type": "child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Universitaire de Recherche en Production Automatisée", + "type": "child", + "id": "https://ror.org/05wjc8a85" + }, + { + "label": "Centre de Recherche en Design", + "type": "child", + "id": "https://ror.org/007y9b339" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00jmfr291.json b/test-relationship-delete-v2/updates/00jmfr291.json new file mode 100644 index 000000000..259b4ad58 --- /dev/null +++ b/test-relationship-delete-v2/updates/00jmfr291.json @@ -0,0 +1,179 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1817, + "external_ids": [ + { + "all": [ + "0000 0000 8683 7370", + "0000 0004 1936 7347" + ], + "preferred": "0000 0004 1936 7347", + "type": "isni" + }, + { + "all": [ + "100007270", + "100008192", + "100006790", + "100006801", + "100008269", + "100005953", + "100008455", + "100008456", + "100006652", + "100008115", + "100005993", + "100009539", + "100005543", + "100005949", + "100008557", + "100006416", + "100005476", + "100011232" + ], + "preferred": "100007270", + "type": "fundref" + }, + { + "all": [ + "Q230492" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.214458.e" + ], + "preferred": "grid.214458.e", + "type": "grid" + } + ], + "id": "https://ror.org/00jmfr291", + "links": [ + { + "type": "website", + "value": "https://www.umich.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Michigan" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.27756, + "lng": -83.74088, + "name": "Ann Arbor" + }, + "geonames_id": 4984247 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Michigan–Ann Arbor" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "UMich" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "University of Michigan" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université du Michigan" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UM" + } + ], + "relationships": [ + { + "label": "Hurley Medical Center", + "type": "related", + "id": "https://ror.org/034npj057" + }, + { + "label": "Michigan Medicine", + "type": "related", + "id": "https://ror.org/01zcpa714" + }, + { + "label": "Michigan Sea Grant", + "type": "child", + "id": "https://ror.org/015tnsz82" + }, + { + "label": "Michigan Space Grant Consortium", + "type": "child", + "id": "https://ror.org/057mgcy61" + }, + { + "label": "University of Michigan–Dearborn", + "type": "child", + "id": "https://ror.org/035wtm547" + }, + { + "label": "University of Michigan–Flint", + "type": "child", + "id": "https://ror.org/01c3xc117" + }, + { + "label": "Inter-University Consortium for Political and Social Research", + "type": "child", + "id": "https://ror.org/02q7mkh03" + }, + { + "label": "Arctic Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/04pk7zz41" + }, + { + "label": "University of Michigan Press", + "type": "child", + "id": "https://ror.org/00rx1p510" + }, + { + "label": "University of Michigan Biological Station", + "type": "child", + "id": "https://ror.org/02hhndj92" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00jvqbw52.json b/test-relationship-delete-v2/updates/00jvqbw52.json new file mode 100644 index 000000000..3dfb78bad --- /dev/null +++ b/test-relationship-delete-v2/updates/00jvqbw52.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51781718" + ], + "preferred": "Q51781718" + } + ], + "id": "https://ror.org/00jvqbw52", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.liverstrasbourg.org" + } + ], + "names": [ + { + "value": "Institute for Translational Medicine and Liver Disease", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut de Recherche sur les Maladies Virales et Hépatiques", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut de recherche en médecine translationnelle et maladies hépatiques", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "IVH", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "ITM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00k3ph542.json b/test-relationship-delete-v2/updates/00k3ph542.json new file mode 100644 index 000000000..c13395e48 --- /dev/null +++ b/test-relationship-delete-v2/updates/00k3ph542.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.503134.0" + ], + "preferred": "grid.503134.0" + } + ], + "id": "https://ror.org/00k3ph542", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.faculte-sciences-sport.universite-paris-saclay.fr/recherche/presentation-unite-de-recherche-ciams" + } + ], + "names": [ + { + "value": "Complexité, Innovation et Activités Motrices et Sportives", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire CIAMS", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Laboratoire Complexité, Innovation et Activités Motrices et Sportives", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CIAMS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Université d'Orléans", + "type": "parent", + "id": "https://ror.org/014zrew76" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00kk89y84.json b/test-relationship-delete-v2/updates/00kk89y84.json new file mode 100644 index 000000000..a15b5e960 --- /dev/null +++ b/test-relationship-delete-v2/updates/00kk89y84.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0445 9548" + ], + "preferred": "0000 0004 0445 9548" + }, + { + "type": "grid", + "all": [ + "grid.463962.c" + ], + "preferred": "grid.463962.c" + } + ], + "id": "https://ror.org/00kk89y84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ese.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Écologie, Systématique et Évolution", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ESE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00mccb878.json b/test-relationship-delete-v2/updates/00mccb878.json new file mode 100644 index 000000000..379d3a37c --- /dev/null +++ b/test-relationship-delete-v2/updates/00mccb878.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.466733.3" + ], + "preferred": "grid.466733.3" + } + ], + "id": "https://ror.org/00mccb878", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://iberespacio.es/" + } + ], + "names": [ + { + "value": "IberEspacio (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Arquimea (Spain)", + "type": "successor", + "id": "https://ror.org/04mnaqe33" + } + ], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00mmn6b08.json b/test-relationship-delete-v2/updates/00mmn6b08.json new file mode 100644 index 000000000..54a1a8562 --- /dev/null +++ b/test-relationship-delete-v2/updates/00mmn6b08.json @@ -0,0 +1,205 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100006132" + ], + "preferred": "100006132" + }, + { + "type": "wikidata", + "all": [ + "Q7079302" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.453216.7" + ], + "preferred": "grid.453216.7" + } + ], + "id": "https://ror.org/00mmn6b08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.energy.gov/science/office-science" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Office_of_Science" + } + ], + "names": [ + { + "value": "Office of Science", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "United States Department of Energy Office of Science", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "U.S. Department of Energy Office of Science", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United States Department of Energy", + "type": "parent", + "id": "https://ror.org/01bj3aw27" + }, + { + "label": "Office of Advanced Scientific Computing Research", + "type": "child", + "id": "https://ror.org/0012c7r22" + }, + { + "label": "Office of Basic Energy Sciences", + "type": "child", + "id": "https://ror.org/05mg91w61" + }, + { + "label": "Office of Biological and Environmental Research", + "type": "child", + "id": "https://ror.org/0114b2m14" + }, + { + "label": "Office of Fusion Energy Sciences", + "type": "child", + "id": "https://ror.org/02n3j8t12" + }, + { + "label": "Office of High Energy Physics", + "type": "child", + "id": "https://ror.org/035m6g344" + }, + { + "label": "Office of Nuclear Physics", + "type": "child", + "id": "https://ror.org/02atag894" + }, + { + "label": "Office of Scientific and Technical Information", + "type": "child", + "id": "https://ror.org/031478740" + }, + { + "label": "Office of Workforce Development for Teachers and Scientists", + "type": "child", + "id": "https://ror.org/05msy3529" + }, + { + "label": "Environmental System Science Data Infrastructure for a Virtual Ecosystem", + "type": "child", + "id": "https://ror.org/01t14bp54" + }, + { + "label": "Office of Isotope R&D and Production", + "type": "child", + "id": "https://ror.org/03dbdcw44" + }, + { + "label": "Office of Accelerator R&D and Production", + "type": "child", + "id": "https://ror.org/02gr2sy50" + }, + { + "label": "Lawrence Berkeley National Laboratory", + "type": "child", + "id": "https://ror.org/02jbv0t02" + }, + { + "label": "Ames National Laboratory", + "type": "child", + "id": "https://ror.org/041m9xr71" + }, + { + "label": "Argonne National Laboratory", + "type": "child", + "id": "https://ror.org/05gvnxz63" + }, + { + "label": "Brookhaven National Laboratory", + "type": "child", + "id": "https://ror.org/02ex6cf31" + }, + { + "label": "Fermi National Accelerator Laboratory", + "type": "child", + "id": "https://ror.org/020hgte69" + }, + { + "label": "Oak Ridge National Laboratory", + "type": "child", + "id": "https://ror.org/01qz5mb56" + }, + { + "label": "Pacific Northwest National Laboratory", + "type": "child", + "id": "https://ror.org/05h992307" + }, + { + "label": "Princeton Plasma Physics Laboratory", + "type": "child", + "id": "https://ror.org/03vn1ts68" + }, + { + "label": "SLAC National Accelerator Laboratory", + "type": "child", + "id": "https://ror.org/05gzmn429" + }, + { + "label": "Thomas Jefferson National Accelerator Facility", + "type": "child", + "id": "https://ror.org/02vwzrd76" + }, + { + "label": "Facility for Rare Isotope Beams", + "type": "child", + "id": "https://ror.org/03r4g9w46" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00pa9y269.json b/test-relationship-delete-v2/updates/00pa9y269.json new file mode 100644 index 000000000..2b06cfcf0 --- /dev/null +++ b/test-relationship-delete-v2/updates/00pa9y269.json @@ -0,0 +1,75 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [ + { + "all": [ + "0000 0004 4691 0296" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7566412" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.439439.0" + ], + "preferred": "grid.439439.0", + "type": "grid" + } + ], + "id": "https://ror.org/00pa9y269", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/south-bristol-community-hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/South_Bristol_Community_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.4129, + "lng": -2.5863, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "South Bristol Community Hospital" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00pd74e08.json b/test-relationship-delete-v2/updates/00pd74e08.json new file mode 100644 index 000000000..d81bb7546 --- /dev/null +++ b/test-relationship-delete-v2/updates/00pd74e08.json @@ -0,0 +1,124 @@ +{ + "locations": [ + { + "geonames_id": 2867543, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.96236, + "lng": 7.62571, + "name": "Münster" + } + } + ], + "established": 1780, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2172 9288" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100004869", + "501100004870" + ], + "preferred": "501100004869" + }, + { + "type": "wikidata", + "all": [ + "Q168426" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5949.1" + ], + "preferred": "grid.5949.1" + } + ], + "id": "https://ror.org/00pd74e08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uni-muenster.de" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_M%C3%BCnster" + } + ], + "names": [ + { + "value": "University of Münster", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Westfälische Wilhelms-Universität Münster", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universitaet Muenster", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Muenster", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universität Münster", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "WWU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University Hospital Münster", + "type": "related", + "id": "https://ror.org/01856cw59" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00pjdza24.json b/test-relationship-delete-v2/updates/00pjdza24.json new file mode 100644 index 000000000..acca08746 --- /dev/null +++ b/test-relationship-delete-v2/updates/00pjdza24.json @@ -0,0 +1 @@ +{"admin":{"created":{"date":"2018-11-14","schema_version":"1.0"},"last_modified":{"date":"2023-12-20","schema_version":"2.0"}},"domains":[],"established":1868,"external_ids":[{"all":["0000 0001 2348 0690"],"preferred":null,"type":"isni"},{"all":["100005595","100009350","100004802","100005188","100005192"],"preferred":"100005595","type":"fundref"},{"all":["Q184478"],"preferred":null,"type":"wikidata"},{"all":["grid.30389.31"],"preferred":"grid.30389.31","type":"grid"}],"id":"https://ror.org/00pjdza24","links":[{"type":"website","value":"http://www.universityofcalifornia.edu/"},{"type":"wikipedia","value":"http://en.wikipedia.org/wiki/University_of_California"}],"locations":[{"geonames_details":{"country_code":"US","country_name":"United States","lat":37.80437,"lng":-122.2708,"name":"Oakland"},"geonames_id":5378538}],"names":[{"lang":null,"types":["ror_display","label"],"value":"University of California System"},{"lang":"es","types":["label"],"value":"Universidad de California"},{"lang":"fr","types":["label"],"value":"Université de Californie"},{"lang":null,"types":["acronym"],"value":"UC"}],"relationships":[{"label":"California Digital Library","type":"child","id":"https://ror.org/03yrm5c26"},{"label":"Center for Information Technology Research in the Interest of Society","type":"child","id":"https://ror.org/00zv0wd17"},{"label":"University of California Division of Agriculture and Natural Resources","type":"child","id":"https://ror.org/03t0t6y08"},{"label":"University of California, Berkeley","type":"child","id":"https://ror.org/01an7q238"},{"label":"University of California, Davis","type":"child","id":"https://ror.org/05rrcem69"},{"label":"University of California, Irvine","type":"child","id":"https://ror.org/04gyf1771"},{"label":"University of California, Los Angeles","type":"child","id":"https://ror.org/046rm7j60"},{"label":"University of California, Merced","type":"child","id":"https://ror.org/00d9ah105"},{"label":"University of California, Riverside","type":"child","id":"https://ror.org/03nawhv43"},{"label":"University of California, San Diego","type":"child","id":"https://ror.org/0168r3w48"},{"label":"University of California, San Francisco","type":"child","id":"https://ror.org/043mz5j54"},{"label":"University of California, Santa Barbara","type":"child","id":"https://ror.org/02t274463"},{"label":"University of California, Santa Cruz","type":"child","id":"https://ror.org/03s65by71"},{"label":"University of California Natural Reserve System","type":"child","id":"https://ror.org/04nmjep87"},{"label":"University of California Office of the President","type":"child","id":"https://ror.org/00dmfq477"},{"label":"Lawrence Berkeley National Laboratory","type":"child","id":"https://ror.org/02jbv0t02"}],"status":"active","types":["education"]} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00pyxrd04.json b/test-relationship-delete-v2/updates/00pyxrd04.json new file mode 100644 index 000000000..c48920ddd --- /dev/null +++ b/test-relationship-delete-v2/updates/00pyxrd04.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2673730, + "geonames_details": { + "country_code": "SE", + "country_name": "Sweden", + "lat": 59.32938, + "lng": 18.06871, + "name": "Stockholm" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2230 9816" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100007633" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457409.b" + ], + "preferred": "grid.457409.b" + } + ], + "id": "https://ror.org/00pyxrd04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mistra.org" + } + ], + "names": [ + { + "value": "Foundation for Strategic Environmental Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stiftelsen för Miljöstrategisk Forskning", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MISTRA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00qy68j92.json b/test-relationship-delete-v2/updates/00qy68j92.json new file mode 100644 index 000000000..9dfa3dfcc --- /dev/null +++ b/test-relationship-delete-v2/updates/00qy68j92.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 4994358, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.96336, + "lng": -85.66809, + "name": "Grand Rapids" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0450 5903" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.430538.9" + ], + "preferred": "grid.430538.9" + } + ], + "id": "https://ror.org/00qy68j92", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.spectrumhealth.org/locations/spectrum-health-hospitals-blodgett-hospital" + } + ], + "names": [ + { + "value": "Corewell Health Blodgett Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spectrum Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spectrum Health Blodgett Hospital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Michigan State University", + "type": "related", + "id": "https://ror.org/05hs6h993" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00rydyx93.json b/test-relationship-delete-v2/updates/00rydyx93.json new file mode 100644 index 000000000..4df045a9d --- /dev/null +++ b/test-relationship-delete-v2/updates/00rydyx93.json @@ -0,0 +1,701 @@ +{ + "locations": [ + { + "geonames_id": 3012621, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.81568, + "lng": 2.38487, + "name": "Ivry-sur-Seine" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 060X" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q24935881" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.456999.e" + ], + "preferred": "grid.456999.e" + } + ], + "id": "https://ror.org/00rydyx93", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/insb/" + } + ], + "names": [ + { + "value": "Institut des Sciences Biologiques", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Biological Sciences", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "INSB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Architecture et Réactivité de l'arN", + "type": "child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Biochemistry Laboratory", + "type": "child", + "id": "https://ror.org/01c6vgf77" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Biologie Intégrative des Organismes Marins", + "type": "child", + "id": "https://ror.org/03wg93s13" + }, + { + "label": "Biologie Tissulaire et Ingénierie Thérapeutique", + "type": "child", + "id": "https://ror.org/04fqvqs63" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bioénergétique et Ingénierie des Protéines", + "type": "child", + "id": "https://ror.org/0060xzr04" + }, + { + "label": "Brain Plasticity laboratory", + "type": "child", + "id": "https://ror.org/03padqz24" + }, + { + "label": "Brain and Cognition Research Center", + "type": "child", + "id": "https://ror.org/04fhrs205" + }, + { + "label": "Cancer Research Center of Lyon", + "type": "child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Center for Infection and Immunity of Lille", + "type": "child", + "id": "https://ror.org/00dyt5s15" + }, + { + "label": "Center for Interdisciplinary Research in Biology", + "type": "child", + "id": "https://ror.org/01mvzn566" + }, + { + "label": "Center for Research on Inflammation", + "type": "child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre de Biochimie Structurale", + "type": "child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Biophysique Moléculaire", + "type": "child", + "id": "https://ror.org/02dpqcy73" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre de Résonance Magnétique des Systèmes Biologiques", + "type": "child", + "id": "https://ror.org/01mts2g59" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Centre for Biochemical and Macromolecular Research", + "type": "child", + "id": "https://ror.org/01xpc6869" + }, + { + "label": "Centre for Cognitive Neuroscience", + "type": "child", + "id": "https://ror.org/02he5dz58" + }, + { + "label": "Contrôle de la Réponse Immune B et Lymphoproliférations", + "type": "child", + "id": "https://ror.org/02zh2vx86" + }, + { + "label": "Department of Genomes & Genetics", + "type": "child", + "id": "https://ror.org/05etkex69" + }, + { + "label": "Department of Virology", + "type": "child", + "id": "https://ror.org/01xx2ne27" + }, + { + "label": "Developmental Biology Institute of Marseille", + "type": "child", + "id": "https://ror.org/02me5cy06" + }, + { + "label": "Dynamic Neuronal Imaging", + "type": "child", + "id": "https://ror.org/027atwb90" + }, + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Dynamique des Interactions Membranaires Normales et Pathologiques", + "type": "child", + "id": "https://ror.org/00rt27171" + }, + { + "label": "Epigenetics and Cell Fate", + "type": "child", + "id": "https://ror.org/03dbsav41" + }, + { + "label": "Evolution des Régulations Endocriniennes", + "type": "child", + "id": "https://ror.org/03bpcga21" + }, + { + "label": "Expression Génétique Microbienne", + "type": "child", + "id": "https://ror.org/05t5n2z26" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Immunologie et Neurogénétique Expérimentales et Moléculaires", + "type": "child", + "id": "https://ror.org/01mhd9b84" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Cochin", + "type": "child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Jacques Monod", + "type": "child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut NeuroMyoGène", + "type": "child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Biochimie et Génétique Cellulaires", + "type": "child", + "id": "https://ror.org/048xwe611" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Biologie Physico-Chimique", + "type": "child", + "id": "https://ror.org/01na0pb61" + }, + { + "label": "Institut de Biologie Structurale", + "type": "child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut de Biologie et de Chimie des Protéines", + "type": "child", + "id": "https://ror.org/0019x5d05" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut de Génétique Moléculaire de Montpellier", + "type": "child", + "id": "https://ror.org/02785qs39" + }, + { + "label": "Institut de Microbiologie de la Méditerranée", + "type": "child", + "id": "https://ror.org/012t91r40" + }, + { + "label": "Institut de Neurophysiopathologie", + "type": "child", + "id": "https://ror.org/00w2q5j98" + }, + { + "label": "Institut de Neurosciences Cognitives et Intégratives d’Aquitaine", + "type": "child", + "id": "https://ror.org/01a6zh966" + }, + { + "label": "Institut de Neurosciences de la Timone", + "type": "child", + "id": "https://ror.org/043hw6336" + }, + { + "label": "Institut de Pharmacologie Moléculaire et Cellulaire", + "type": "child", + "id": "https://ror.org/05k4ema52" + }, + { + "label": "Institut des Sciences du Mouvement Etienne-Jules Marey", + "type": "child", + "id": "https://ror.org/03tncyc93" + }, + { + "label": "Institut des Sciences du Végétal", + "type": "child", + "id": "https://ror.org/03aqj2f62" + }, + { + "label": "Institut du Cerveau", + "type": "child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Thorax", + "type": "child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Institute of Biology Valrose", + "type": "child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institute of Cellular and Integrative Neurosciences", + "type": "child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institute of Genetics and Development of Rennes", + "type": "child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Institute of Human Genetics", + "type": "child", + "id": "https://ror.org/05ee10k25" + }, + { + "label": "Institut de Myologie", + "type": "child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Institute of Pharmacology and Structural Biology", + "type": "child", + "id": "https://ror.org/016zvc994" + }, + { + "label": "Institute of Research on Cancer and Aging in Nice", + "type": "child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "Integrated Genomics and Metabolic Diseases Modeling", + "type": "child", + "id": "https://ror.org/0300mzg60" + }, + { + "label": "Interdisciplinary Institute for NeuroScience", + "type": "child", + "id": "https://ror.org/032j53342" + }, + { + "label": "International Center for Infectiology Research", + "type": "child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire d'Enzymologie et Biochimie Structurales", + "type": "child", + "id": "https://ror.org/00j1y9t40" + }, + { + "label": "Laboratoire de Biogenèse Membranaire", + "type": "child", + "id": "https://ror.org/02nthwg11" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire de Biologie du Développement de Villefranche-sur-Mer", + "type": "child", + "id": "https://ror.org/04hke8425" + }, + { + "label": "Laboratoire de Biologie et Pharmacologie Appliquée", + "type": "child", + "id": "https://ror.org/03njrcx45" + }, + { + "label": "Laboratoire de Chimie Bactérienne", + "type": "child", + "id": "https://ror.org/057zme681" + }, + { + "label": "Laboratoire de Microbiologie et Génétique Moléculaires", + "type": "child", + "id": "https://ror.org/04rrj3a80" + }, + { + "label": "Laboratoire de Neurosciences Cognitives", + "type": "child", + "id": "https://ror.org/02dg3n954" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire de PhysioMédecine Moléculaire", + "type": "child", + "id": "https://ror.org/00c3ktd57" + }, + { + "label": "Laboratoire de Psychologie Cognitive", + "type": "child", + "id": "https://ror.org/01rf5x574" + }, + { + "label": "Laboratoire de Psychologie Sociale et Cognitive", + "type": "child", + "id": "https://ror.org/01t4k8953" + }, + { + "label": "Laboratoire de Psychologie et NeuroCognition", + "type": "child", + "id": "https://ror.org/014p6mg26" + }, + { + "label": "Laboratoire de Recherche en Sciences Végétales", + "type": "child", + "id": "https://ror.org/047z5as19" + }, + { + "label": "Laboratoire de Recherche sur la Croissance Cellulaire, la Réparation et la Régénération Tissulaires", + "type": "child", + "id": "https://ror.org/041dsyz88" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire de Sciences Cognitives et Psycholinguistique", + "type": "child", + "id": "https://ror.org/05fvhm231" + }, + { + "label": "Laboratoire des Interactions Plantes Micro-Organismes", + "type": "child", + "id": "https://ror.org/02gwt2810" + }, + { + "label": "Laboratoire des Systèmes Macromoléculaires et Signalisation", + "type": "child", + "id": "https://ror.org/053qdb191" + }, + { + "label": "Laboratoire des Systèmes Perceptifs", + "type": "child", + "id": "https://ror.org/030za3c40" + }, + { + "label": "Laboratory for Research on Learning and Development", + "type": "child", + "id": "https://ror.org/04mp4zc06" + }, + { + "label": "Laboratory of Computational and Quantitative Biology", + "type": "child", + "id": "https://ror.org/00pcqj134" + }, + { + "label": "Laboratoire de Biologie Intégrative des Modèles Marins", + "type": "child", + "id": "https://ror.org/001c8pb03" + }, + { + "label": "Laboratoire de Biologie Moléculaire et Cellulaire des Eucaryotes", + "type": "child", + "id": "https://ror.org/05mx55f96" + }, + { + "label": "Laboratory of Physical and Chemical Biology of Membrane Proteins", + "type": "child", + "id": "https://ror.org/03nr8xh07" + }, + { + "label": "Lyon Neuroscience Research Center", + "type": "child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Microbiology, Adaptation and Pathogenesis Lab", + "type": "child", + "id": "https://ror.org/03p3f6k20" + }, + { + "label": "Modélisation et Ingénierie des Systèmes Complexes Biologiques pour le Diagnostic", + "type": "child", + "id": "https://ror.org/056mmjd70" + }, + { + "label": "Neurodegeneratives Diseases Institute", + "type": "child", + "id": "https://ror.org/001695n52" + }, + { + "label": "Dynamique du noyau", + "type": "child", + "id": "https://ror.org/04team556" + }, + { + "label": "Pathologie et Virologie Moléculaire", + "type": "child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Physico-chimie Curie", + "type": "child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "Biologie du chloroplaste et perception de la lumière chez les micro-algues", + "type": "child", + "id": "https://ror.org/001r32c80" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Physiology & Experimental Medicine of the Heart and Muscles", + "type": "child", + "id": "https://ror.org/003sscq03" + }, + { + "label": "Plant Genome and Development Laboratory", + "type": "child", + "id": "https://ror.org/038207k30" + }, + { + "label": "Research Centre on Animal Cognition", + "type": "child", + "id": "https://ror.org/0111s2360" + }, + { + "label": "Research Centre on Cognition and Learning", + "type": "child", + "id": "https://ror.org/01sdp1y98" + }, + { + "label": "Structural and Molecular Basis of Infectious Systems", + "type": "child", + "id": "https://ror.org/00jv0wy06" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "child", + "id": "https://ror.org/02g6y2720" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00s19x989.json b/test-relationship-delete-v2/updates/00s19x989.json new file mode 100644 index 000000000..41e0c4b1f --- /dev/null +++ b/test-relationship-delete-v2/updates/00s19x989.json @@ -0,0 +1,502 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100017214" + ], + "preferred": "501100017214" + }, + { + "type": "grid", + "all": [ + "grid.457016.1" + ], + "preferred": "grid.457016.1" + } + ], + "id": "https://ror.org/00s19x989", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/insis/" + } + ], + "names": [ + { + "value": "Institut des Sciences de l'Ingénierie et des Systèmes", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INSIS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Andrology Gerontechnology Inflammation Modelisation", + "type": "child", + "id": "https://ror.org/030p0rb34" + }, + { + "label": "Astrophysique Relativiste, Théories, Expériences, Métrologie, Instrumentation, Signaux", + "type": "child", + "id": "https://ror.org/031ah7413" + }, + { + "label": "Automation and Process Engineering Laboratory", + "type": "child", + "id": "https://ror.org/03kfjwy31" + }, + { + "label": "Biomécanique et Bioingénierie", + "type": "child", + "id": "https://ror.org/03yaydt41" + }, + { + "label": "Center for Magnetic Resonance in Biology and Medicine", + "type": "child", + "id": "https://ror.org/04ceg1205" + }, + { + "label": "Centre Régional d’Innovation et de Transferts Technologiques des Industries du Bois", + "type": "child", + "id": "https://ror.org/016crzw98" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Centre des Matériaux", + "type": "child", + "id": "https://ror.org/01q5ge486" + }, + { + "label": "Centre for Energy and Thermal Sciences of Lyon", + "type": "child", + "id": "https://ror.org/01k383v05" + }, + { + "label": "Centre for Material Forming", + "type": "child", + "id": "https://ror.org/00qm1ye08" + }, + { + "label": "Complexe de Recherche Interprofessionnel en Aérothermochimie", + "type": "child", + "id": "https://ror.org/01k1ngp50" + }, + { + "label": "Contact and Structure Mechanics Laboratory", + "type": "child", + "id": "https://ror.org/05s608j53" + }, + { + "label": "Fonctions Optiques pour les Technologies de l’information", + "type": "child", + "id": "https://ror.org/03yn94905" + }, + { + "label": "Franche-Comté Électronique Mécanique Thermique et Optique - Sciences et Technologies", + "type": "child", + "id": "https://ror.org/004fmxv66" + }, + { + "label": "Fédération de Recherche FCLAB", + "type": "child", + "id": "https://ror.org/01kvxx237" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Georges Friedel Laboratory", + "type": "child", + "id": "https://ror.org/01prxdf57" + }, + { + "label": "Georgia Tech-CNRS Laboratory", + "type": "child", + "id": "https://ror.org/00avmbz91" + }, + { + "label": "Groupe de Recherches sur l'Energétique des Milieux Ionisés", + "type": "child", + "id": "https://ror.org/042ds2135" + }, + { + "label": "Ingénierie Moléculaire et Physiopathologie Articulaire", + "type": "child", + "id": "https://ror.org/04yc2e502" + }, + { + "label": "Institut Fresnel", + "type": "child", + "id": "https://ror.org/03br1wy20" + }, + { + "label": "Institut Jean Le Rond d'Alembert", + "type": "child", + "id": "https://ror.org/043we9s22" + }, + { + "label": "Institut Pascal", + "type": "child", + "id": "https://ror.org/03vgfxd91" + }, + { + "label": "Institut Pprime", + "type": "child", + "id": "https://ror.org/05vjdsn22" + }, + { + "label": "Institut Universitaire des Systèmes Thermiques Industriels", + "type": "child", + "id": "https://ror.org/04bgbbh33" + }, + { + "label": "Institut d'Électronique et des Systèmes", + "type": "child", + "id": "https://ror.org/0431hh004" + }, + { + "label": "Institut de Combustion Aérothermique Réactivité et Environnement", + "type": "child", + "id": "https://ror.org/03txr3336" + }, + { + "label": "Institut de Microélectronique, Electromagnétisme et Photonique", + "type": "child", + "id": "https://ror.org/03taa9n66" + }, + { + "label": "Institut de Recherche en Génie Civil et Mécanique", + "type": "child", + "id": "https://ror.org/03x30hb31" + }, + { + "label": "Institut de Recherche sur les Phénomènes Hors Équilibre", + "type": "child", + "id": "https://ror.org/03zq0xc17" + }, + { + "label": "Institut des Nanotechnologies de Lyon", + "type": "child", + "id": "https://ror.org/04jsk0b74" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "Institute of Electronics, Microelectronics and Nanotechnology", + "type": "child", + "id": "https://ror.org/02q4res37" + }, + { + "label": "Institute of Fluid Mechanics of Toulouse", + "type": "child", + "id": "https://ror.org/025nmxp11" + }, + { + "label": "Institute of Mechanics and Engineering", + "type": "child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire Ampère", + "type": "child", + "id": "https://ror.org/04xbczw40" + }, + { + "label": "Laboratoire Hubert Curien", + "type": "child", + "id": "https://ror.org/0028p8r67" + }, + { + "label": "Laboratoire Matière et Systèmes Complexes", + "type": "child", + "id": "https://ror.org/032w6q449" + }, + { + "label": "Laboratoire Modélisation et Simulation Multi-Echelle", + "type": "child", + "id": "https://ror.org/04rrzfd14" + }, + { + "label": "Laboratoire Optimisation de la Conception et Ingénierie de l'Environnement", + "type": "child", + "id": "https://ror.org/015gaxx73" + }, + { + "label": "Laboratoire Procédés, Matériaux et Energie Solaire", + "type": "child", + "id": "https://ror.org/05thdk431" + }, + { + "label": "Laboratoire Rhéologie et Procédés", + "type": "child", + "id": "https://ror.org/044ggyg50" + }, + { + "label": "Laboratoire Roberval", + "type": "child", + "id": "https://ror.org/023ffhx15" + }, + { + "label": "Laboratoire Réactions et Génie des Procédés", + "type": "child", + "id": "https://ror.org/00p6sn362" + }, + { + "label": "Laboratoire d'Energétique et de Mécanique Théorique et Appliquée", + "type": "child", + "id": "https://ror.org/01pfter31" + }, + { + "label": "Laboratoire d'Hydrodynamique", + "type": "child", + "id": "https://ror.org/018b0x874" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Biologiques et des Procédés", + "type": "child", + "id": "https://ror.org/01yypjb30" + }, + { + "label": "Laboratoire d'Électronique, Antennes et Télécommunications", + "type": "child", + "id": "https://ror.org/00ah32k04" + }, + { + "label": "Laboratoire d'Énergétique Moléculaire et Macroscopique, Combustion", + "type": "child", + "id": "https://ror.org/02wy3s959" + }, + { + "label": "Laboratoire de Génie Chimique", + "type": "child", + "id": "https://ror.org/003jnac13" + }, + { + "label": "Laboratoire de Génie Électrique de Grenoble", + "type": "child", + "id": "https://ror.org/05hyx5a17" + }, + { + "label": "Laboratoire de Mécanique des Fluides et d'Acoustique", + "type": "child", + "id": "https://ror.org/04dxeze48" + }, + { + "label": "Laboratoire de Mécanique et Génie Civil", + "type": "child", + "id": "https://ror.org/02fke9256" + }, + { + "label": "Laboratoire de Mécanique, Modélisation & Procédés Propres", + "type": "child", + "id": "https://ror.org/01vrxpt40" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Laboratoire de Recherche Hydrodynamique, Energétique et Environnement Atmosphérique", + "type": "child", + "id": "https://ror.org/057axh226" + }, + { + "label": "Laboratoire de Tribologie et Dynamique des Systèmes", + "type": "child", + "id": "https://ror.org/015vtcw98" + }, + { + "label": "Laboratoire de l'Intégration du Matériau au Système", + "type": "child", + "id": "https://ror.org/04nabhy78" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur pour l'Environnement", + "type": "child", + "id": "https://ror.org/01b2epx09" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratoire des Sciences des Procédés et des Matériaux", + "type": "child", + "id": "https://ror.org/01yr0r787" + }, + { + "label": "Laboratoire des Technologies de la Microélectronique", + "type": "child", + "id": "https://ror.org/036zswm25" + }, + { + "label": "Laboratoire des Écoulements Géophysiques et Industriels", + "type": "child", + "id": "https://ror.org/043pfpy19" + }, + { + "label": "Laboratory for Analysis and Architecture of Systems", + "type": "child", + "id": "https://ror.org/03vcm6439" + }, + { + "label": "Laboratory for Integrated Micro-Mechatronic Systems", + "type": "child", + "id": "https://ror.org/0059vr703" + }, + { + "label": "Laboratory of Mechanics and Acoustics", + "type": "child", + "id": "https://ror.org/03787ar02" + }, + { + "label": "Laboratory of Microstructure Studies and Mechanics of Materials", + "type": "child", + "id": "https://ror.org/01nyrrx14" + }, + { + "label": "Laboratory of Physics of Interfaces and Thin Films", + "type": "child", + "id": "https://ror.org/023f9y602" + }, + { + "label": "Laboratory of Pulp and Paper Science and Graphic Arts", + "type": "child", + "id": "https://ror.org/02z8yps18" + }, + { + "label": "Laboratory of Quantum and Molecular Photonics", + "type": "child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Laboratoire de Thermique et Energie de Nantes", + "type": "child", + "id": "https://ror.org/021fdyt09" + }, + { + "label": "Laboratory on Plasma and Conversion of Energy", + "type": "child", + "id": "https://ror.org/02w5mvk98" + }, + { + "label": "Matériaux Ingénierie et Science", + "type": "child", + "id": "https://ror.org/01rnfhz46" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "PhysicoChimie des Processus de Combustion et de l'Atmosphère", + "type": "child", + "id": "https://ror.org/03k9wer31" + }, + { + "label": "Physics of Ionic and Molecular Interactions", + "type": "child", + "id": "https://ror.org/04kgf6p94" + }, + { + "label": "Physique et Mécanique des Milieux Hétérogènes", + "type": "child", + "id": "https://ror.org/03kr50w79" + }, + { + "label": "Process Engineering for Environment and Food", + "type": "child", + "id": "https://ror.org/05ngxmx20" + }, + { + "label": "Processes and Engineering in Mechanics and Materials", + "type": "child", + "id": "https://ror.org/017jp7t31" + }, + { + "label": "Solids Mechanic Laboratory", + "type": "child", + "id": "https://ror.org/00xd1ek73" + }, + { + "label": "Sols, Solides, Structures, Risques", + "type": "child", + "id": "https://ror.org/03bcdsr62" + }, + { + "label": "Techniques for Biomedical Engineering and Complexity Management–Informatics, Mathematics and Applications Grenoble", + "type": "child", + "id": "https://ror.org/03985kf35" + }, + { + "label": "Wave Propagation Mathematical Study and Simulation", + "type": "child", + "id": "https://ror.org/03gvm2667" + }, + { + "label": "XLIM", + "type": "child", + "id": "https://ror.org/00f7srh09" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00s3s5518.json b/test-relationship-delete-v2/updates/00s3s5518.json new file mode 100644 index 000000000..214893227 --- /dev/null +++ b/test-relationship-delete-v2/updates/00s3s5518.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 108410, + "geonames_details": { + "country_code": "SA", + "country_name": "Saudi Arabia", + "lat": 24.68773, + "lng": 46.72185, + "name": "Riyadh" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9360 4152" + ], + "preferred": "0000 0004 9360 4152" + }, + { + "type": "wikidata", + "all": [ + "Q12236085" + ], + "preferred": "Q12236085" + }, + { + "type": "fundref", + "all": [ + "100019217" + ], + "preferred": "100019217" + } + ], + "id": "https://ror.org/00s3s5518", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.um.edu.sa" + } + ], + "names": [ + { + "value": "Almaarefa University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "جامعة المعرفة", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "UM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00sh68184.json b/test-relationship-delete-v2/updates/00sh68184.json new file mode 100644 index 000000000..0cc3dd1c3 --- /dev/null +++ b/test-relationship-delete-v2/updates/00sh68184.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2917698, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 47.55, + "lng": 7.68333, + "name": "Grenzach-Wyhlen" + } + } + ], + "established": 1896, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424277.0" + ], + "preferred": "grid.424277.0" + }, + { + "type": "wikidata", + "all": [ + "Q30254367" + ], + "preferred": "Q30254367" + }, + { + "type": "isni", + "all": [ + "0000 0004 0397 3959" + ], + "preferred": "0000 0004 0397 3959" + }, + { + "type": "fundref", + "all": [ + "100020957" + ], + "preferred": "100020957" + } + ], + "id": "https://ror.org/00sh68184", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.roche.de" + } + ], + "names": [ + { + "value": "Roche Pharma AG (Germany)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Roche Germany", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Roche Pharma AG", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Roche (Switzerland)", + "type": "parent", + "id": "https://ror.org/00by1q217" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00skw9v43.json b/test-relationship-delete-v2/updates/00skw9v43.json new file mode 100644 index 000000000..35b4edf76 --- /dev/null +++ b/test-relationship-delete-v2/updates/00skw9v43.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0410 8422" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q51784646" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503366.5" + ], + "preferred": "grid.503366.5" + } + ], + "id": "https://ror.org/00skw9v43", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://l2s.centralesupelec.fr" + } + ], + "names": [ + { + "value": "Laboratoire des signaux et systèmes", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire des signaux & systèmes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "L2S", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "CentraleSupélec", + "type": "parent", + "id": "https://ror.org/019tcpt25" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00sps5y96.json b/test-relationship-delete-v2/updates/00sps5y96.json new file mode 100644 index 000000000..209ec9b38 --- /dev/null +++ b/test-relationship-delete-v2/updates/00sps5y96.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2106 0959" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434661.2" + ], + "preferred": "grid.434661.2" + } + ], + "id": "https://ror.org/00sps5y96", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cotec.es" + } + ], + "names": [ + { + "value": "Fundación para la innovación tecnológica", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "COTEC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00tpn9z48.json b/test-relationship-delete-v2/updates/00tpn9z48.json new file mode 100644 index 000000000..d781d2259 --- /dev/null +++ b/test-relationship-delete-v2/updates/00tpn9z48.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 3113209, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.431, + "lng": -8.64435, + "name": "Pontevedra" + } + } + ], + "established": 1921, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2292 6080" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q38078567" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.502190.f" + ], + "preferred": "grid.502190.f" + } + ], + "id": "https://ror.org/00tpn9z48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mbg.csic.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Galicia_Biological_Mission" + } + ], + "names": [ + { + "value": "Misión Biológica de Galicia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Biological Mission of Galicia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Galicia Biological Mission", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "MBG-CSIC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Consejo Superior de Investigaciones Científicas", + "type": "parent", + "id": "https://ror.org/02gfc7t72" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00vvz3k68.json b/test-relationship-delete-v2/updates/00vvz3k68.json new file mode 100644 index 000000000..ec41a2310 --- /dev/null +++ b/test-relationship-delete-v2/updates/00vvz3k68.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 1264527, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 13.08784, + "lng": 80.27847, + "name": "Chennai" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6050 1114" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30263769" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.466628.8" + ], + "preferred": "grid.466628.8" + } + ], + "id": "https://ror.org/00vvz3k68", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.eso.sankaranethralaya.org" + } + ], + "names": [ + { + "value": "Elite School of Optometry", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ESO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Sankara Nethralaya", + "type": "parent", + "id": "https://ror.org/02k0t9a94" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00w67e447.json b/test-relationship-delete-v2/updates/00w67e447.json new file mode 100644 index 000000000..f740a9a45 --- /dev/null +++ b/test-relationship-delete-v2/updates/00w67e447.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0366 8268" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503330.6" + ], + "preferred": "grid.503330.6" + } + ], + "id": "https://ror.org/00w67e447", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lptms.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratory of Theoretical Physics and Statistical Models", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire de Physique Théorique et Modèles Statistiques", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "LPTMS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00ws85526.json b/test-relationship-delete-v2/updates/00ws85526.json new file mode 100644 index 000000000..887c6cd0d --- /dev/null +++ b/test-relationship-delete-v2/updates/00ws85526.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3128026, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.436451.1" + ], + "preferred": "grid.436451.1" + } + ], + "id": "https://ror.org/00ws85526", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.metrobilbao.eus" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Metro_Bilbao" + } + ], + "names": [ + { + "value": "Metro Bilbao", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Metro de Bilbao", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Bilboko metroa", + "types": [ + "label" + ], + "lang": "eu" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00wvqgd19.json b/test-relationship-delete-v2/updates/00wvqgd19.json new file mode 100644 index 000000000..0647fb531 --- /dev/null +++ b/test-relationship-delete-v2/updates/00wvqgd19.json @@ -0,0 +1,114 @@ +{ + "locations": [ + { + "geonames_id": 3116503, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.06441, + "lng": -2.48977, + "name": "Arrasate / Mondragón" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0662 2298" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2599486" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.436417.3" + ], + "preferred": "grid.436417.3" + } + ], + "id": "https://ror.org/00wvqgd19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.mondragon.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Mondrag%C3%B3n" + } + ], + "names": [ + { + "value": "Mondragon University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidad de Mondragón", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Mondragon Unibertsitatea", + "types": [ + "label" + ], + "lang": "eu" + }, + { + "value": "Universidade de Mondragón", + "types": [ + "label" + ], + "lang": "gl" + }, + { + "value": "MU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Basque Culinary Center", + "type": "related", + "id": "https://ror.org/03ftn5w97" + }, + { + "label": "Mondragon Corporation (Spain)", + "type": "parent", + "id": "https://ror.org/00fxswh37" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00xn1pr13.json b/test-relationship-delete-v2/updates/00xn1pr13.json new file mode 100644 index 000000000..ebc8ac13a --- /dev/null +++ b/test-relationship-delete-v2/updates/00xn1pr13.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 2849483, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.01513, + "lng": 12.10161, + "name": "Regensburg" + } + } + ], + "established": 2022, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q110516280" + ], + "preferred": "Q110516280" + } + ], + "id": "https://ror.org/00xn1pr13", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://lit.eu" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Leibniz-Institut_f%C3%BCr_Immuntherapie" + } + ], + "names": [ + { + "value": "Leibniz Institute for Immunotherapy", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Regensburger Centrum für Interventionelle Immunologie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Leibniz-Institut für Immuntherapie", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "LIT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00y0aj963.json b/test-relationship-delete-v2/updates/00y0aj963.json new file mode 100644 index 000000000..5a28f61a0 --- /dev/null +++ b/test-relationship-delete-v2/updates/00y0aj963.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30256790" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434604.1" + ], + "preferred": "grid.434604.1" + } + ], + "id": "https://ror.org/00y0aj963", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.thecorebike.com/" + } + ], + "names": [ + { + "value": "Going Green (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00z54nq84.json b/test-relationship-delete-v2/updates/00z54nq84.json new file mode 100644 index 000000000..61880f47a --- /dev/null +++ b/test-relationship-delete-v2/updates/00z54nq84.json @@ -0,0 +1,312 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8863 6724" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457018.f" + ], + "preferred": "grid.457018.f" + } + ], + "id": "https://ror.org/00z54nq84", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/inp/" + } + ], + "names": [ + { + "value": "Institut de Physique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Adhesion and Inflammation Lab", + "type": "child", + "id": "https://ror.org/055ymkj32" + }, + { + "label": "Center of Theoretical Physics", + "type": "child", + "id": "https://ror.org/02bsd9p69" + }, + { + "label": "Centre Lasers Intenses et Applications", + "type": "child", + "id": "https://ror.org/02910d597" + }, + { + "label": "Centre de Physique Théorique", + "type": "child", + "id": "https://ror.org/052bbtn31" + }, + { + "label": "Centre de Recherche sur l'Hétéro-Epitaxie et ses Applications", + "type": "child", + "id": "https://ror.org/03y8mpv07" + }, + { + "label": "Centre de Recherche sur les Ions, les Matériaux et la Photonique", + "type": "child", + "id": "https://ror.org/02y0gk295" + }, + { + "label": "Centre d’Élaboration de Matériaux et d’Études Structurales", + "type": "child", + "id": "https://ror.org/03kwnqq69" + }, + { + "label": "Laboratoire National des Champs Magnétiques Intenses", + "type": "child", + "id": "https://ror.org/045ktmd28" + }, + { + "label": "Groupe d’Étude de la Matière Condensée", + "type": "child", + "id": "https://ror.org/01wrng808" + }, + { + "label": "Groupe de Physique des Matériaux", + "type": "child", + "id": "https://ror.org/03c2k2909" + }, + { + "label": "Institut Lumière Matière", + "type": "child", + "id": "https://ror.org/0323bey33" + }, + { + "label": "Institut Néel", + "type": "child", + "id": "https://ror.org/04dbzz632" + }, + { + "label": "Institut de Physique Théorique", + "type": "child", + "id": "https://ror.org/058rvd314" + }, + { + "label": "Institut de Physique de Rennes", + "type": "child", + "id": "https://ror.org/022b0h879" + }, + { + "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", + "type": "child", + "id": "https://ror.org/02za18p66" + }, + { + "label": "Institut des Matériaux, de Microélectronique et des Nanosciences de Provence", + "type": "child", + "id": "https://ror.org/0238zyh04" + }, + { + "label": "Institute of Mineralogy, Materials Physics and Cosmochemistry", + "type": "child", + "id": "https://ror.org/05abgg682" + }, + { + "label": "Interfaces, Confinement, Matériaux et Nanostructures", + "type": "child", + "id": "https://ror.org/008h1f725" + }, + { + "label": "Laboratoire Kastler Brossel", + "type": "child", + "id": "https://ror.org/01h14ww21" + }, + { + "label": "Laboratoire Charles Coulomb", + "type": "child", + "id": "https://ror.org/02ftce284" + }, + { + "label": "Laboratoire Collisions Agrégats Réactivité", + "type": "child", + "id": "https://ror.org/0416g8z79" + }, + { + "label": "Laboratoire Interdisciplinaire Carnot de Bourgogne", + "type": "child", + "id": "https://ror.org/02b6c1039" + }, + { + "label": "Laboratoire Jean Perrin", + "type": "child", + "id": "https://ror.org/01ghvgs84" + }, + { + "label": "Laboratoire Léon Brillouin", + "type": "child", + "id": "https://ror.org/029rmm934" + }, + { + "label": "Laboratoire Ondes et Matière d'Aquitaine", + "type": "child", + "id": "https://ror.org/05qsp5m64" + }, + { + "label": "Laboratoire Photonique, Numérique et Nanosciences", + "type": "child", + "id": "https://ror.org/03vdg7e33" + }, + { + "label": "Laboratoire d'Optique Appliquée", + "type": "child", + "id": "https://ror.org/03czns913" + }, + { + "label": "Laboratoire d'Étude des Microstructures", + "type": "child", + "id": "https://ror.org/03nqvpf75" + }, + { + "label": "Laboratoire de Cristallographie et Sciences des Matériaux", + "type": "child", + "id": "https://ror.org/04310tc15" + }, + { + "label": "Laboratoire de Physique Théorique", + "type": "child", + "id": "https://ror.org/01w0hda30" + }, + { + "label": "Laboratoire de Physique de l'ENS de Lyon", + "type": "child", + "id": "https://ror.org/00w5ay796" + }, + { + "label": "Laboratoire de Physique des Lasers, Atomes et Molécules", + "type": "child", + "id": "https://ror.org/04e89s906" + }, + { + "label": "Laboratoire de Physique et Chimie des Nano-Objets", + "type": "child", + "id": "https://ror.org/042xmz674" + }, + { + "label": "Laboratoire de Physique et Modélisation des Milieux Condensés", + "type": "child", + "id": "https://ror.org/02mc6qk71" + }, + { + "label": "Laboratory Materials and Quantum Phenomena", + "type": "child", + "id": "https://ror.org/02p3et738" + }, + { + "label": "Laboratory for Optics & Biosciences", + "type": "child", + "id": "https://ror.org/000p29f53" + }, + { + "label": "Laboratoire de Cristallographie, Résonance Magnétique et Modélisations", + "type": "child", + "id": "https://ror.org/017je3b10" + }, + { + "label": "Laboratoire de Physique et d’Étude des Matériaux", + "type": "child", + "id": "https://ror.org/00a72jq18" + }, + { + "label": "Laboratoire de Physique Théorique de la Matière Condensée", + "type": "child", + "id": "https://ror.org/04zaaa143" + }, + { + "label": "Laboratoire de Physique Théorique et Hautes Energies", + "type": "child", + "id": "https://ror.org/02mph9k76" + }, + { + "label": "Laser Physics Laboratory", + "type": "child", + "id": "https://ror.org/03n3yg876" + }, + { + "label": "Molecular and Atmospheric Spectrometry Group", + "type": "child", + "id": "https://ror.org/03vyzg221" + }, + { + "label": "Institut des NanoSciences de Paris", + "type": "child", + "id": "https://ror.org/03t2f0a12" + }, + { + "label": "Service de Physique de l'État Condensé", + "type": "child", + "id": "https://ror.org/0247p4w70" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "child", + "id": "https://ror.org/03e044190" + }, + { + "label": "Structure et Propriétés d'Architectures Moléculaires", + "type": "child", + "id": "https://ror.org/00x5jmr79" + }, + { + "label": "Surface du Verre et Interfaces", + "type": "child", + "id": "https://ror.org/04kadgz77" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/00zay3w86.json b/test-relationship-delete-v2/updates/00zay3w86.json new file mode 100644 index 000000000..499941407 --- /dev/null +++ b/test-relationship-delete-v2/updates/00zay3w86.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 2016, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q47520094" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503099.6" + ], + "preferred": "grid.503099.6" + } + ], + "id": "https://ror.org/00zay3w86", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.c2n.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Centre for Nanoscience and Nanotechnology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre de Nanosciences et de Nanotechnologies", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "C2N", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01070mq45.json b/test-relationship-delete-v2/updates/01070mq45.json new file mode 100644 index 000000000..36ddfa4ca --- /dev/null +++ b/test-relationship-delete-v2/updates/01070mq45.json @@ -0,0 +1,151 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1868, + "external_ids": [ + { + "all": [ + "0000 0001 1456 7807" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100006710", + "100007284", + "100008296" + ], + "preferred": "100006710", + "type": "fundref" + }, + { + "all": [ + "Q349055" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.254444.7" + ], + "preferred": "grid.254444.7", + "type": "grid" + } + ], + "id": "https://ror.org/01070mq45", + "links": [ + { + "type": "website", + "value": "https://wayne.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Wayne_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.33143, + "lng": -83.04575, + "name": "Detroit" + }, + "geonames_id": 4990729 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Wayne State University" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Wayne State" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal Wayne" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "WSU" + } + ], + "relationships": [ + { + "label": "Ascension Providence Hospital", + "type": "related", + "id": "https://ror.org/0207smp78" + }, + { + "label": "Crittenton Hospital Medical Center", + "type": "related", + "id": "https://ror.org/05x5g2972" + }, + { + "label": "Detroit Medical Center", + "type": "related", + "id": "https://ror.org/05gehxw18" + }, + { + "label": "Harper University Hospital", + "type": "related", + "id": "https://ror.org/00sxe0e68" + }, + { + "label": "Henry Ford Health System", + "type": "related", + "id": "https://ror.org/02kwnkm68" + }, + { + "label": "John D. Dingell VA Medical Center", + "type": "related", + "id": "https://ror.org/0057s8s52" + }, + { + "label": "The Barbara Ann Karmanos Cancer Institute", + "type": "related", + "id": "https://ror.org/00ee40h97" + }, + { + "label": "Kresge Eye Institute", + "type": "related", + "id": "https://ror.org/003dkgb76" + }, + { + "label": "St. John Hospital & Medical Center", + "type": "related", + "id": "https://ror.org/04sac7215" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/010ywy128.json b/test-relationship-delete-v2/updates/010ywy128.json new file mode 100644 index 000000000..89c3591ae --- /dev/null +++ b/test-relationship-delete-v2/updates/010ywy128.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3696183, + "geonames_details": { + "country_code": "PE", + "country_name": "Peru", + "lat": -3.74912, + "lng": -73.25383, + "name": "Iquitos" + } + } + ], + "established": 1981, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2177 4732" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.493484.6" + ], + "preferred": "grid.493484.6" + } + ], + "id": "https://ror.org/010ywy128", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gob.pe/iiap" + } + ], + "names": [ + { + "value": "Instituto de Investigaciones de la Amazonía Peruana", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IIAP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/011abem59.json b/test-relationship-delete-v2/updates/011abem59.json new file mode 100644 index 000000000..7c6b43736 --- /dev/null +++ b/test-relationship-delete-v2/updates/011abem59.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0614 7687" + ], + "preferred": "0000 0004 0614 7687" + }, + { + "type": "wikidata", + "all": [ + "Q30262344" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463972.d" + ], + "preferred": "grid.463972.d" + } + ], + "id": "https://ror.org/011abem59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.egce.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Évolution, Génomes, Comportement, Écologie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "LEGS", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Laboratoire Évolution, Génomes, Comportement, Écologie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "EGCE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/011jtr847.json b/test-relationship-delete-v2/updates/011jtr847.json new file mode 100644 index 000000000..afe23feca --- /dev/null +++ b/test-relationship-delete-v2/updates/011jtr847.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424716.2" + ], + "preferred": "grid.424716.2" + } + ], + "id": "https://ror.org/011jtr847", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.irta.cat/ca/centre/irta-cresa/" + } + ], + "names": [ + { + "value": "Centre de Recerca en Sanitat Animal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IRTA Centre de Recerca en Sanitat Animal", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut de Recerca i Tecnologia Agroalimentàries Centre de Recerca en Sanitat Animal", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IRTA-CReSA", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CReSA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Universitat Autònoma de Barcelona", + "type": "related", + "id": "https://ror.org/052g8jq94" + }, + { + "label": "Institute for Research and Technology in Food and Agriculture", + "type": "parent", + "id": "https://ror.org/012zh9h13" + }, + { + "label": "Institute for Research and Technology in Food and Agriculture", + "type": "successor", + "id": "https://ror.org/012zh9h13" + } + ], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01225hq90.json b/test-relationship-delete-v2/updates/01225hq90.json new file mode 100644 index 000000000..4af33a576 --- /dev/null +++ b/test-relationship-delete-v2/updates/01225hq90.json @@ -0,0 +1,106 @@ +{ + "locations": [ + { + "geonames_id": 2972315, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.60426, + "lng": 1.44367, + "name": "Toulouse" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0382 8364" + ], + "preferred": "0000 0004 0382 8364" + }, + { + "type": "wikidata", + "all": [ + "Q51780455" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.500939.6" + ], + "preferred": "grid.500939.6" + } + ], + "id": "https://ror.org/01225hq90", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cesbio.cnrs.fr" + } + ], + "names": [ + { + "value": "Centre d'Études Spatiales de la Biosphère", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Center for the Study of the Biosphere from Space", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CESBIO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Centre National d'Études Spatiales", + "type": "parent", + "id": "https://ror.org/04h1h0y33" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "parent", + "id": "https://ror.org/02v6kpv12" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0124x7055.json b/test-relationship-delete-v2/updates/0124x7055.json new file mode 100644 index 000000000..d64f31f11 --- /dev/null +++ b/test-relationship-delete-v2/updates/0124x7055.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2193 5524" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100001872" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1054348" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.410460.7" + ], + "preferred": "grid.410460.7" + } + ], + "id": "https://ror.org/0124x7055", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cdti.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Centre_for_the_Development_of_Industrial_Technology" + } + ], + "names": [ + { + "value": "Centre for Industrial Technological Development", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centro para el Desarrollo Tecnologico Industrial", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "CDTI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/012fqzm33.json b/test-relationship-delete-v2/updates/012fqzm33.json new file mode 100644 index 000000000..b6689a0eb --- /dev/null +++ b/test-relationship-delete-v2/updates/012fqzm33.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30261512" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462625.1" + ], + "preferred": "grid.462625.1" + } + ], + "id": "https://ror.org/012fqzm33", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://moulon.inrae.fr" + } + ], + "names": [ + { + "value": "Génétique Quantitative et Évolution Le Moulon", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Quantitative Genetics and Evolution - Le Moulon", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/012k1v959.json b/test-relationship-delete-v2/updates/012k1v959.json new file mode 100644 index 000000000..395a93750 --- /dev/null +++ b/test-relationship-delete-v2/updates/012k1v959.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2867714, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.13743, + "lng": 11.57549, + "name": "Munich" + } + } + ], + "established": 1971, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1408 3925" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q314089" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434949.7" + ], + "preferred": "grid.434949.7" + } + ], + "id": "https://ror.org/012k1v959", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.hm.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Munich_University_of_Applied_Sciences" + } + ], + "names": [ + { + "value": "Munich University of Applied Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Hochschule München", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hochschule für angewandte Wissenschaften München", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hochschule München University of Applied Sciences", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "HM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/012s7h980.json b/test-relationship-delete-v2/updates/012s7h980.json new file mode 100644 index 000000000..bc41a1167 --- /dev/null +++ b/test-relationship-delete-v2/updates/012s7h980.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0551 8239" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1419453" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.13739.3f" + ], + "preferred": "grid.13739.3f" + } + ], + "id": "https://ror.org/012s7h980", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.acerinox.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Acerinox" + } + ], + "names": [ + { + "value": "Acerinox (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/012zh9h13.json b/test-relationship-delete-v2/updates/012zh9h13.json new file mode 100644 index 000000000..a94834429 --- /dev/null +++ b/test-relationship-delete-v2/updates/012zh9h13.json @@ -0,0 +1,115 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2009, + "external_ids": [ + { + "all": [ + "0000 0001 1943 6646" + ], + "preferred": "0000 0001 1943 6646", + "type": "isni" + }, + { + "all": [ + "Q9006472" + ], + "preferred": "Q9006472", + "type": "wikidata" + }, + { + "all": [ + "grid.8581.4" + ], + "preferred": "grid.8581.4", + "type": "grid" + } + ], + "id": "https://ror.org/012zh9h13", + "links": [ + { + "type": "website", + "value": "https://www.irta.cat" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.63333, + "lng": 2.16667, + "name": "Caldes de Montbui" + }, + "geonames_id": 3127035 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute for Research and Technology in Food and Agriculture" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Institute of Agrifood Research and Technology" + }, + { + "lang": "ca", + "types": [ + "label" + ], + "value": "Institut de Recerca i Tecnologia Agroalimentàries" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IRTA" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IRTA-CERCA" + } + ], + "relationships": [ + { + "label": "Government of Catalonia", + "type": "parent", + "id": "https://ror.org/01bg62x04" + }, + { + "label": "CERCA Institution", + "type": "parent", + "id": "https://ror.org/01bkbaq61" + }, + { + "label": "Center for Research in Agricultural Genomics", + "type": "child", + "id": "https://ror.org/04tz2h245" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0145w8333.json b/test-relationship-delete-v2/updates/0145w8333.json new file mode 100644 index 000000000..b6ccb1610 --- /dev/null +++ b/test-relationship-delete-v2/updates/0145w8333.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 745044, + "geonames_details": { + "country_code": "TR", + "country_name": "Türkiye", + "lat": 41.01384, + "lng": 28.94966, + "name": "Istanbul" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0399 5023" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2756518" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.449305.f" + ], + "preferred": "grid.449305.f" + } + ], + "id": "https://ror.org/0145w8333", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.altinbas.edu.tr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Istanbul_Kemerburgaz_University" + } + ], + "names": [ + { + "value": "Altınbaş University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Istanbul Kemerburgaz University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Altınbaş Üniversitesi", + "types": [ + "label" + ], + "lang": "tr" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/014fbxn93.json b/test-relationship-delete-v2/updates/014fbxn93.json new file mode 100644 index 000000000..a80bdc690 --- /dev/null +++ b/test-relationship-delete-v2/updates/014fbxn93.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2738707, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 40.60188, + "lng": -8.67021, + "name": "Ílhavo" + } + } + ], + "established": 2022, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q124525831" + ], + "preferred": "Q124525831" + } + ], + "id": "https://ror.org/014fbxn93", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://pictis.pt" + } + ], + "names": [ + { + "value": "Plataforma Internacional para Ciência, Tecnologia e Inovação em Saúde", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "International Platform for Science, Technology, and Innovation in Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PICTIS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Fundação Oswaldo Cruz", + "type": "related", + "id": "https://ror.org/04jhswv08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/014p8mr66.json b/test-relationship-delete-v2/updates/014p8mr66.json new file mode 100644 index 000000000..63202cd78 --- /dev/null +++ b/test-relationship-delete-v2/updates/014p8mr66.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3029522, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69981, + "lng": 2.17064, + "name": "Bures-sur-Yvette" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0614 9404" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.482888.6" + ], + "preferred": "grid.482888.6" + } + ], + "id": "https://ror.org/014p8mr66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ias.u-psud.fr" + } + ], + "names": [ + { + "value": "Institut d'Astrophysique Spatiale", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IAS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/016gb1631.json b/test-relationship-delete-v2/updates/016gb1631.json new file mode 100644 index 000000000..c5ec1ee18 --- /dev/null +++ b/test-relationship-delete-v2/updates/016gb1631.json @@ -0,0 +1,144 @@ +{ + "locations": [ + { + "geonames_id": 715429, + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 46.253, + "lng": 20.14824, + "name": "Szeged" + } + } + ], + "established": 1971, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2195 9606", + "0000 0004 0620 9788" + ], + "preferred": "0000 0001 2195 9606" + }, + { + "type": "wikidata", + "all": [ + "Q4914963" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418331.c" + ], + "preferred": "grid.418331.c" + } + ], + "id": "https://ror.org/016gb1631", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.brc.hu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Biological_Research_Centre_(Hungarian_Academy_of_Sciences)" + } + ], + "names": [ + { + "value": "HUN-REN Szegedi Biológiai Kutatóközpont", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MTA Szegedi Biológiai Központ", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biological Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Szegedi Biológiai Kutatóközpont", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "HUN-REN Biological Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Magyar Tudományos Akadémia Szegedi Biológiai Kutatóközpontjának", + "types": [ + "label" + ], + "lang": "hu" + }, + { + "value": "BRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Hungarian Academy of Sciences", + "type": "parent", + "id": "https://ror.org/02ks8qq67" + }, + { + "label": "Institute of Biochemistry", + "type": "child", + "id": "https://ror.org/022dvs210" + }, + { + "label": "Institute of Biophysics", + "type": "child", + "id": "https://ror.org/038synb39" + }, + { + "label": "Institute of Genetics", + "type": "child", + "id": "https://ror.org/04tjemt46" + }, + { + "label": "Institute of Plant Biology", + "type": "child", + "id": "https://ror.org/039h1gd08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/016k9d838.json b/test-relationship-delete-v2/updates/016k9d838.json new file mode 100644 index 000000000..34e733183 --- /dev/null +++ b/test-relationship-delete-v2/updates/016k9d838.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3113157, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.16156, + "lng": -8.6198, + "name": "Porriño" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424847.9" + ], + "preferred": "grid.424847.9" + } + ], + "id": "https://ror.org/016k9d838", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ctag.com" + } + ], + "names": [ + { + "value": "Centro Tecnológico de Automoción de Galicia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Automotive Technology Centre of Galicia", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CTAG", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/016r2hq43.json b/test-relationship-delete-v2/updates/016r2hq43.json new file mode 100644 index 000000000..78a95672f --- /dev/null +++ b/test-relationship-delete-v2/updates/016r2hq43.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2000, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0370 3203" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30261584" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462861.f" + ], + "preferred": "grid.462861.f" + } + ], + "id": "https://ror.org/016r2hq43", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.universite-paris-saclay.fr/institut-de-chimie-physique" + } + ], + "names": [ + { + "value": "Laboratoire de Chimie Physique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "LCP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/017wrhq72.json b/test-relationship-delete-v2/updates/017wrhq72.json new file mode 100644 index 000000000..5c95cbf30 --- /dev/null +++ b/test-relationship-delete-v2/updates/017wrhq72.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2063523, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -31.95224, + "lng": 115.8614, + "name": "Perth" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q5260531" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.1310.3" + ], + "preferred": "grid.1310.3" + } + ], + "id": "https://ror.org/017wrhq72", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.water.wa.gov.au/" + } + ], + "names": [ + { + "value": "Department of Water", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Department of Water and Environmental Regulation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/018a8yy17.json b/test-relationship-delete-v2/updates/018a8yy17.json new file mode 100644 index 000000000..d91742950 --- /dev/null +++ b/test-relationship-delete-v2/updates/018a8yy17.json @@ -0,0 +1,116 @@ +{ + "locations": [ + { + "geonames_id": 1804540, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.52079, + "lng": 116.71471, + "name": "Langfang" + } + } + ], + "established": 1993, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9291 3447" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q23409786" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.510593.b" + ], + "preferred": "grid.510593.b" + } + ], + "id": "https://ror.org/018a8yy17", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.enn.cn/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ENN_Group#:~:text=ENN%20Group%20(Chinese%3A%20%E6%96%B0%E5%A5%A5,energy%20chemicals%20and%20real%20estate." + } + ], + "names": [ + { + "value": "ENN (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ENN Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ENN Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ENN Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "新奥集团", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "ENN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "ENN-Tongji Advanced Institute of Clean Energy", + "type": "child", + "id": "https://ror.org/05pzhab84" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01922h422.json b/test-relationship-delete-v2/updates/01922h422.json new file mode 100644 index 000000000..b9b764bc2 --- /dev/null +++ b/test-relationship-delete-v2/updates/01922h422.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 6325521, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.80326, + "lng": -71.17793, + "name": "Lévis" + } + } + ], + "established": 1967, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8723 7684" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3010001" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.292559.0" + ], + "preferred": "grid.292559.0" + } + ], + "id": "https://ror.org/01922h422", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cegeplevis.ca" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/C%C3%A9gep_de_L%C3%A9vis-Lauzon" + } + ], + "names": [ + { + "value": "Cégep de Lévis", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Cégep Lévis", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Cegep Levis Lauzon", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Collège d'enseignement général et professionnel Levis Lauzon", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0199hds37.json b/test-relationship-delete-v2/updates/0199hds37.json new file mode 100644 index 000000000..4a799e6c4 --- /dev/null +++ b/test-relationship-delete-v2/updates/0199hds37.json @@ -0,0 +1,223 @@ +{ + "locations": [ + { + "geonames_id": 2968275, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.95833, + "lng": 2.34167, + "name": "Villetaneuse" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2149 6883" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100009506" + ], + "preferred": "501100009506" + }, + { + "type": "wikidata", + "all": [ + "Q1780212" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.11318.3a" + ], + "preferred": "grid.11318.3a" + } + ], + "id": "https://ror.org/0199hds37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.univ-spn.fr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Paris_13_University" + } + ], + "names": [ + { + "value": "Université Sorbonne Paris Nord", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Paris North", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Paris 13 University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Sorbonne Paris North", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université Paris 13", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "USPN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Adaptateurs de Signalisation en Hématologie", + "type": "child", + "id": "https://ror.org/03837fc46" + }, + { + "label": "Laboratoire d'Informatique de Paris-Nord", + "type": "child", + "id": "https://ror.org/05g1zjw44" + }, + { + "label": "Institut de Biomécanique Humaine Georges Charpak", + "type": "child", + "id": "https://ror.org/053gdvc84" + }, + { + "label": "Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux", + "type": "child", + "id": "https://ror.org/03xg8m734" + }, + { + "label": "Laboratoire Analyse, Géométrie et Applications", + "type": "child", + "id": "https://ror.org/018nzqy79" + }, + { + "label": "Laboratoire d’Ethologie Expérimentale et Comparée", + "type": "child", + "id": "https://ror.org/0414fab98" + }, + { + "label": "Laboratory for Vascular Translational Science", + "type": "child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laser Physics Laboratory", + "type": "child", + "id": "https://ror.org/03n3yg876" + }, + { + "label": "Nutritional Epidemiology Research Unit", + "type": "child", + "id": "https://ror.org/04hzkx672" + }, + { + "label": "Campus Condorcet", + "type": "related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Hypoxie et Poumon", + "type": "child", + "id": "https://ror.org/02mtpz628" + }, + { + "label": "Laboratoire Interuniversitaire Expérience, Ressources culturelles, Education", + "type": "child", + "id": "https://ror.org/0127n6542" + }, + { + "label": "Physiopathologie, cibles et thérapies de la polyarthrite rhumatoïde", + "type": "child", + "id": "https://ror.org/05vqkgf08" + }, + { + "label": "Unité transversale de recherche en psychogénèse et psychopathologie", + "type": "child", + "id": "https://ror.org/04dqaqw31" + }, + { + "label": "Maison des Sciences de l'Homme Paris Nord", + "type": "child", + "id": "https://ror.org/05079x435" + }, + { + "label": "Unité de Recherche en Biomatériaux Innovant et Interfaces", + "type": "child", + "id": "https://ror.org/01cht3g41" + }, + { + "label": "CEPN - Centre d'Economie de l'Université Paris Nord", + "type": "child", + "id": "https://ror.org/03k32n603" + }, + { + "label": "Chimie, Structures et Propriétés de Biomatériaux et d'Agents Thérapeutiques", + "type": "child", + "id": "https://ror.org/0343fpq57" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénieurie des Connaissances en e-Santé", + "type": "child", + "id": "https://ror.org/01jr1v359" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/019rf7x86.json b/test-relationship-delete-v2/updates/019rf7x86.json new file mode 100644 index 000000000..8d078d670 --- /dev/null +++ b/test-relationship-delete-v2/updates/019rf7x86.json @@ -0,0 +1,68 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [ + { + "all": [ + "grid.454368.8" + ], + "preferred": "grid.454368.8", + "type": "grid" + } + ], + "id": "https://ror.org/019rf7x86", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/research-innovation/our-research/bristol-nutrition-bru/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.458421, + "lng": -2.596182, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "NIHR Bristol Nutrition Biomedical Research Unit" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + }, + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01a2wsa50.json b/test-relationship-delete-v2/updates/01a2wsa50.json new file mode 100644 index 000000000..0b82c5ddb --- /dev/null +++ b/test-relationship-delete-v2/updates/01a2wsa50.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 3110044, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.31283, + "lng": -1.97499, + "name": "Donostia / San Sebastian" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432380.e" + ], + "preferred": "grid.432380.e" + }, + { + "type": "wikidata", + "all": [ + "Q12255260" + ], + "preferred": "Q12255260" + }, + { + "type": "isni", + "all": [ + "0000 0004 6416 6288" + ], + "preferred": "0000 0004 6416 6288" + } + ], + "id": "https://ror.org/01a2wsa50", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.biodonostia.org" + } + ], + "names": [ + { + "value": "Biogipuzkoa Health Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Biogipuzkoa HRI", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biodonostia Health Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biodonostia", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01b5rtm37.json b/test-relationship-delete-v2/updates/01b5rtm37.json new file mode 100644 index 000000000..31d49cf53 --- /dev/null +++ b/test-relationship-delete-v2/updates/01b5rtm37.json @@ -0,0 +1,94 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.493838.d" + ], + "preferred": "grid.493838.d" + } + ], + "id": "https://ror.org/01b5rtm37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://institut-curie.org/unit/umr3348" + } + ], + "names": [ + { + "value": "Genome Integrity, RNA and Cancer", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Genotoxic Stress and Cancer", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Stress génotoxique et cancer", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Intégrité du génome, ARN et cancer", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [ + { + "label": "Institute Curie", + "type": "parent", + "id": "https://ror.org/04t0gwh46" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01bg62x04.json b/test-relationship-delete-v2/updates/01bg62x04.json new file mode 100644 index 000000000..d095e67e2 --- /dev/null +++ b/test-relationship-delete-v2/updates/01bg62x04.json @@ -0,0 +1,176 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2331 7762" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100002809", + "501100002943" + ], + "preferred": "501100002809" + }, + { + "type": "wikidata", + "all": [ + "Q8022", + "Q3112544" + ], + "preferred": "Q8022" + }, + { + "type": "grid", + "all": [ + "grid.454735.4" + ], + "preferred": "grid.454735.4" + } + ], + "id": "https://ror.org/01bg62x04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://catalangovernment.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Generalitat_de_Catalunya" + } + ], + "names": [ + { + "value": "Government of Catalonia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Generalidad de Cataluña", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Generalitat de Catalunya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Kataluniako Generalitatea", + "types": [ + "label" + ], + "lang": "eu" + } + ], + "relationships": [ + { + "label": "Agencia per a la Competitivit de l'Empresa", + "type": "child", + "id": "https://ror.org/01xhc9d78" + }, + { + "label": "Agència de Gestió d'Ajuts Universitaris i de Recerca", + "type": "child", + "id": "https://ror.org/01n4pqe45" + }, + { + "label": "Departament d'Educació", + "type": "child", + "id": "https://ror.org/02dkz1149" + }, + { + "label": "Departament de Cultura", + "type": "child", + "id": "https://ror.org/014ns9811" + }, + { + "label": "Departament de Salut", + "type": "child", + "id": "https://ror.org/00nyrjc53" + }, + { + "label": "Institut Català de la Salut", + "type": "child", + "id": "https://ror.org/04wkdwp52" + }, + { + "label": "Institut Català de les Dones", + "type": "child", + "id": "https://ror.org/03g0h0k24" + }, + { + "label": "Institut de Seguretat Pública de Catalunya", + "type": "child", + "id": "https://ror.org/01k6ah132" + }, + { + "label": "Institute for Research and Technology in Food and Agriculture", + "type": "child", + "id": "https://ror.org/012zh9h13" + }, + { + "label": "Departament d'Economia i Hisenda de la Generalitat de Catalunya", + "type": "child", + "id": "https://ror.org/0564q6y15" + }, + { + "label": "National Institute of Physical Education of Catalonia", + "type": "child", + "id": "https://ror.org/04xrm3t06" + }, + { + "label": "Institut de Política Econòmica i Governança", + "type": "child", + "id": "https://ror.org/03wbt1f24" + }, + { + "label": "Departament de Recerca i Universitats", + "type": "child", + "id": "https://ror.org/01gbnem66" + }, + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "related", + "id": "https://ror.org/03abrgd14" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01bj3aw27.json b/test-relationship-delete-v2/updates/01bj3aw27.json new file mode 100644 index 000000000..01f7cf30c --- /dev/null +++ b/test-relationship-delete-v2/updates/01bj3aw27.json @@ -0,0 +1,343 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1977, + "external_ids": [ + { + "all": [ + "0000 0001 2342 3717" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100000015", + "100006157" + ], + "preferred": "100000015", + "type": "fundref" + }, + { + "all": [ + "Q217810", + "Q6422983" + ], + "preferred": "Q217810", + "type": "wikidata" + }, + { + "all": [ + "grid.85084.31" + ], + "preferred": "grid.85084.31", + "type": "grid" + } + ], + "id": "https://ror.org/01bj3aw27", + "links": [ + { + "type": "website", + "value": "https://www.energy.gov" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/United_States_Department_of_Energy" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + }, + "geonames_id": 4140963 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "United States Department of Energy" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Department of Energy" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Departamento de Energía de los Estados Unidos" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Département de l'Énergie des États-unis" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DOE" + } + ], + "relationships": [ + { + "label": "Government of the United States of America", + "type": "parent", + "id": "https://ror.org/02rcrvv70" + }, + { + "label": "Advanced Research Projects Agency-Energy", + "type": "child", + "id": "https://ror.org/03q1rgc19" + }, + { + "label": "Consortium for the Advanced Simulation of Light Water Reactors", + "type": "child", + "id": "https://ror.org/00qq8bd87" + }, + { + "label": "Great Lakes Bioenergy Research Center", + "type": "child", + "id": "https://ror.org/01ca2by25" + }, + { + "label": "International Partnership for the Hydrogen and Fuel Cell in the Economy", + "type": "child", + "id": "https://ror.org/04d8cf622" + }, + { + "label": "Joint BioEnergy Institute", + "type": "child", + "id": "https://ror.org/03ww55028" + }, + { + "label": "National Nuclear Security Administration", + "type": "child", + "id": "https://ror.org/03sk1we31" + }, + { + "label": "Nevada National Security Site", + "type": "child", + "id": "https://ror.org/037k8mg80" + }, + { + "label": "Office of Economic Impact and Diversity", + "type": "child", + "id": "https://ror.org/05hsv7e61" + }, + { + "label": "Office of Energy Efficiency and Renewable Energy", + "type": "child", + "id": "https://ror.org/02xznz413" + }, + { + "label": "Office of Environmental Management", + "type": "child", + "id": "https://ror.org/00km40770" + }, + { + "label": "Office of Environmental Protection, Sustainability Support and Corporate Safety Analysis", + "type": "child", + "id": "https://ror.org/01c9ay627" + }, + { + "label": "Office of Fossil Energy", + "type": "child", + "id": "https://ror.org/03ery9d53" + }, + { + "label": "Office of Inspector General", + "type": "child", + "id": "https://ror.org/04nnxen11" + }, + { + "label": "Office of Intelligence and Counterintelligence", + "type": "child", + "id": "https://ror.org/02z1qvq09" + }, + { + "label": "Office of International Affairs", + "type": "child", + "id": "https://ror.org/05ek3m339" + }, + { + "label": "Office of Legacy Management", + "type": "child", + "id": "https://ror.org/03jf3w726" + }, + { + "label": "Office of Management", + "type": "child", + "id": "https://ror.org/02ah1da87" + }, + { + "label": "Office of Nuclear Energy", + "type": "child", + "id": "https://ror.org/05tj7dm33" + }, + { + "label": "Office of Science", + "type": "child", + "id": "https://ror.org/00mmn6b08" + }, + { + "label": "Office of Space and Defense Power Systems", + "type": "child", + "id": "https://ror.org/04s778r16" + }, + { + "label": "Office of Under Secretary of Energy for Science", + "type": "child", + "id": "https://ror.org/03eecgp81" + }, + { + "label": "Office of the General Counsel", + "type": "child", + "id": "https://ror.org/0054t4769" + }, + { + "label": "Savannah River Operations Office", + "type": "child", + "id": "https://ror.org/05hhm9a98" + }, + { + "label": "United States Energy Information Administration", + "type": "child", + "id": "https://ror.org/01h04ms65" + }, + { + "label": "Vera C. Rubin Observatory", + "type": "child", + "id": "https://ror.org/048g3cy84" + }, + { + "label": "Kansas City National Security Campus", + "type": "child", + "id": "https://ror.org/03e7mhc87" + }, + { + "label": "Environmental System Science Data Infrastructure for a Virtual Ecosystem", + "type": "child", + "id": "https://ror.org/01t14bp54" + }, + { + "label": "Office of the Chief Information Officer", + "type": "child", + "id": "https://ror.org/00hvbwp12" + }, + { + "label": "Office of Under Secretary for Science and Innovation", + "type": "child", + "id": "https://ror.org/00htph268" + }, + { + "label": "Office of Technology Transitions", + "type": "child", + "id": "https://ror.org/02vg64e60" + }, + { + "label": "Office of Secretary of Energy", + "type": "child", + "id": "https://ror.org/028rfb880" + }, + { + "label": "Office of Public Affairs", + "type": "child", + "id": "https://ror.org/00mw1dx44" + }, + { + "label": "Office of Policy", + "type": "child", + "id": "https://ror.org/05p9bjd64" + }, + { + "label": "Office of Indian Energy Policy and Programs", + "type": "child", + "id": "https://ror.org/02bhbx726" + }, + { + "label": "Office of Fossil Energy and Carbon Management", + "type": "child", + "id": "https://ror.org/037897814" + }, + { + "label": "Office of Environment, Health, Safety and Security", + "type": "child", + "id": "https://ror.org/04csf5r20" + }, + { + "label": "Office of Enterprise Assessments", + "type": "child", + "id": "https://ror.org/035fxjt55" + }, + { + "label": "Office of State and Community Energy Programs", + "type": "child", + "id": "https://ror.org/035sc8895" + }, + { + "label": "Office of Federal Energy Management Programs", + "type": "child", + "id": "https://ror.org/01zprx076" + }, + { + "label": "Grid Deployment Office", + "type": "child", + "id": "https://ror.org/00n4kg172" + }, + { + "label": "Office of Electricity", + "type": "child", + "id": "https://ror.org/02y6dp041" + }, + { + "label": "Office of Cybersecurity, Energy Security, and Emergency Response", + "type": "child", + "id": "https://ror.org/041g4v832" + }, + { + "label": "Office of Congressional and Intergovernmental Affairs", + "type": "child", + "id": "https://ror.org/05cpnza27" + }, + { + "label": "Oak Ridge Institute for Science and Education", + "type": "child", + "id": "https://ror.org/040vxhp34" + }, + { + "label": "Artificial Intelligence & Technology Office", + "type": "child", + "id": "https://ror.org/00536t873" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01bkbaq61.json b/test-relationship-delete-v2/updates/01bkbaq61.json new file mode 100644 index 000000000..4b9640801 --- /dev/null +++ b/test-relationship-delete-v2/updates/01bkbaq61.json @@ -0,0 +1,329 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100015439" + ], + "preferred": "100015439" + }, + { + "type": "wikidata", + "all": [ + "Q30100395" + ], + "preferred": "Q30100395" + } + ], + "id": "https://ror.org/01bkbaq61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cerca.cat" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/CERCA_Institute" + } + ], + "names": [ + { + "value": "CERCA Institution", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institución CERCA", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institució CERCA - Centres de Recerca de Catalunya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Fundació Institució dels Centres de Recerca de Catalunya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "CERCA", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "I-CERCA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "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": "Hospital del Mar Research Institute", + "type": "child", + "id": "https://ror.org/042nkmz09" + }, + { + "label": "Institut Català de Paleoecologia Humana i Evolució Social", + "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": "Institut de Recerca Sant Pau", + "type": "child", + "id": "https://ror.org/005teat46" + }, + { + "label": "Vall d'Hebron Institute of Oncology", + "type": "child", + "id": "https://ror.org/054xx3904" + }, + { + "label": "Institut de Recerca Sant Joan de Déu", + "type": "child", + "id": "https://ror.org/00gy2ar74" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01bpa4157.json b/test-relationship-delete-v2/updates/01bpa4157.json new file mode 100644 index 000000000..74260fc42 --- /dev/null +++ b/test-relationship-delete-v2/updates/01bpa4157.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1763 0121" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.424730.6" + ], + "preferred": "grid.424730.6" + } + ], + "id": "https://ror.org/01bpa4157", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ic3.cat/" + } + ], + "names": [ + { + "value": "Institut Català de Ciències del Clima", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Catalan Institute of Climate Sciences", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "IC3", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01cdrde68.json b/test-relationship-delete-v2/updates/01cdrde68.json new file mode 100644 index 000000000..d089b4d27 --- /dev/null +++ b/test-relationship-delete-v2/updates/01cdrde68.json @@ -0,0 +1,179 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1973, + "external_ids": [ + { + "all": [ + "0000 0001 1931 1704" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100012119" + ], + "preferred": "100012119", + "type": "fundref" + }, + { + "all": [ + "Q492442" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.410557.2" + ], + "preferred": "grid.410557.2", + "type": "grid" + } + ], + "id": "https://ror.org/01cdrde68", + "links": [ + { + "type": "website", + "value": "http://unu.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/United_Nations_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "JP", + "country_name": "Japan", + "lat": 35.6895, + "lng": 139.69171, + "name": "Tokyo" + }, + "geonames_id": 1850147 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "United Nations University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Kokusairengōdaigaku" + }, + { + "lang": "ja", + "types": [ + "label" + ], + "value": "国際連合大学" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNU" + } + ], + "relationships": [ + { + "label": "United Nations", + "type": "related", + "id": "https://ror.org/006kxhp52" + }, + { + "label": "Global Environmental Outreach Centre", + "type": "child", + "id": "https://ror.org/00d8hgw93" + }, + { + "label": "Institute for Environment and Human Security", + "type": "child", + "id": "https://ror.org/05egrn753" + }, + { + "label": "Institute for Integrated Management of Material Fluxes and of Resources", + "type": "child", + "id": "https://ror.org/03xp99m49" + }, + { + "label": "Institute for Natural Resources in Africa", + "type": "child", + "id": "https://ror.org/05t20pg33" + }, + { + "label": "United Nations University", + "type": "child", + "id": "https://ror.org/040aqvh16" + }, + { + "label": "United Nations University", + "type": "child", + "id": "https://ror.org/04kkx4y96" + }, + { + "label": "United Nations University Institute for Sustainability and Peace", + "type": "child", + "id": "https://ror.org/00be0m967" + }, + { + "label": "United Nations University Institute for Water, Environment, and Health", + "type": "child", + "id": "https://ror.org/03d8jqg89" + }, + { + "label": "United Nations University Institute for the Advanced Study of Sustainability", + "type": "child", + "id": "https://ror.org/03vmsb260" + }, + { + "label": "United Nations University Institute on Comparative Regional Integration Studies", + "type": "child", + "id": "https://ror.org/02fa0f492" + }, + { + "label": "United Nations University Institute on Computing and Society", + "type": "child", + "id": "https://ror.org/02y0c7m95" + }, + { + "label": "United Nations University – Maastricht Economic and Social Research Institute on Innovation and Technology", + "type": "child", + "id": "https://ror.org/053zwxr79" + }, + { + "label": "United Nations University-International Institute for Global Health", + "type": "child", + "id": "https://ror.org/01y130z09" + }, + { + "label": "United Nations University World Institute for Development Economics Research", + "type": "child", + "id": "https://ror.org/015y1mx47" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01cjqyj20.json b/test-relationship-delete-v2/updates/01cjqyj20.json new file mode 100644 index 000000000..250ead793 --- /dev/null +++ b/test-relationship-delete-v2/updates/01cjqyj20.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 1645875, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -3.4703, + "lng": 102.5207, + "name": "Curup" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109912911" + ], + "preferred": "Q109912911" + } + ], + "id": "https://ror.org/01cjqyj20", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iaincurup.ac.id" + } + ], + "names": [ + { + "value": "Institut Agama Islam Negeri Curup", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IAIN Curup", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Curup State Islamic Religious Institute", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01cmdgj85.json b/test-relationship-delete-v2/updates/01cmdgj85.json new file mode 100644 index 000000000..ef49ec53d --- /dev/null +++ b/test-relationship-delete-v2/updates/01cmdgj85.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51780480" + ], + "preferred": "Q51780480" + } + ], + "id": "https://ror.org/01cmdgj85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www6.versailles-grignon.inrae.fr/sadapt" + } + ], + "names": [ + { + "value": "SADAPT Science Action Développement - Activités Produits Territoires", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Sciences pour l'Action et le Développement : Activités, Produits, Territoires", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SAD-APT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01df3an44.json b/test-relationship-delete-v2/updates/01df3an44.json new file mode 100644 index 000000000..30edaf1f1 --- /dev/null +++ b/test-relationship-delete-v2/updates/01df3an44.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 2034937, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 41.79222, + "lng": 123.43278, + "name": "Shenyang" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.495835.6" + ], + "preferred": "grid.495835.6" + }, + { + "type": "wikidata", + "all": [ + "Q11138978" + ], + "preferred": "Q11138978" + } + ], + "id": "https://ror.org/01df3an44", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.smtcl.com/" + } + ], + "names": [ + { + "value": "Genertec Shenyang Machine Tool Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Genertec Shenyang Machine Tool Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Shenyang Machine Tool Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Genertec Shenyang Machine Tool Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Shenyang Machine Tool Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "沈阳机床股份有限公司保", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "通用技术沈阳机床股份有限公司官网", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "SMTCL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01ed4t417.json b/test-relationship-delete-v2/updates/01ed4t417.json new file mode 100644 index 000000000..c0c031802 --- /dev/null +++ b/test-relationship-delete-v2/updates/01ed4t417.json @@ -0,0 +1,111 @@ +{ + "locations": [ + { + "geonames_id": 2968705, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.7939, + "lng": 2.35992, + "name": "Villejuif" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0638 6872" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30262232" + ], + "preferred": "Q30262232" + }, + { + "type": "grid", + "all": [ + "grid.463845.8" + ], + "preferred": "grid.463845.8" + } + ], + "id": "https://ror.org/01ed4t417", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cesp.inserm.fr" + } + ], + "names": [ + { + "value": "Centre de recherche en Epidémiologie et Santé des Populations", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre for Epidemiology and Population Health", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CESP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "Hôpital Paul-Brousse", + "type": "parent", + "id": "https://ror.org/05n7yzd13" + }, + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01et6g203.json b/test-relationship-delete-v2/updates/01et6g203.json new file mode 100644 index 000000000..9d6831e2b --- /dev/null +++ b/test-relationship-delete-v2/updates/01et6g203.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 3002650, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.78889, + "lng": 2.27078, + "name": "Le Plessis-Robinson" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.462435.2" + ], + "preferred": "grid.462435.2" + } + ], + "id": "https://ror.org/01et6g203", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.u999.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Pathophysiology and Novel Therapies", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Physiopathologie et Innovation Thérapeutique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Pulmonary Hypertension: Pathophysiology and Novel Therapies", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "PAH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01f7a6m90.json b/test-relationship-delete-v2/updates/01f7a6m90.json new file mode 100644 index 000000000..275918ed3 --- /dev/null +++ b/test-relationship-delete-v2/updates/01f7a6m90.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3118532, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.60003, + "lng": -5.57032, + "name": "León" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0639 4661" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30284835" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.425226.5" + ], + "preferred": "grid.425226.5" + } + ], + "id": "https://ror.org/01f7a6m90", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.itacyl.es" + } + ], + "names": [ + { + "value": "Instituto Tecnológico Agrario de Castilla y León", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ITACyL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01fftxe08.json b/test-relationship-delete-v2/updates/01fftxe08.json new file mode 100644 index 000000000..cb38c4d8c --- /dev/null +++ b/test-relationship-delete-v2/updates/01fftxe08.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7474 7238" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30261453" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462411.4" + ], + "preferred": "grid.462411.4" + } + ], + "id": "https://ror.org/01fftxe08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.i2bc.paris-saclay.fr" + } + ], + "names": [ + { + "value": "Institute of Integrative Biology of the Cell", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "I2BC Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut de Biologie Intégrative de la Cellule", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "I2BC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Atomic Energy and Alternative Energies Commission", + "type": "parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01fgmnw14.json b/test-relationship-delete-v2/updates/01fgmnw14.json new file mode 100644 index 000000000..abc1ddc00 --- /dev/null +++ b/test-relationship-delete-v2/updates/01fgmnw14.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2867445, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 47.68085, + "lng": 11.20125, + "name": "Murnau am Staffelsee" + } + } + ], + "established": 1953, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9109 6845" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.469896.c" + ], + "preferred": "grid.469896.c" + } + ], + "id": "https://ror.org/01fgmnw14", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.bgu-murnau.de/en/" + } + ], + "names": [ + { + "value": "Berufsgenossenschaftliche Unfallklinik Murnau", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BG Hospital Murnau", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Trauma Center Murnau", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Trauma Centre Murnau", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BGU Murnau", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Technical University of Munich", + "type": "related", + "id": "https://ror.org/02kkvpp62" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01fq24p11.json b/test-relationship-delete-v2/updates/01fq24p11.json new file mode 100644 index 000000000..546d03fc2 --- /dev/null +++ b/test-relationship-delete-v2/updates/01fq24p11.json @@ -0,0 +1,110 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1961, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 7342" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q15089062" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.509256.d" + ], + "preferred": "grid.509256.d" + } + ], + "id": "https://ror.org/01fq24p11", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.elisava.net/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ELISAVA" + } + ], + "names": [ + { + "value": "Elisava Barcelona School of Design and Engineering", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Escuela Superior de Diseño e Ingeniería de Barcelona", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Escuela Universitaria de Diseño e Ingeniería de Barcelona", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Escola Universitària de Disseny i Enginyeria de Barcelona", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Elisava, Facultat de Disseny i Enginyeria de Barcelona", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "ELISAVA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01gm5f004.json b/test-relationship-delete-v2/updates/01gm5f004.json new file mode 100644 index 000000000..193419547 --- /dev/null +++ b/test-relationship-delete-v2/updates/01gm5f004.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 3104324, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.65606, + "lng": -0.87734, + "name": "Zaragoza" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1763 291X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100005053" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.429738.3" + ], + "preferred": "grid.429738.3" + } + ], + "id": "https://ror.org/01gm5f004", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciber-bbn.es" + } + ], + "names": [ + { + "value": "Biomedical Research Networking Center in Bioengineering, Biomaterials and Nanomedicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centro de Investigación Biomédica en Red en Bioingeniería, Biomateriales y Nanomedicina", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "CIBER-BBN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01j98sy69.json b/test-relationship-delete-v2/updates/01j98sy69.json new file mode 100644 index 000000000..4f6226c6f --- /dev/null +++ b/test-relationship-delete-v2/updates/01j98sy69.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1957, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432414.4" + ], + "preferred": "grid.432414.4" + } + ], + "id": "https://ror.org/01j98sy69", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.anaip.es" + } + ], + "names": [ + { + "value": "Asociación Española de Industriales de Plásticos", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ANAIP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01jty7g66.json b/test-relationship-delete-v2/updates/01jty7g66.json new file mode 100644 index 000000000..216c5a6d5 --- /dev/null +++ b/test-relationship-delete-v2/updates/01jty7g66.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2879139, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.33962, + "lng": 12.37129, + "name": "Leipzig" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7470 3956" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100020056" + ], + "preferred": "501100020056" + }, + { + "type": "wikidata", + "all": [ + "Q1206134" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.421064.5" + ], + "preferred": "grid.421064.5" + } + ], + "id": "https://ror.org/01jty7g66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.idiv.de" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/German_Centre_for_Integrative_Biodiversity_Research_(iDiv)" + } + ], + "names": [ + { + "value": "German Centre for Integrative Biodiversity Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "German Center for Integrative Biodiversity Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Deutsches Zentrum für integrative Biodiversitätsforschung", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "iDiv", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01kdbb633.json b/test-relationship-delete-v2/updates/01kdbb633.json new file mode 100644 index 000000000..bb670ff75 --- /dev/null +++ b/test-relationship-delete-v2/updates/01kdbb633.json @@ -0,0 +1,110 @@ +{ + "locations": [ + { + "geonames_id": 2719111, + "geonames_details": { + "country_code": "SE", + "country_name": "Sweden", + "lat": 59.34, + "lng": 17.94, + "name": "Bromma" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0618 2159" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3652398" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462882.2" + ], + "preferred": "grid.462882.2" + } + ], + "id": "https://ror.org/01kdbb633", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ehs.se" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Stockholm_School_of_Theology" + } + ], + "names": [ + { + "value": "University College Stockholm", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stockholm School of Theology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Teologiska högskolan Stockholm", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Enskilda Högskolan Stockholm", + "types": [ + "label" + ], + "lang": "sv" + }, + { + "value": "THS", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "EHS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01mhxe537.json b/test-relationship-delete-v2/updates/01mhxe537.json new file mode 100644 index 000000000..7735154fe --- /dev/null +++ b/test-relationship-delete-v2/updates/01mhxe537.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 6359078, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.46712, + "lng": -2.44541, + "name": "Logroño" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30256933" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434800.b" + ], + "preferred": "grid.434800.b" + } + ], + "id": "https://ror.org/01mhxe537", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.geolica.com/" + } + ], + "names": [ + { + "value": "Geolica Innovations (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01nry9c15.json b/test-relationship-delete-v2/updates/01nry9c15.json new file mode 100644 index 000000000..65076b602 --- /dev/null +++ b/test-relationship-delete-v2/updates/01nry9c15.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q4886787" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.430077.7" + ], + "preferred": "grid.430077.7" + } + ], + "id": "https://ror.org/01nry9c15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fpmaragall.org/en/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Pasqual_Maragall_Foundation" + } + ], + "names": [ + { + "value": "Pasqual Maragall Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fundació Pasqual Maragall", + "types": [ + "label" + ], + "lang": "ca" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01nv2xf68.json b/test-relationship-delete-v2/updates/01nv2xf68.json new file mode 100644 index 000000000..529630e23 --- /dev/null +++ b/test-relationship-delete-v2/updates/01nv2xf68.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q15470" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.417656.7" + ], + "preferred": "grid.417656.7" + } + ], + "id": "https://ror.org/01nv2xf68", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.l-h.cat/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/L%27Hospitalet_de_Llobregat" + } + ], + "names": [ + { + "value": "Ajuntament de L’Hospitalet", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ayuntamiento de Hospitalet de Llobregat", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hospitalet de Llobregat City Council", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Institut d'Investigació Biomédica de Bellvitge", + "type": "child", + "id": "https://ror.org/0008xqs48" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01p07y544.json b/test-relationship-delete-v2/updates/01p07y544.json new file mode 100644 index 000000000..edcdd18cd --- /dev/null +++ b/test-relationship-delete-v2/updates/01p07y544.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 703448, + "geonames_details": { + "country_code": "UA", + "country_name": "Ukraine", + "lat": 50.45466, + "lng": 30.5238, + "name": "Kyiv" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q12139846" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.446267.5" + ], + "preferred": "grid.446267.5" + } + ], + "id": "https://ror.org/01p07y544", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uhsp.edu.ua" + } + ], + "names": [ + { + "value": "Hryhorii Skovoroda University in Pereiaslav", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Переяслав-Хмельницький державний педагогічний університет імені Григорія Сковороди", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Університет Григорія Сковороди в Переяславі", + "types": [ + "label" + ], + "lang": "uk" + }, + { + "value": "PCDPU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01q76b368.json b/test-relationship-delete-v2/updates/01q76b368.json new file mode 100644 index 000000000..85f2aaf96 --- /dev/null +++ b/test-relationship-delete-v2/updates/01q76b368.json @@ -0,0 +1,341 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0253 7563" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100017216" + ], + "preferred": "501100017216" + }, + { + "type": "wikidata", + "all": [ + "Q24935880" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457013.4" + ], + "preferred": "grid.457013.4" + } + ], + "id": "https://ror.org/01q76b368", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/inee/" + } + ], + "names": [ + { + "value": "Institut Écologie et Environnement", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INEE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Adaptation and Diversity in the Marine Environment", + "type": "child", + "id": "https://ror.org/0293jn610" + }, + { + "label": "Adaptative Mechanisms & Evolution", + "type": "child", + "id": "https://ror.org/041tgdz97" + }, + { + "label": "Archéozoologie et Archéobotanique", + "type": "child", + "id": "https://ror.org/03j82q602" + }, + { + "label": "Laboratoire d'Ecogéochimie des Environnements Benthiques", + "type": "child", + "id": "https://ror.org/049xh5y45" + }, + { + "label": "Biogéosciences", + "type": "child", + "id": "https://ror.org/04mzqjs78" + }, + { + "label": "Biologie des Organismes et Écosystèmes Aquatiques", + "type": "child", + "id": "https://ror.org/01tp1c480" + }, + { + "label": "Biometry and Evolutionary Biology Laboratory", + "type": "child", + "id": "https://ror.org/03skt0t88" + }, + { + "label": "Centre d'Etudes Biologiques de Chizé", + "type": "child", + "id": "https://ror.org/00s8hq550" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Recherches Insulaires et Observatoire de l'Environnement", + "type": "child", + "id": "https://ror.org/02tp7mm44" + }, + { + "label": "Centre d'Écologie et des Sciences de la Conservation", + "type": "child", + "id": "https://ror.org/00sad8321" + }, + { + "label": "Cereep Ecotron Île-de-France", + "type": "child", + "id": "https://ror.org/05j6qf006" + }, + { + "label": "Chrono-Environment Laboratory", + "type": "child", + "id": "https://ror.org/028cef883" + }, + { + "label": "Communication Molecules and Adapation of Micro-organisms", + "type": "child", + "id": "https://ror.org/04xfycm61" + }, + { + "label": "Cultures et Environnements. Préhistoire, Antiquité, Moyen Âge", + "type": "child", + "id": "https://ror.org/04n9van71" + }, + { + "label": "De la Préhistoire à l'Actuel : Culture, Environnement et Anthropologie", + "type": "child", + "id": "https://ror.org/027mnq498" + }, + { + "label": "Ecology and Dynamics of Human Influenced Systems", + "type": "child", + "id": "https://ror.org/02bhp7a56" + }, + { + "label": "Ecosystèmes, Biodiversité, Evolution", + "type": "child", + "id": "https://ror.org/005fjj927" + }, + { + "label": "Environment, City, Society", + "type": "child", + "id": "https://ror.org/0256r1e04" + }, + { + "label": "Biologie évolutive et écologie des algues", + "type": "child", + "id": "https://ror.org/051k70002" + }, + { + "label": "Histoire Naturelle de l’Homme Préhistorique", + "type": "child", + "id": "https://ror.org/00c3ta789" + }, + { + "label": "Institut de Systématique, Évolution, Biodiversité", + "type": "child", + "id": "https://ror.org/01dadvw90" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institute of Paleoprimatology Human Paleontology Evolution and Paleoenvironments", + "type": "child", + "id": "https://ror.org/0325zb480" + }, + { + "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 Image, Ville, Environnement", + "type": "child", + "id": "https://ror.org/03x8fem72" + }, + { + "label": "Laboratoire Microorganismes Génome et Environnement", + "type": "child", + "id": "https://ror.org/020ahr442" + }, + { + "label": "Laboratoire Méditerranéen de Préhistoire Europe Afrique", + "type": "child", + "id": "https://ror.org/011gea244" + }, + { + "label": "Laboratoire d'Écologie Alpine", + "type": "child", + "id": "https://ror.org/03x1z2w73" + }, + { + "label": "Laboratoire de Biodiversité et Biotechnologies Microbiennes", + "type": "child", + "id": "https://ror.org/039p01270" + }, + { + "label": "Laboratoire de Génétique & Evolution des Populations Végétales", + "type": "child", + "id": "https://ror.org/01h0a3k64" + }, + { + "label": "Laboratoire de Géographie Physique", + "type": "child", + "id": "https://ror.org/054v0s666" + }, + { + "label": "Laboratoire de Géographie Physique et Environnementale", + "type": "child", + "id": "https://ror.org/00e4pqm50" + }, + { + "label": "Laboratoire des Sciences de l'Environnement Marin", + "type": "child", + "id": "https://ror.org/05h929866" + }, + { + "label": "Laboratoire Écologie Fonctionnelle et Environnement", + "type": "child", + "id": "https://ror.org/027rbaq21" + }, + { + "label": "Laboratory Evolution and Biological Diversity", + "type": "child", + "id": "https://ror.org/02xh23b55" + }, + { + "label": "Laboratory of Molecular Anthropology and Image Synthesis", + "type": "child", + "id": "https://ror.org/05w482q29" + }, + { + "label": "Maladies Infectieuses et Vecteurs: Écologie, Génétique, Évolution et Contrôle", + "type": "child", + "id": "https://ror.org/00357kh21" + }, + { + "label": "Mediterranean Institute of Marine and Terrestrial Biodiversity and Ecology", + "type": "child", + "id": "https://ror.org/0409c3995" + }, + { + "label": "Microbial Ecology", + "type": "child", + "id": "https://ror.org/053vv7851" + }, + { + "label": "Milieux environnementaux, transferts et interactions dans les hydrosystèmes et les sols", + "type": "child", + "id": "https://ror.org/0229z0679" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Station Biologique de Roscoff", + "type": "child", + "id": "https://ror.org/03s0pzj56" + }, + { + "label": "Station d’Écologie Théorique et Expérimentale", + "type": "child", + "id": "https://ror.org/05d6wfd23" + }, + { + "label": "Travaux et Recherches Archéologiques sur les Cultures, les Espaces et les Sociétés", + "type": "child", + "id": "https://ror.org/04pfm5x27" + }, + { + "label": "Éco-Anthropologie", + "type": "child", + "id": "https://ror.org/03x0yny97" + }, + { + "label": "Écologie Marine Tropicale des Océans Pacifique et Indien", + "type": "child", + "id": "https://ror.org/05kxt4539" + }, + { + "label": "Écologie et Biologie des Interactions", + "type": "child", + "id": "https://ror.org/051f3f740" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01q7cq281.json b/test-relationship-delete-v2/updates/01q7cq281.json new file mode 100644 index 000000000..253a54168 --- /dev/null +++ b/test-relationship-delete-v2/updates/01q7cq281.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3106672, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.65518, + "lng": -4.72372, + "name": "Valladolid" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q14866877" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.472213.1" + ], + "preferred": "grid.472213.1" + } + ], + "id": "https://ror.org/01q7cq281", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://wikimedia.es" + } + ], + "names": [ + { + "value": "Wikimedia España", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01qgecw57.json b/test-relationship-delete-v2/updates/01qgecw57.json new file mode 100644 index 000000000..e256bf59d --- /dev/null +++ b/test-relationship-delete-v2/updates/01qgecw57.json @@ -0,0 +1,102 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2001, + "external_ids": [ + { + "all": [ + "0000 0004 0399 4960" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4969002" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.415172.4" + ], + "preferred": "grid.415172.4", + "type": "grid" + } + ], + "id": "https://ror.org/01qgecw57", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/bristol-royal-hospital-for-children/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Bristol_Royal_Hospital_for_Children" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.457706, + "lng": -2.597261, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bristol Royal Hospital for Children" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bristol Children's Hospital" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bristol Royal Hospital for Sick Children" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BRHC" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01qv3ez98.json b/test-relationship-delete-v2/updates/01qv3ez98.json new file mode 100644 index 000000000..d9e2f8e20 --- /dev/null +++ b/test-relationship-delete-v2/updates/01qv3ez98.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2163355, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -42.87936, + "lng": 147.32941, + "name": "Hobart" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q64085930" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.510152.2" + ], + "preferred": "grid.510152.2" + } + ], + "id": "https://ror.org/01qv3ez98", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.csiro.au/en/about/facilities-collections/Collections/ANACC" + } + ], + "names": [ + { + "value": "Australian National Algae Culture Collection", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ANACC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Commonwealth Scientific and Industrial Research Organisation", + "type": "parent", + "id": "https://ror.org/03qn8fb07" + } + ], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01r9z8p25.json b/test-relationship-delete-v2/updates/01r9z8p25.json new file mode 100644 index 000000000..a06d2d836 --- /dev/null +++ b/test-relationship-delete-v2/updates/01r9z8p25.json @@ -0,0 +1,126 @@ +{ + "locations": [ + { + "geonames_id": 2511401, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 28.4853, + "lng": -16.32014, + "name": "San Cristóbal de La Laguna" + } + } + ], + "established": 1927, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2106 0879" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100015528" + ], + "preferred": "100015528" + }, + { + "type": "wikidata", + "all": [ + "Q539881" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.10041.34" + ], + "preferred": "grid.10041.34" + } + ], + "id": "https://ror.org/01r9z8p25", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ull.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_La_Laguna" + } + ], + "names": [ + { + "value": "Universidad de La Laguna", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of San Fernando de La Laguna", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidade de La Laguna", + "types": [ + "label" + ], + "lang": "gl" + }, + { + "value": "University of La Laguna", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ULL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Hospital Universitario de Canarias", + "type": "related", + "id": "https://ror.org/05qndj312" + }, + { + "label": "Instituto de Astrofísica de Canarias", + "type": "child", + "id": "https://ror.org/03cmntr54" + }, + { + "label": "Hospital Universitario Nuestra Señora de Candelaria", + "type": "related", + "id": "https://ror.org/005a3p084" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01v2rax29.json b/test-relationship-delete-v2/updates/01v2rax29.json new file mode 100644 index 000000000..a57cedfac --- /dev/null +++ b/test-relationship-delete-v2/updates/01v2rax29.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.502774.3" + ], + "preferred": "grid.502774.3" + } + ], + "id": "https://ror.org/01v2rax29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://designforall.org" + } + ], + "names": [ + { + "value": "Design for All Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01v376g59.json b/test-relationship-delete-v2/updates/01v376g59.json new file mode 100644 index 000000000..46d69b523 --- /dev/null +++ b/test-relationship-delete-v2/updates/01v376g59.json @@ -0,0 +1,123 @@ +{ + "locations": [ + { + "geonames_id": 2953436, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.22683, + "lng": 8.61816, + "name": "Bad Homburg" + } + } + ], + "established": 1912, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0451 3831" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q705361" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462236.7" + ], + "preferred": "grid.462236.7" + } + ], + "id": "https://ror.org/01v376g59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fresenius.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Fresenius_(company)" + } + ], + "names": [ + { + "value": "Fresenius (Germany)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fresenius SE & Co. KGaA", + "types": [ + "label" + ], + "lang": "de" + } + ], + "relationships": [ + { + "label": "Fresenius Kabi (China)", + "type": "child", + "id": "https://ror.org/03r86y726" + }, + { + "label": "Fresenius Kabi (Czechia)", + "type": "child", + "id": "https://ror.org/034bznj45" + }, + { + "label": "Fresenius Kabi (India)", + "type": "child", + "id": "https://ror.org/01axjm922" + }, + { + "label": "Fresenius Kabi (Netherlands)", + "type": "child", + "id": "https://ror.org/030yesb42" + }, + { + "label": "Fresenius Kabi (South Korea)", + "type": "child", + "id": "https://ror.org/0050zy157" + }, + { + "label": "Fresenius Kabi (United States)", + "type": "child", + "id": "https://ror.org/04rzhfa50" + }, + { + "label": "Fresenius Medical Care (India)", + "type": "child", + "id": "https://ror.org/04z11gw67" + }, + { + "label": "Fresenius Medical Care (United States)", + "type": "child", + "id": "https://ror.org/02avws951" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01vbgty78.json b/test-relationship-delete-v2/updates/01vbgty78.json new file mode 100644 index 000000000..ec395d47d --- /dev/null +++ b/test-relationship-delete-v2/updates/01vbgty78.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 3109402, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.49109, + "lng": 2.14079, + "name": "Cerdanyola del Vallès" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1793 4897" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5918072" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.450286.d" + ], + "preferred": "grid.450286.d" + } + ], + "id": "https://ror.org/01vbgty78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ice.csic.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Institut_de_Ci%C3%A8ncies_de_l'Espai" + } + ], + "names": [ + { + "value": "Institute of Space Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut de Ciències de l'Espai", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Instituto de Ciencias del Espacio", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "ICE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Consejo Superior de Investigaciones Científicas", + "type": "parent", + "id": "https://ror.org/02gfc7t72" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01w151e64.json b/test-relationship-delete-v2/updates/01w151e64.json new file mode 100644 index 000000000..0dea4734a --- /dev/null +++ b/test-relationship-delete-v2/updates/01w151e64.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1808, + "external_ids": [ + { + "all": [ + "0000 0004 0399 4581" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q22000442" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.415175.3" + ], + "preferred": "grid.415175.3", + "type": "grid" + } + ], + "id": "https://ror.org/01w151e64", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/bristol-eye-hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Bristol_Eye_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.458556, + "lng": -2.593328, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bristol Eye Hospital" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BEH" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01xc6bj88.json b/test-relationship-delete-v2/updates/01xc6bj88.json new file mode 100644 index 000000000..cc58088a6 --- /dev/null +++ b/test-relationship-delete-v2/updates/01xc6bj88.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2944388, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 53.07582, + "lng": 8.80717, + "name": "Bremen" + } + } + ], + "established": 1950, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9457 1808" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1665037" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.425971.c" + ], + "preferred": "grid.425971.c" + } + ], + "id": "https://ror.org/01xc6bj88", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iwt-bremen.de" + } + ], + "names": [ + { + "value": "Leibniz-Institut für Werkstofforientierte Technologien - IWT", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Leibniz Institute for Materials Engineering", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Leibniz-Institut für Werkstofforientierte Technologien", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "IWT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01y8j9r24.json b/test-relationship-delete-v2/updates/01y8j9r24.json new file mode 100644 index 000000000..ee677fa2b --- /dev/null +++ b/test-relationship-delete-v2/updates/01y8j9r24.json @@ -0,0 +1,110 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.457079.8" + ], + "preferred": "grid.457079.8" + } + ], + "id": "https://ror.org/01y8j9r24", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.dr4.cnrs.fr/" + } + ], + "names": [ + { + "value": "Délégation Ile-de-France Sud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DR04", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Centre de Génétique Moléculaire", + "type": "child", + "id": "https://ror.org/052ahj806" + }, + { + "label": "Heteroelements and Coordination Chemistry Lab", + "type": "child", + "id": "https://ror.org/02cf97417" + }, + { + "label": "Institut de Biochimie et Biophysique Moléculaire et Cellulaire", + "type": "child", + "id": "https://ror.org/006je8v76" + }, + { + "label": "Laboratoire Archéomatériaux et Prévision de l'Altération", + "type": "child", + "id": "https://ror.org/01xpreq28" + }, + { + "label": "Laboratoire Structure et Dynamique par Résonance Magnétique", + "type": "child", + "id": "https://ror.org/0378sf364" + }, + { + "label": "Laboratoire de Neurobiologie Cellulaire et Moléculaire", + "type": "child", + "id": "https://ror.org/0452rtt80" + }, + { + "label": "Laboratoire de Virologie Moléculaire et Structurale", + "type": "child", + "id": "https://ror.org/01dz5cg19" + }, + { + "label": "Service Interdisciplinaire sur les Systèmes Moléculaires et les Matériaux", + "type": "child", + "id": "https://ror.org/00enct420" + }, + { + "label": "Signalisation, Neurobiologie et Cancer", + "type": "child", + "id": "https://ror.org/01cmdpn82" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01ythxj32.json b/test-relationship-delete-v2/updates/01ythxj32.json new file mode 100644 index 000000000..904c3d068 --- /dev/null +++ b/test-relationship-delete-v2/updates/01ythxj32.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1957, + "external_ids": [ + { + "all": [ + "0000 0001 2219 916X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100017115" + ], + "preferred": "100017115", + "type": "fundref" + }, + { + "all": [ + "Q782116" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.261277.7" + ], + "preferred": "grid.261277.7", + "type": "grid" + } + ], + "id": "https://ror.org/01ythxj32", + "links": [ + { + "type": "website", + "value": "http://wwwp.oakland.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Oakland_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.68059, + "lng": -83.13382, + "name": "Rochester" + }, + "geonames_id": 5007400 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Oakland University" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "OU" + } + ], + "relationships": [ + { + "label": "Beaumont Hospital, Royal Oak", + "type": "related", + "id": "https://ror.org/03artm726" + }, + { + "label": "Beaumont Hospital, Troy", + "type": "related", + "id": "https://ror.org/05x9ffc66" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/01zvsh948.json b/test-relationship-delete-v2/updates/01zvsh948.json new file mode 100644 index 000000000..52edfb698 --- /dev/null +++ b/test-relationship-delete-v2/updates/01zvsh948.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 3128026, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1793 9217" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q571118" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.482032.f" + ], + "preferred": "grid.482032.f" + } + ], + "id": "https://ror.org/01zvsh948", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://osha.europa.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/European_Agency_for_Safety_and_Health_at_Work" + } + ], + "names": [ + { + "value": "European Agency for Safety and Health at Work", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Agencia Europea para la Seguridad y la Salud en el Trabajo", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "EU-OSHA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "European Union", + "type": "parent", + "id": "https://ror.org/019w4f821" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/020q9r015.json b/test-relationship-delete-v2/updates/020q9r015.json new file mode 100644 index 000000000..f0485e22d --- /dev/null +++ b/test-relationship-delete-v2/updates/020q9r015.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": 1950, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100018939" + ], + "preferred": "100018939" + }, + { + "type": "grid", + "all": [ + "grid.466622.2" + ], + "preferred": "grid.466622.2" + }, + { + "type": "wikidata", + "all": [ + "Q30263765" + ], + "preferred": "Q30263765" + } + ], + "id": "https://ror.org/020q9r015", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cbma.com.cn" + } + ], + "names": [ + { + "value": "China Building Materials Academy Co., Ltd.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "China Building Materials Academy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中国建筑材料科学研究", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "CBMA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0211r2z47.json b/test-relationship-delete-v2/updates/0211r2z47.json new file mode 100644 index 000000000..f6a1afd6c --- /dev/null +++ b/test-relationship-delete-v2/updates/0211r2z47.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.469497.1" + ], + "preferred": "grid.469497.1" + }, + { + "type": "wikidata", + "all": [ + "Q30264842" + ], + "preferred": "Q30264842" + } + ], + "id": "https://ror.org/0211r2z47", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ismo.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Institut des Sciences Moléculaires d'Orsay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Molecular Sciences of Orsay", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ISMO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/021xexe56.json b/test-relationship-delete-v2/updates/021xexe56.json new file mode 100644 index 000000000..857c9636a --- /dev/null +++ b/test-relationship-delete-v2/updates/021xexe56.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1927, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0623 5425" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462747.4" + ], + "preferred": "grid.462747.4" + } + ], + "id": "https://ror.org/021xexe56", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.lac.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratoire Aimé Cotton", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Aimé Cotton Laboratory", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LAC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/022rydv31.json b/test-relationship-delete-v2/updates/022rydv31.json new file mode 100644 index 000000000..84d900457 --- /dev/null +++ b/test-relationship-delete-v2/updates/022rydv31.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2964574, + "geonames_details": { + "country_code": "IE", + "country_name": "Ireland", + "lat": 53.33306, + "lng": -6.24889, + "name": "Dublin" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0510 4503" + ], + "preferred": "0000 0004 0510 4503" + }, + { + "type": "fundref", + "all": [ + "501100012354" + ], + "preferred": "501100012354" + }, + { + "type": "wikidata", + "all": [ + "Q56278286" + ], + "preferred": "Q56278286" + } + ], + "id": "https://ror.org/022rydv31", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fisheriesireland.ie" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Inland_Fisheries_Ireland" + } + ], + "names": [ + { + "value": "Inland Fisheries Ireland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fishing in Ireland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Angling Ireland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Iascach Intíre Éireann", + "types": [ + "label" + ], + "lang": "ga" + }, + { + "value": "IFI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/023hj4e57.json b/test-relationship-delete-v2/updates/023hj4e57.json new file mode 100644 index 000000000..b80564935 --- /dev/null +++ b/test-relationship-delete-v2/updates/023hj4e57.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7677 6809" + ], + "preferred": "0000 0004 7677 6809" + } + ], + "id": "https://ror.org/023hj4e57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.barcelonabeta.org" + } + ], + "names": [ + { + "value": "Barcelonaβeta Brain Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Barcelonabeta Brain Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BBRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "withdrawn", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/023kaz366.json b/test-relationship-delete-v2/updates/023kaz366.json new file mode 100644 index 000000000..9ab611b5c --- /dev/null +++ b/test-relationship-delete-v2/updates/023kaz366.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3646738, + "geonames_details": { + "country_code": "VE", + "country_name": "Venezuela", + "lat": 10.48801, + "lng": -66.87919, + "name": "Caracas" + } + } + ], + "established": 1987, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5901 7747" + ], + "preferred": "0000 0004 5901 7747" + }, + { + "type": "fundref", + "all": [ + "501100004246" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.469370.f" + ], + "preferred": "grid.469370.f" + }, + { + "type": "wikidata", + "all": [ + "Q29052472" + ], + "preferred": "Q29052472" + } + ], + "id": "https://ror.org/023kaz366", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.provita.org.ve" + } + ], + "names": [ + { + "value": "Provita", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02495e989.json b/test-relationship-delete-v2/updates/02495e989.json new file mode 100644 index 000000000..fa13fb4f4 --- /dev/null +++ b/test-relationship-delete-v2/updates/02495e989.json @@ -0,0 +1,125 @@ +{ + "locations": [ + { + "geonames_id": 2792073, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.66829, + "lng": 4.61443, + "name": "Louvain-la-Neuve" + } + } + ], + "established": 1425, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2294 713X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100007355", + "100007370", + "501100005041", + "501100008135", + "501100005043" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q378134" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.7942.8" + ], + "preferred": "grid.7942.8" + } + ], + "id": "https://ror.org/02495e989", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uclouvain.be" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Universit%C3%A9_catholique_de_Louvain" + } + ], + "names": [ + { + "value": "UCLouvain", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Université catholique de Belgique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université catholique de Louvain", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Catholic University of Louvain", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UCL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "CHU Dinant Godinne UCL Namur", + "type": "related", + "id": "https://ror.org/00ntbvq76" + }, + { + "label": "Cliniques Universitaires Saint-Luc", + "type": "related", + "id": "https://ror.org/03s4khd80" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0259fwx54.json b/test-relationship-delete-v2/updates/0259fwx54.json new file mode 100644 index 000000000..5e5881c1c --- /dev/null +++ b/test-relationship-delete-v2/updates/0259fwx54.json @@ -0,0 +1,117 @@ +{ + "locations": [ + { + "geonames_id": 2886242, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.93333, + "lng": 6.95, + "name": "Cologne" + } + } + ], + "established": 1973, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2167 4053" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1204536" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.461646.7" + ], + "preferred": "grid.461646.7" + } + ], + "id": "https://ror.org/0259fwx54", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.zbmed.de" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/German_National_Library_of_Medicine" + } + ], + "names": [ + { + "value": "ZB MED - Information Centre for Life Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "German National Library of Medicine (ZB MED) - Information Centre for Life Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Deutsche Zentralbibliothek für Medizin (ZB MED) - Informationszentrum Lebenswissenschaften", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "German National Library of Medicine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Deutsche Zentralbibliothek für Medizin", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ZBMED - Informationszentrum Lebenswissenschaften", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "ZB MED", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/027a33v57.json b/test-relationship-delete-v2/updates/027a33v57.json new file mode 100644 index 000000000..42911341c --- /dev/null +++ b/test-relationship-delete-v2/updates/027a33v57.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1906, + "external_ids": [ + { + "all": [ + "0000 0004 0399 5138" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q22909562" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.415174.2" + ], + "preferred": "grid.415174.2", + "type": "grid" + } + ], + "id": "https://ror.org/027a33v57", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/university-of-bristol-dental-hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Bristol_Dental_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.458673, + "lng": -2.595141, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University Of Bristol Dental Hospital" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/027t90e82.json b/test-relationship-delete-v2/updates/027t90e82.json new file mode 100644 index 000000000..764da1cb9 --- /dev/null +++ b/test-relationship-delete-v2/updates/027t90e82.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 620127, + "geonames_details": { + "country_code": "BY", + "country_name": "Belarus", + "lat": 55.1904, + "lng": 30.2049, + "name": "Vitebsk" + } + } + ], + "established": 1924, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5928 8379" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q4112332" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.445309.f" + ], + "preferred": "grid.445309.f" + } + ], + "id": "https://ror.org/027t90e82", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vsavm.by" + } + ], + "names": [ + { + "value": "Vitebsk State Academy of Veterinary Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Віцебская дзяржаўная акадэмія ветэрынарнай медыцыны", + "types": [ + "label" + ], + "lang": "be" + }, + { + "value": "VGAVM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/027yspv17.json b/test-relationship-delete-v2/updates/027yspv17.json new file mode 100644 index 000000000..2adeaad95 --- /dev/null +++ b/test-relationship-delete-v2/updates/027yspv17.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3109718, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.46472, + "lng": -3.80444, + "name": "Santander" + } + } + ], + "established": 1973, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30292337" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.438705.d" + ], + "preferred": "grid.438705.d" + } + ], + "id": "https://ror.org/027yspv17", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.tinamenor.es/" + } + ], + "names": [ + { + "value": "Tinamenor (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/028696h48.json b/test-relationship-delete-v2/updates/028696h48.json new file mode 100644 index 000000000..46214c521 --- /dev/null +++ b/test-relationship-delete-v2/updates/028696h48.json @@ -0,0 +1,67 @@ +{ + "locations": [ + { + "geonames_id": 2761369, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.20849, + "lng": 16.37208, + "name": "Vienna" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/028696h48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bioimaging-austria.at" + } + ], + "names": [ + { + "value": "Austrian BioImaging/CMI", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Austrian BioImaging Correlated Multimodal Imaging (CMI)", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Vienna BioCenter Core Facilities", + "type": "parent", + "id": "https://ror.org/01w64ht88" + }, + { + "label": "Euro-BioImaging ERIC", + "type": "related", + "id": "https://ror.org/05d78xc36" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0289cxp23.json b/test-relationship-delete-v2/updates/0289cxp23.json new file mode 100644 index 000000000..579e0d50f --- /dev/null +++ b/test-relationship-delete-v2/updates/0289cxp23.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2510409, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.8581, + "lng": -4.02263, + "name": "Toledo" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1795 0563" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.413514.6" + ], + "preferred": "grid.413514.6" + } + ], + "id": "https://ror.org/0289cxp23", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cht.es/cht/cm/cht/tkContent?pgseed=1493207263184&idContent=6060&locale=es_ES&textOnly=false" + } + ], + "names": [ + { + "value": "Hospital Virgen de la Salud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CHT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Complejo Hospitalario de Toledo", + "type": "parent", + "id": "https://ror.org/04q4ppz72" + } + ], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/028rypz17.json b/test-relationship-delete-v2/updates/028rypz17.json new file mode 100644 index 000000000..5794a9972 --- /dev/null +++ b/test-relationship-delete-v2/updates/028rypz17.json @@ -0,0 +1,134 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1971, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2171 2558" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100007486" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1480643" + ], + "preferred": "Q1480643" + }, + { + "type": "grid", + "all": [ + "grid.5842.b" + ], + "preferred": "grid.5842.b" + } + ], + "id": "https://ror.org/028rypz17", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.u-psud.fr/en/index.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Paris-Sud" + } + ], + "names": [ + { + "value": "University of Paris-Sud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Paris XI", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université Paris-Sud", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "Universitat de París Sud", + "types": [ + "label" + ], + "lang": "ca" + } + ], + "relationships": [ + { + "label": "Hôpital Marie Lannelongue", + "type": "related", + "id": "https://ror.org/02ndr3r66" + }, + { + "label": "Biology of Extremophiles Laboratory", + "type": "child", + "id": "https://ror.org/036mest28" + }, + { + "label": "Genetic Stability and Oncogenesis", + "type": "child", + "id": "https://ror.org/055s8hs34" + }, + { + "label": "Geosciences Paris Sud", + "type": "child", + "id": "https://ror.org/03s92mv58" + }, + { + "label": "Laboratory Signaling and Cardiovascular Pathophysiology", + "type": "child", + "id": "https://ror.org/04bkzce69" + }, + { + "label": "University of Paris-Saclay", + "type": "successor", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "inactive", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/029gxzx35.json b/test-relationship-delete-v2/updates/029gxzx35.json new file mode 100644 index 000000000..24d4cf0bc --- /dev/null +++ b/test-relationship-delete-v2/updates/029gxzx35.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3002650, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.78889, + "lng": 2.27078, + "name": "Le Plessis-Robinson" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0266 7990" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.417823.b" + ], + "preferred": "grid.417823.b" + } + ], + "id": "https://ror.org/029gxzx35", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ccml.fr/en/index_en.php" + } + ], + "names": [ + { + "value": "Centre Chirurgical Marie Lannelongue", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CCML", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02ag0aq56.json b/test-relationship-delete-v2/updates/02ag0aq56.json new file mode 100644 index 000000000..763d3dfdf --- /dev/null +++ b/test-relationship-delete-v2/updates/02ag0aq56.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2509402, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 38.61365, + "lng": -1.11468, + "name": "Yecla" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8337 666X" + ], + "preferred": "0000 0004 8337 666X" + }, + { + "type": "grid", + "all": [ + "grid.432405.4" + ], + "preferred": "grid.432405.4" + } + ], + "id": "https://ror.org/02ag0aq56", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cetem.es" + } + ], + "names": [ + { + "value": "Centro Tecnológico del Mueble y la Madera de la Región de Murcia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Technological Centre of Furniture and Wood of the Region of Murcia", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CETEM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02ahxdd04.json b/test-relationship-delete-v2/updates/02ahxdd04.json new file mode 100644 index 000000000..77c1f5c64 --- /dev/null +++ b/test-relationship-delete-v2/updates/02ahxdd04.json @@ -0,0 +1,115 @@ +{ + "locations": [ + { + "geonames_id": 4994358, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.96336, + "lng": -85.66809, + "name": "Grand Rapids" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0406 3236" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100001347" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q7575297" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.416230.2" + ], + "preferred": "grid.416230.2" + } + ], + "id": "https://ror.org/02ahxdd04", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.spectrumhealth.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Spectrum_Health" + } + ], + "names": [ + { + "value": "Spectrum Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spectrum Health System", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Butterworth Hospital", + "type": "child", + "id": "https://ror.org/05x643e19" + }, + { + "label": "Helen DeVos Children's Hospital", + "type": "child", + "id": "https://ror.org/03bk8p931" + }, + { + "label": "Spectrum Health Blodgett Hospital", + "type": "child", + "id": "https://ror.org/00qy68j92" + }, + { + "label": "Spectrum Health Reed City Hospital", + "type": "child", + "id": "https://ror.org/04xcq9q51" + }, + { + "label": "Zeeland Community Hospital", + "type": "child", + "id": "https://ror.org/053jm8142" + } + ], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02am8se85.json b/test-relationship-delete-v2/updates/02am8se85.json new file mode 100644 index 000000000..303fdcd46 --- /dev/null +++ b/test-relationship-delete-v2/updates/02am8se85.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 2859147, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.25, + "lng": 11.56667, + "name": "Oberschleißheim" + } + } + ], + "established": 1979, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.506439.d" + ], + "preferred": "grid.506439.d" + } + ], + "id": "https://ror.org/02am8se85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.schweine.vetmed.uni-muenchen.de/index.html" + } + ], + "names": [ + { + "value": "Klinik für Schweine", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02aqatz67.json b/test-relationship-delete-v2/updates/02aqatz67.json new file mode 100644 index 000000000..f712847d9 --- /dev/null +++ b/test-relationship-delete-v2/updates/02aqatz67.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 1790492, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 27.85, + "lng": 112.9, + "name": "Xiangtan" + } + } + ], + "established": 1936, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6844 1494" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q55454149" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.497222.8" + ], + "preferred": "grid.497222.8" + } + ], + "id": "https://ror.org/02aqatz67", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.xemc.com.cn" + } + ], + "names": [ + { + "value": "Xiangtan Electric Manufacturing Group (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Xiangtan Electric Manufacturing Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Xiangtan Electric Manufacturing Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Xiangtan Electric Manufacturing Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "湘电集团", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "湘潭电机股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "XEMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02by8jy67.json b/test-relationship-delete-v2/updates/02by8jy67.json new file mode 100644 index 000000000..d02832a47 --- /dev/null +++ b/test-relationship-delete-v2/updates/02by8jy67.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3435910, + "geonames_details": { + "country_code": "AR", + "country_name": "Argentina", + "lat": -34.61315, + "lng": -58.37723, + "name": "Buenos Aires" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.502315.0" + ], + "preferred": "grid.502315.0" + }, + { + "type": "wikidata", + "all": [ + "Q61931966" + ], + "preferred": "Q61931966" + } + ], + "id": "https://ror.org/02by8jy67", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.typa.org.ar" + } + ], + "names": [ + { + "value": "Fundación TyPA", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Teoría y Práctica de las Artes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TyPA Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02byv2846.json b/test-relationship-delete-v2/updates/02byv2846.json new file mode 100644 index 000000000..aaf5c165b --- /dev/null +++ b/test-relationship-delete-v2/updates/02byv2846.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 9697" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463850.c" + ], + "preferred": "grid.463850.c" + } + ], + "id": "https://ror.org/02byv2846", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.fast.u-psud.fr" + } + ], + "names": [ + { + "value": "Fluides, Automatique et Systèmes Thermiques", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FAST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02chvqy57.json b/test-relationship-delete-v2/updates/02chvqy57.json new file mode 100644 index 000000000..3500ba51f --- /dev/null +++ b/test-relationship-delete-v2/updates/02chvqy57.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 2972315, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.60426, + "lng": 1.44367, + "name": "Toulouse" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0384 4620" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q51782431" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503277.4" + ], + "preferred": "grid.503277.4" + } + ], + "id": "https://ror.org/02chvqy57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.legos.omp.eu" + } + ], + "names": [ + { + "value": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory of Space Geophysical and Oceanographic Studies", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LEGOS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Centre National d'Études Spatiales", + "type": "parent", + "id": "https://ror.org/04h1h0y33" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "parent", + "id": "https://ror.org/02v6kpv12" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02cptmd52.json b/test-relationship-delete-v2/updates/02cptmd52.json new file mode 100644 index 000000000..15d1866b8 --- /dev/null +++ b/test-relationship-delete-v2/updates/02cptmd52.json @@ -0,0 +1,73 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51785613" + ], + "preferred": "Q51785613" + } + ], + "id": "https://ror.org/02cptmd52", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://agronomie.versailles-grignon.hub.inrae.fr" + } + ], + "names": [ + { + "value": "Agronomie", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02cr20t12.json b/test-relationship-delete-v2/updates/02cr20t12.json new file mode 100644 index 000000000..869e1e8c9 --- /dev/null +++ b/test-relationship-delete-v2/updates/02cr20t12.json @@ -0,0 +1,110 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1712, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q750403" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.432858.0" + ], + "preferred": "grid.432858.0" + } + ], + "id": "https://ror.org/02cr20t12", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bne.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Biblioteca_Nacional_de_Espa%C3%B1a" + } + ], + "names": [ + { + "value": "Biblioteca Nacional de España", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Palace Public Library", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biblioteca Pública de Palacio", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biblioteca Nacional d'Espanya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Espainiako Liburutegi Nazionala", + "types": [ + "label" + ], + "lang": "eu" + }, + { + "value": "National Library of Spain", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "BNE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02cte4b68.json b/test-relationship-delete-v2/updates/02cte4b68.json new file mode 100644 index 000000000..da4eb4ad5 --- /dev/null +++ b/test-relationship-delete-v2/updates/02cte4b68.json @@ -0,0 +1,596 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0626 358X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100017217" + ], + "preferred": "501100017217" + }, + { + "type": "wikidata", + "all": [ + "Q3152386" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457012.5" + ], + "preferred": "grid.457012.5" + } + ], + "id": "https://ror.org/02cte4b68", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/inc/index.htm" + } + ], + "names": [ + { + "value": "Institut de Chimie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "CNRT Matériaux", + "type": "child", + "id": "https://ror.org/05jw85995" + }, + { + "label": "Catalysis and Spectrochemistry Laboratory", + "type": "child", + "id": "https://ror.org/01gan4k05" + }, + { + "label": "Centre de Recherches sur les Macromolécules Végétales", + "type": "child", + "id": "https://ror.org/0003ege03" + }, + { + "label": "Ceramic Synthesis and Functionalization Laboratory", + "type": "child", + "id": "https://ror.org/04nd4kk51" + }, + { + "label": "Chemistry And Interdisciplinarité, Synthesis, Analyze, Modeling", + "type": "child", + "id": "https://ror.org/04ysg2a58" + }, + { + "label": "Chimie de la Matière Condensée de Paris", + "type": "child", + "id": "https://ror.org/028ta1f94" + }, + { + "label": "Chimie et Biologie des Membranes et des Nanoobjects", + "type": "child", + "id": "https://ror.org/03jtzcc30" + }, + { + "label": "Conditions Extrêmes et Matériaux Haute Température et Irradiation", + "type": "child", + "id": "https://ror.org/02zs48f23" + }, + { + "label": "Département de Chimie Moléculaire", + "type": "child", + "id": "https://ror.org/010rs2a38" + }, + { + "label": "East Paris Institute of Chemistry and Materials Science", + "type": "child", + "id": "https://ror.org/04c3cen15" + }, + { + "label": "Gulliver", + "type": "child", + "id": "https://ror.org/058z3vf87" + }, + { + "label": "Institut Charles Gerhardt", + "type": "child", + "id": "https://ror.org/028wq3277" + }, + { + "label": "Institut Charles Sadron", + "type": "child", + "id": "https://ror.org/05whrjc31" + }, + { + "label": "Institut Européen de Chimie et Biologie", + "type": "child", + "id": "https://ror.org/04agqs597" + }, + { + "label": "Institut Européen des Membranes", + "type": "child", + "id": "https://ror.org/04nmj9827" + }, + { + "label": "Institut Galien Paris Sud", + "type": "child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut Jean Lamour", + "type": "child", + "id": "https://ror.org/05k1smh27" + }, + { + "label": "Institut Lavoisier de Versailles", + "type": "child", + "id": "https://ror.org/05mzd8v39" + }, + { + "label": "Institut Parisien de Chimie Moléculaire", + "type": "child", + "id": "https://ror.org/04qwfwm19" + }, + { + "label": "Institut de Chimie Moléculaire de Grenoble", + "type": "child", + "id": "https://ror.org/04g26vc28" + }, + { + "label": "Institut de Chimie Radicalaire", + "type": "child", + "id": "https://ror.org/000d5zy28" + }, + { + "label": "Institut de Chimie de Nice", + "type": "child", + "id": "https://ror.org/000pvc513" + }, + { + "label": "Institut de Chimie de Strasbourg", + "type": "child", + "id": "https://ror.org/00se7bf12" + }, + { + "label": "Institut de Chimie de la Matière Condensée de Bordeaux", + "type": "child", + "id": "https://ror.org/01nw6qk38" + }, + { + "label": "Institut de Chimie des Milieux et des Matériaux de Poitiers", + "type": "child", + "id": "https://ror.org/001n7ee52" + }, + { + "label": "Institut de Chimie et Biochimie Moléculaires et Supramoléculaires", + "type": "child", + "id": "https://ror.org/00gj33s30" + }, + { + "label": "Institut de Recherche de Chimie Paris", + "type": "child", + "id": "https://ror.org/02s6m8n84" + }, + { + "label": "Institut de Science et d'Ingénierie Supramoléculaires", + "type": "child", + "id": "https://ror.org/00xts7d02" + }, + { + "label": "Institut de Sciences des Matériaux de Mulhouse", + "type": "child", + "id": "https://ror.org/012wxdw12" + }, + { + "label": "Institut des Biomolécules Max Mousseron", + "type": "child", + "id": "https://ror.org/05d1e6v30" + }, + { + "label": "Institut des Matériaux Jean Rouxel", + "type": "child", + "id": "https://ror.org/00cqpd580" + }, + { + "label": "Institut des Molécules et Matériaux du Mans", + "type": "child", + "id": "https://ror.org/03a9gd656" + }, + { + "label": "Institut des Sciences Analytiques et de Physico-Chimie pour l'Environnement et les Matériaux", + "type": "child", + "id": "https://ror.org/00222yk13" + }, + { + "label": "Institut des Sciences Chimiques de Rennes", + "type": "child", + "id": "https://ror.org/00adwkx90" + }, + { + "label": "Institut des Sciences Moléculaires de Marseille", + "type": "child", + "id": "https://ror.org/05xr3b330" + }, + { + "label": "Institut des Sciences et Technologies Moléculaires d'Angers", + "type": "child", + "id": "https://ror.org/039yyx623" + }, + { + "label": "Institute for the Separation Chemistry in Marcoule", + "type": "child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Institute of Analytical Sciences", + "type": "child", + "id": "https://ror.org/03s5z5x70" + }, + { + "label": "Institute of Chemistry and Processes for Energy, Environment and Health", + "type": "child", + "id": "https://ror.org/02tn0tm63" + }, + { + "label": "Institute of Chemistry of Clermont-Ferrand", + "type": "child", + "id": "https://ror.org/045qszf23" + }, + { + "label": "Institute of Molecular Chemistry Reims", + "type": "child", + "id": "https://ror.org/03c0nx407" + }, + { + "label": "Institute of Molecular Sciences", + "type": "child", + "id": "https://ror.org/00r8jkk54" + }, + { + "label": "Institute of Organic and Analytical Chemistry", + "type": "child", + "id": "https://ror.org/03ywn7d79" + }, + { + "label": "Institute of Researches on Catalysis and Environment in Lyon", + "type": "child", + "id": "https://ror.org/04fy20a51" + }, + { + "label": "Interfaces Traitements Organisation et Dynamique des Systèmes", + "type": "child", + "id": "https://ror.org/03edms940" + }, + { + "label": "Interuniversity Center of Materials Research and Engineering", + "type": "child", + "id": "https://ror.org/03xhggy77" + }, + { + "label": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "type": "child", + "id": "https://ror.org/00wwxk695" + }, + { + "label": "Laboratoire Chimie Electrochimie Moléculaires et Chimie Analytique", + "type": "child", + "id": "https://ror.org/02bhhaf78" + }, + { + "label": "Laboratoire Chimie de l'Environnement", + "type": "child", + "id": "https://ror.org/02pr0xw82" + }, + { + "label": "Laboratoire Hydrazines et Composés Energétiques Polyazotés", + "type": "child", + "id": "https://ror.org/01racwh88" + }, + { + "label": "Laboratoire Hétérochimie Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/02v2svk17" + }, + { + "label": "Laboratoire Interfaces et Systèmes Électrochimiques", + "type": "child", + "id": "https://ror.org/00jb20a14" + }, + { + "label": "Chimie Moléculaire, Macromoléculaire, Matériaux", + "type": "child", + "id": "https://ror.org/007sc9r91" + }, + { + "label": "Laboratoire d'Electrochimie Moléculaire", + "type": "child", + "id": "https://ror.org/03atapr58" + }, + { + "label": "Laboratoire de Chimie", + "type": "child", + "id": "https://ror.org/02gaw1s20" + }, + { + "label": "Laboratoire de Chimie Moléculaire et Thioorganique", + "type": "child", + "id": "https://ror.org/03q7p3t30" + }, + { + "label": "Laboratoire de Chimie Physique - Matière et Rayonnement", + "type": "child", + "id": "https://ror.org/03z20vp15" + }, + { + "label": "Laboratoire de Chimie Physique et Microbiologie pour l'Environnement", + "type": "child", + "id": "https://ror.org/03nknpw16" + }, + { + "label": "Laboratoire de Chimie Théorique", + "type": "child", + "id": "https://ror.org/00tmb7y09" + }, + { + "label": "Laboratoire de Chimie de Coordination", + "type": "child", + "id": "https://ror.org/01rtzw447" + }, + { + "label": "Laboratoire de Chimie des Polymères Organiques", + "type": "child", + "id": "https://ror.org/056n05x05" + }, + { + "label": "Laboratoire de chimie des processus biologiques", + "type": "child", + "id": "https://ror.org/02fv42846" + }, + { + "label": "Laboratoire de Chimie et Biochimie Pharmacologiques et Toxicologiques", + "type": "child", + "id": "https://ror.org/028qedy27" + }, + { + "label": "Laboratoire de Chimie et Biologie des Métaux", + "type": "child", + "id": "https://ror.org/02dd25k08" + }, + { + "label": "Laboratoire de Chimie et Physique Quantiques", + "type": "child", + "id": "https://ror.org/056g7f250" + }, + { + "label": "Laboratoire de Cristallographie et Sciences des Matériaux", + "type": "child", + "id": "https://ror.org/04310tc15" + }, + { + "label": "Laboratoire de Photophysique et Photochimie Supramoléculaires et Macromoléculaires", + "type": "child", + "id": "https://ror.org/03r7eh527" + }, + { + "label": "Laboratoire de Réactivité de Surface", + "type": "child", + "id": "https://ror.org/04vthwx70" + }, + { + "label": "Laboratoire de Réactivité et Chimie des Solides", + "type": "child", + "id": "https://ror.org/02m9cs548" + }, + { + "label": "Laboratoire de Spectroscopie pour les Interactions, la Réactivité et l'Environnement", + "type": "child", + "id": "https://ror.org/01tv2ca73" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire des Composites Thermo Structuraux", + "type": "child", + "id": "https://ror.org/02n2h9t24" + }, + { + "label": "Laboratoire des Interactions Moléculaires et Réactivité Chimique et Photochimique", + "type": "child", + "id": "https://ror.org/0171mae58" + }, + { + "label": "Laboratoire des Multimatériaux et Interfaces", + "type": "child", + "id": "https://ror.org/03cfem402" + }, + { + "label": "Laboratoire du Futur", + "type": "child", + "id": "https://ror.org/04qq0qp34" + }, + { + "label": "Laboratoire d’Archéologie Moléculaire et Structurale", + "type": "child", + "id": "https://ror.org/02ctqqq48" + }, + { + "label": "Laboratoire d’Electrochimie et de Physico-chimie des Matériaux et des Interfaces", + "type": "child", + "id": "https://ror.org/04axb9j69" + }, + { + "label": "Laboratory Glycochemistry, of Antimicrobials and Agroressources", + "type": "child", + "id": "https://ror.org/01gje7n16" + }, + { + "label": "Laboratory for Therapeutic Innovation", + "type": "child", + "id": "https://ror.org/02g4mxc89" + }, + { + "label": "Laboratory of Catalysis and Solid State Chemistry", + "type": "child", + "id": "https://ror.org/04vrqzz54" + }, + { + "label": "Laboratory of Design and Application of Bioactive Molecules", + "type": "child", + "id": "https://ror.org/00rh71z37" + }, + { + "label": "Laboratory of Organic Synthesis", + "type": "child", + "id": "https://ror.org/04qgfge56" + }, + { + "label": "Laboratory of Polymer Materials Engineering", + "type": "child", + "id": "https://ror.org/02160my55" + }, + { + "label": "Laboratory of Theoretical Biochemistry", + "type": "child", + "id": "https://ror.org/00nvjgv40" + }, + { + "label": "Materials and Physical Engineering Laboratory", + "type": "child", + "id": "https://ror.org/014n97s28" + }, + { + "label": "Miniaturisation pour la Synthèse, l'Analyse et la Protéomique", + "type": "child", + "id": "https://ror.org/02s4dmd79" + }, + { + "label": "Molécule aux Nanos-objets : Réactivité, Interactions et Spectroscopies", + "type": "child", + "id": "https://ror.org/02jkg8m11" + }, + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "child", + "id": "https://ror.org/00b4q1853" + }, + { + "label": "Nanosciences et Innovation pour les Matériaux, la Biomédecine et l'Énergie", + "type": "child", + "id": "https://ror.org/04vg26t07" + }, + { + "label": "Organic and Analytical Chemistry Laboratory", + "type": "child", + "id": "https://ror.org/04e8pda19" + }, + { + "label": "Paul Pascal Research Center", + "type": "child", + "id": "https://ror.org/043a21x04" + }, + { + "label": "PHENIX laboratory", + "type": "child", + "id": "https://ror.org/046htjf88" + }, + { + "label": "Polymères, Biopolymères, Surfaces", + "type": "child", + "id": "https://ror.org/04hd6wf14" + }, + { + "label": "Processus d'Activation Sélective par Transfert d'Énergie Uni-électronique ou Radiatif", + "type": "child", + "id": "https://ror.org/033t7vz72" + }, + { + "label": "Science et Ingénierie des Matériaux et Procédés", + "type": "child", + "id": "https://ror.org/00m7zca23" + }, + { + "label": "Science of Ceramic Processing and Surface Treatments", + "type": "child", + "id": "https://ror.org/044qpwz88" + }, + { + "label": "Sciences et Ingénierie de la Matière Molle", + "type": "child", + "id": "https://ror.org/03f0z1g15" + }, + { + "label": "Structure et Instabilité des Génomes", + "type": "child", + "id": "https://ror.org/05pchb838" + }, + { + "label": "Unité Matériaux et Transformations", + "type": "child", + "id": "https://ror.org/03q99v794" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Centre de Biophysique Moléculaire", + "type": "child", + "id": "https://ror.org/02dpqcy73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02dyaew97.json b/test-relationship-delete-v2/updates/02dyaew97.json new file mode 100644 index 000000000..1f0c272eb --- /dev/null +++ b/test-relationship-delete-v2/updates/02dyaew97.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1959, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9404 6552" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3214477" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462447.7" + ], + "preferred": "grid.462447.7" + } + ], + "id": "https://ror.org/02dyaew97", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lps.u-psud.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Laboratory_of_Solid_State_Physics" + } + ], + "names": [ + { + "value": "Laboratoire de physique des Solides", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory of Solid State Physics", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LPS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02dzjmc73.json b/test-relationship-delete-v2/updates/02dzjmc73.json new file mode 100644 index 000000000..30622f9ba --- /dev/null +++ b/test-relationship-delete-v2/updates/02dzjmc73.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 738329, + "geonames_details": { + "country_code": "TR", + "country_name": "Türkiye", + "lat": 41.02274, + "lng": 29.01366, + "name": "Scutari" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0495 1268" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q6063394" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.464712.2" + ], + "preferred": "grid.464712.2" + } + ], + "id": "https://ror.org/02dzjmc73", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uskudar.edu.tr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/%C3%9Csk%C3%BCdar_University" + } + ], + "names": [ + { + "value": "Üsküdar University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Üsküdar Üniversitesi", + "types": [ + "label" + ], + "lang": "tr" + } + ], + "relationships": [ + { + "label": "Npistanbul Brain Hospital", + "type": "related", + "id": "https://ror.org/00hhtwx28" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02eegq373.json b/test-relationship-delete-v2/updates/02eegq373.json new file mode 100644 index 000000000..652fdf548 --- /dev/null +++ b/test-relationship-delete-v2/updates/02eegq373.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9390 6995" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434664.7" + ], + "preferred": "grid.434664.7" + } + ], + "id": "https://ror.org/02eegq373", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ffe.es" + } + ], + "names": [ + { + "value": "Fundación de los Ferrocarriles Españoles", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spanish Railway Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02erddr56.json b/test-relationship-delete-v2/updates/02erddr56.json new file mode 100644 index 000000000..d0fd20a2b --- /dev/null +++ b/test-relationship-delete-v2/updates/02erddr56.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0382 1752" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q16511698" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462731.5" + ], + "preferred": "grid.462731.5" + } + ], + "id": "https://ror.org/02erddr56", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://laboratoire-albert-fert.cnrs-thales.fr" + } + ], + "names": [ + { + "value": "Laboratoire Albert Fert", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Albert Fert Laboratory", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Unité Mixte de Physique CNRS/Thales", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UMPhy", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Thales (France)", + "type": "parent", + "id": "https://ror.org/04emwm605" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02evec030.json b/test-relationship-delete-v2/updates/02evec030.json new file mode 100644 index 000000000..c02944ad4 --- /dev/null +++ b/test-relationship-delete-v2/updates/02evec030.json @@ -0,0 +1,111 @@ +{ + "locations": [ + { + "geonames_id": 2998324, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 50.63297, + "lng": 3.05858, + "name": "Lille" + } + } + ], + "established": 1963, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.466329.c" + ], + "preferred": "grid.466329.c" + }, + { + "type": "isni", + "all": [ + "0000 0004 7434 4981", + "0000 0001 2154 0303" + ], + "preferred": "0000 0004 7434 4981" + }, + { + "type": "wikidata", + "all": [ + "Q3117452" + ], + "preferred": "Q3117452" + } + ], + "id": "https://ror.org/02evec030", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.junia.com" + } + ], + "names": [ + { + "value": "JUNIA", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ISA Lille", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "JUNIA - Grande école d'ingénieurs", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Groupe Institut Supérieur d'Agriculture de Lille", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yncréa Hauts-de-France", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut Charles Viollette", + "type": "child", + "id": "https://ror.org/0018c4h73" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02feahw73.json b/test-relationship-delete-v2/updates/02feahw73.json new file mode 100644 index 000000000..7bfba249c --- /dev/null +++ b/test-relationship-delete-v2/updates/02feahw73.json @@ -0,0 +1,1808 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1939, + "external_ids": [ + { + "all": [ + "501100004794" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.4444.0" + ], + "preferred": "grid.4444.0", + "type": "grid" + }, + { + "all": [ + "0000 0001 2259 7504" + ], + "preferred": "0000 0001 2259 7504", + "type": "isni" + }, + { + "all": [ + "Q280413", + "Q39411466" + ], + "preferred": "Q280413", + "type": "wikidata" + } + ], + "id": "https://ror.org/02feahw73", + "links": [ + { + "type": "website", + "value": "https://www.cnrs.fr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Centre_national_de_la_recherche_scientifique" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CNRS" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Centre National de la Recherche Scientifique" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "French National Centre for Scientific Research" + } + ], + "relationships": [ + { + "label": "Cancer Research Center of Toulouse", + "type": "child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Centre Max Weber", + "type": "child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Recherches Critiques sur le Droit", + "type": "child", + "id": "https://ror.org/01rzzcx32" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "child", + "id": "https://ror.org/03yz3tz18" + }, + { + "label": "Direction Générale Déléguée à la Science", + "type": "child", + "id": "https://ror.org/043nepn57" + }, + { + "label": "Délégation Bretagne et Pays de la Loire", + "type": "child", + "id": "https://ror.org/02t220m45" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Georgia Tech-CNRS Laboratory", + "type": "child", + "id": "https://ror.org/00avmbz91" + }, + { + "label": "Image and Pervasive Access Laboratory", + "type": "child", + "id": "https://ror.org/00m3mb357" + }, + { + "label": "Institut Clément Ader", + "type": "child", + "id": "https://ror.org/040smqw14" + }, + { + "label": "Institut Français d'Études Anatoliennes", + "type": "child", + "id": "https://ror.org/0331qyx19" + }, + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "child", + "id": "https://ror.org/03fd77x13" + }, + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "child", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "child", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Institut Supérieur pour l'Étude des Religions et de la Laïcité", + "type": "child", + "id": "https://ror.org/01ap27310" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Chimie", + "type": "child", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Institut de Physique", + "type": "child", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Institut de Recherche sur l'Architecture Antique", + "type": "child", + "id": "https://ror.org/03r0cdk24" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "child", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "child", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "child", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "Institut des Sciences de l'Ingénierie et des Systèmes", + "type": "child", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Institut Écologie et Environnement", + "type": "child", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Institute of Mechanics and Engineering", + "type": "child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire Aménagement Économie Transports", + "type": "child", + "id": "https://ror.org/01yw97595" + }, + { + "label": "Laboratoire d'Annecy-le-Vieux de Physique Théorique", + "type": "child", + "id": "https://ror.org/010hz2d37" + }, + { + "label": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "type": "child", + "id": "https://ror.org/04dv4he91" + }, + { + "label": "Laboratoire de Mécanique des Fluides de Lille - Kampé de Fériet", + "type": "child", + "id": "https://ror.org/02w8awt17" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Low Noise Inter-Disciplinary Underground Science & Technology", + "type": "child", + "id": "https://ror.org/05gscwg02" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Research Network on Electrochemical Energy Storage", + "type": "child", + "id": "https://ror.org/00190j002" + }, + { + "label": "Saclay Nuclear Research Centre", + "type": "child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Soleil Synchrotron", + "type": "child", + "id": "https://ror.org/01ydb3330" + }, + { + "label": "Triangle", + "type": "child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Institut Terre & Environnement de Strasbourg", + "type": "child", + "id": "https://ror.org/0530qwm02" + }, + { + "label": "Nançay Radio Observatory", + "type": "child", + "id": "https://ror.org/01vqrde47" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Histoire Judiciaire", + "type": "child", + "id": "https://ror.org/00g32ep81" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "Histoire, Archéologie et Littérature des Mondes Anciens", + "type": "child", + "id": "https://ror.org/01ja5aj48" + }, + { + "label": "AERIS/ICARE Data and Services Center", + "type": "child", + "id": "https://ror.org/013z99a51" + }, + { + "label": "Institut de Recherche sur les Composants logiciels et matériels pour l'Information et la Communication Avancée", + "type": "child", + "id": "https://ror.org/010nk4c68" + }, + { + "label": "Laboratoire de Mécanique, Multiphysique, Multiéchelle", + "type": "child", + "id": "https://ror.org/04f5rw142" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Arènes: politique, santé publique, environnement, médias", + "type": "child", + "id": "https://ror.org/00m4rxj18" + }, + { + "label": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "type": "child", + "id": "https://ror.org/02wgtm643" + }, + { + "label": "Espaces et Sociétés", + "type": "child", + "id": "https://ror.org/03237mt20" + }, + { + "label": "Littoral, Environnement, Télédétection, Géomatique", + "type": "child", + "id": "https://ror.org/05sat2s07" + }, + { + "label": "Institute of Genetics and Development of Rennes", + "type": "child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Géosciences Rennes", + "type": "child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Ecosystèmes, Biodiversité, Evolution", + "type": "child", + "id": "https://ror.org/005fjj927" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Fonctions Optiques pour les Technologies de l’information", + "type": "child", + "id": "https://ror.org/03yn94905" + }, + { + "label": "Ethologie animale et humaine", + "type": "child", + "id": "https://ror.org/02evk6c51" + }, + { + "label": "Laboratoire d'études de genre et de sexualité", + "type": "child", + "id": "https://ror.org/005w2mm89" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "Western Institute of Law and Europe", + "type": "child", + "id": "https://ror.org/030ewzw66" + }, + { + "label": "Maison des Sciences de l'Homme Mondes", + "type": "child", + "id": "https://ror.org/00wx1mx58" + }, + { + "label": "Laboratoire de Physique et Chimie de l’Environnement et de l’Espace", + "type": "child", + "id": "https://ror.org/049k66y27" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Centre Émile Durkheim", + "type": "child", + "id": "https://ror.org/01k7w0p97" + }, + { + "label": "Laboratoire de Mathématiques de Besançon", + "type": "child", + "id": "https://ror.org/04nrhwg12" + }, + { + "label": "Laboratoire architecture anthropologie", + "type": "child", + "id": "https://ror.org/05wy2cj05" + }, + { + "label": "Biologie du Développement et Cellules Souches", + "type": "child", + "id": "https://ror.org/02af93v77" + }, + { + "label": "Centre de recherche sur les Inégalités Sociales", + "type": "child", + "id": "https://ror.org/02a4c5q78" + }, + { + "label": "Centre International de Rencontres Mathématiques", + "type": "child", + "id": "https://ror.org/04e3d6y73" + }, + { + "label": "École & Observatoire des Sciences de la Terre", + "type": "child", + "id": "https://ror.org/030qxve40" + }, + { + "label": "Musée Curie", + "type": "child", + "id": "https://ror.org/00tf8ca96" + }, + { + "label": "Architecture, Milieu, Paysage", + "type": "child", + "id": "https://ror.org/048289s82" + }, + { + "label": "Géographie de l'environnement", + "type": "child", + "id": "https://ror.org/01p4g5p84" + }, + { + "label": "Geo-Ocean", + "type": "child", + "id": "https://ror.org/007dbrz84" + }, + { + "label": "Centre d'Études et de Recherches sur le Développement International", + "type": "child", + "id": "https://ror.org/01hg13988" + }, + { + "label": "Laboratoire d'Acoustique de l'Université du Mans", + "type": "child", + "id": "https://ror.org/001aevc89" + }, + { + "label": "Histoire des Théories Linguistiques", + "type": "child", + "id": "https://ror.org/0546jt497" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Laboratoire de Médiévistique Occidentale de Paris", + "type": "child", + "id": "https://ror.org/00z0af360" + }, + { + "label": "Laboratoire d'électronique, systèmes de communication et microsystèmes", + "type": "child", + "id": "https://ror.org/01m83bk32" + }, + { + "label": "Laboratoire d'Ecologie des Hydrosystèmes Naturels et Anthropisés", + "type": "child", + "id": "https://ror.org/05pny1q12" + }, + { + "label": "Département de Pharmacochimie Moléculaire", + "type": "child", + "id": "https://ror.org/04fhvpc68" + }, + { + "label": "Centre de droit comparé du travail et de la sécurité sociale", + "type": "child", + "id": "https://ror.org/041ctrc20" + }, + { + "label": "Enzyme and Cell Engineering - Molecular Recognition and Biocatalysis", + "type": "child", + "id": "https://ror.org/001tmq304" + }, + { + "label": "Sciences pour l'Environnement", + "type": "child", + "id": "https://ror.org/016nwev19" + }, + { + "label": "Laboratoire Morphodynamique Continentale et Côtière", + "type": "child", + "id": "https://ror.org/05k1a6w82" + }, + { + "label": "Laboratoire de Mathématiques de Versailles", + "type": "child", + "id": "https://ror.org/04k5jw363" + }, + { + "label": "Langues et Civilisations à Tradition Orale", + "type": "child", + "id": "https://ror.org/025esck76" + }, + { + "label": "Laboratoire de Mathématiques Nicolas Oresme", + "type": "child", + "id": "https://ror.org/03jm2hc44" + }, + { + "label": "Centre d'études sociologiques et politiques Raymond-Aron", + "type": "child", + "id": "https://ror.org/04aq4ab28" + }, + { + "label": "Laboratoire Caribéen de Sciences Sociales", + "type": "child", + "id": "https://ror.org/00srrcb42" + }, + { + "label": "Laboratoire de Physique Théorique et Modélisation", + "type": "child", + "id": "https://ror.org/05nhcdk38" + }, + { + "label": "Institut des sciences juridique et philosophique de la Sorbonne", + "type": "child", + "id": "https://ror.org/0041am420" + }, + { + "label": "Réseau interdisciplinaire pour l’aménagement, l’observation et la cohésion des territoires européens", + "type": "child", + "id": "https://ror.org/036w0tz95" + }, + { + "label": "France, Amériques, Espagne, Sociétés, Pouvoirs, Acteurs", + "type": "child", + "id": "https://ror.org/04daj8721" + }, + { + "label": "Laboratoire des Fluides Complexes et leurs Réservoirs", + "type": "child", + "id": "https://ror.org/03dg47v24" + }, + { + "label": "Chimie de la Matière Complexe", + "type": "child", + "id": "https://ror.org/01cgac405" + }, + { + "label": "Maison des Sciences de l'Homme et de la Société Sud-Est", + "type": "child", + "id": "https://ror.org/02ygac863" + }, + { + "label": "Maison Asie Pacifique", + "type": "child", + "id": "https://ror.org/03e2syc87" + }, + { + "label": "Mathématiques Appliquées à Paris 5", + "type": "child", + "id": "https://ror.org/04yrrdj53" + }, + { + "label": "Center for Mathematical Modeling", + "type": "child", + "id": "https://ror.org/00wz2vk41" + }, + { + "label": "Service des Avions Français Instrumentés pour la Recherche en Environnement", + "type": "child", + "id": "https://ror.org/02qdgbw61" + }, + { + "label": "Empenn", + "type": "child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Archéologie des Sociétés Méditerranéennes", + "type": "child", + "id": "https://ror.org/04n9eyw42" + }, + { + "label": "Laboratoire de Microbiologie Fondamentale et Pathogénicité", + "type": "child", + "id": "https://ror.org/03e4tg734" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "Praxiling", + "type": "child", + "id": "https://ror.org/03ym2w748" + }, + { + "label": "Laboratoire de Recherche sur les Cultures Anglophones", + "type": "child", + "id": "https://ror.org/0057kwj95" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Centre d'études franco-russe de Moscou", + "type": "child", + "id": "https://ror.org/00zmdjj30" + }, + { + "label": "Centre d'Études et de Documentation Économiques, Juridiques et sociales", + "type": "child", + "id": "https://ror.org/008bf9746" + }, + { + "label": "Maison Française d'Oxford", + "type": "child", + "id": "https://ror.org/022psxk94" + }, + { + "label": "Centre de recherche français à Jérusalem", + "type": "child", + "id": "https://ror.org/04ahb2147" + }, + { + "label": "Centre d'études Alexandrines", + "type": "child", + "id": "https://ror.org/02km70587" + }, + { + "label": "Institut français du Proche-Orient", + "type": "child", + "id": "https://ror.org/02t9nm044" + }, + { + "label": "Institut français d'études sur l'Asie centrale", + "type": "child", + "id": "https://ror.org/026t9b832" + }, + { + "label": "Lieux, Identités, eSpaces, Activités", + "type": "child", + "id": "https://ror.org/00nbhg292" + }, + { + "label": "Ecology and Conservation Science for Sustainable Seas", + "type": "child", + "id": "https://ror.org/021zcv334" + }, + { + "label": "AMURE - Centre de droit et d'économie de la mer", + "type": "child", + "id": "https://ror.org/00ss0a232" + }, + { + "label": "Maison méditerranéenne des sciences de l'Homme", + "type": "child", + "id": "https://ror.org/01ejp3f31" + }, + { + "label": "Centre Franco-Égyptien d’Étude des Temples de Karnak", + "type": "child", + "id": "https://ror.org/0502mw613" + }, + { + "label": "Centre de Recherche sur la Conservation", + "type": "child", + "id": "https://ror.org/05q3pap39" + }, + { + "label": "Institut d'Histoire du Droit Jean Gaudemet", + "type": "child", + "id": "https://ror.org/04j9ztm78" + }, + { + "label": "Centre de recherche en paléontologie - Paris", + "type": "child", + "id": "https://ror.org/05ax2x637" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "Génétique et biologie du développement", + "type": "child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Maison des Sciences de l'Homme Paris Nord", + "type": "child", + "id": "https://ror.org/05079x435" + }, + { + "label": "Savoirs et Mondes Indiens", + "type": "child", + "id": "https://ror.org/04gxn9h90" + }, + { + "label": "Laboratoire de Mathématiques de Reims", + "type": "child", + "id": "https://ror.org/01xkfnd03" + }, + { + "label": "Centre Michel de Boüard", + "type": "child", + "id": "https://ror.org/03rnz7p05" + }, + { + "label": "Relais d'information sur les sciences de la cognition", + "type": "child", + "id": "https://ror.org/04ved1v49" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Sommeil, Addiction et Neuropsychiatrie", + "type": "child", + "id": "https://ror.org/04k8wt746" + }, + { + "label": "Plateforme d'Imagerie Biomédicale", + "type": "child", + "id": "https://ror.org/05r25mc45" + }, + { + "label": "TBM-Core", + "type": "child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Génomique évolutive, modélisation et santé", + "type": "child", + "id": "https://ror.org/026ddbz68" + }, + { + "label": "Takuvik Joint International Laboratory", + "type": "child", + "id": "https://ror.org/04bzgtz06" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Bordeaux Imaging Center", + "type": "child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "child", + "id": "https://ror.org/034bena10" + }, + { + "label": "CEPN - Centre d'Economie de l'Université Paris Nord", + "type": "child", + "id": "https://ror.org/03k32n603" + }, + { + "label": "Chimie, Structures et Propriétés de Biomatériaux et d'Agents Thérapeutiques", + "type": "child", + "id": "https://ror.org/0343fpq57" + }, + { + "label": "Maison des Sciences de l'Homme-Alpes", + "type": "child", + "id": "https://ror.org/0467x8h16" + }, + { + "label": "Laboratoire écologie, évolution, interactions des systèmes amazoniens", + "type": "child", + "id": "https://ror.org/00gj7r351" + }, + { + "label": "STELLA MARE", + "type": "child", + "id": "https://ror.org/040r8ry56" + }, + { + "label": "Agence pour les Mathématiques en Interaction avec l'Entreprise et la Société", + "type": "child", + "id": "https://ror.org/02cmt9z73" + }, + { + "label": "Bases de données sur la Biodiversité, Ecologie, Environnement et Sociétés", + "type": "child", + "id": "https://ror.org/034gk7456" + }, + { + "label": "DMEX Centre for X-ray Imaging", + "type": "child", + "id": "https://ror.org/0213f8g15" + }, + { + "label": "Unité en Sciences Biologiques et Biotechnologies de Nantes", + "type": "child", + "id": "https://ror.org/05ef4v550" + }, + { + "label": "Matrice Extracellulaire et Dynamique Cellulaire MEDyC", + "type": "child", + "id": "https://ror.org/017p6sq53" + }, + { + "label": "Institut des Sciences de la Terre d'Orléans", + "type": "child", + "id": "https://ror.org/02t2hg116" + }, + { + "label": "Institut de Recherche sur la Biologie de l'Insecte UMR 7261", + "type": "child", + "id": "https://ror.org/04rp2mn26" + }, + { + "label": "Étude des Structures, des Processus d’Adaptation et des Changements de l’Espace", + "type": "child", + "id": "https://ror.org/052cnt662" + }, + { + "label": "Laboratoire Ligérien de Linguistique", + "type": "child", + "id": "https://ror.org/04s6f1186" + }, + { + "label": "Droit International Comparé et Européen", + "type": "child", + "id": "https://ror.org/04pwzyv45" + }, + { + "label": "Lasers, Plasmas et Procédés Photoniques", + "type": "child", + "id": "https://ror.org/01qfjp710" + }, + { + "label": "Centre universitaire de recherches sur l'Action Publique et le Politique Épistémologie & Sciences Sociales", + "type": "child", + "id": "https://ror.org/00rxdng69" + }, + { + "label": "Centre Gilles-Gaston Granger", + "type": "child", + "id": "https://ror.org/00axatv03" + }, + { + "label": "Irasia Recherche", + "type": "child", + "id": "https://ror.org/03bcyhr16" + }, + { + "label": "Institut de Recherches et d'Etudes sur les Mondes Arabes et Musulmans", + "type": "child", + "id": "https://ror.org/037f3ga09" + }, + { + "label": "Laboratoire d'Archéologie Médiévale et Moderne en Méditerranée", + "type": "child", + "id": "https://ror.org/05tb4mb78" + }, + { + "label": "Institut d'ethnologie méditerranéenne européenne et comparative", + "type": "child", + "id": "https://ror.org/050gdsq06" + }, + { + "label": "Temps, espaces, langages, Europe méridionale, Méditerranée", + "type": "child", + "id": "https://ror.org/010bhn875" + }, + { + "label": "Matériaux Divisés, Interfaces, Réactivité, Electrochimie", + "type": "child", + "id": "https://ror.org/00m587853" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Macromoléculaires", + "type": "child", + "id": "https://ror.org/02hwc1z56" + }, + { + "label": "Centre d'études supérieures de civilisation médiévale", + "type": "child", + "id": "https://ror.org/005hw9085" + }, + { + "label": "Laboratoire de Mathématiques et Applications", + "type": "child", + "id": "https://ror.org/02p2rk609" + }, + { + "label": "Laboratoire Interdisciplinaire de Recherches \"Sociétés, Sensibilités, Soin\"", + "type": "child", + "id": "https://ror.org/01rb31945" + }, + { + "label": "Centre d’études en sciences sociales du religieux", + "type": "child", + "id": "https://ror.org/01kysxr05" + }, + { + "label": "Trajectoires. De la sédentarisation à l’État", + "type": "child", + "id": "https://ror.org/03wdx6c48" + }, + { + "label": "Structure et Dynamique des Langues", + "type": "child", + "id": "https://ror.org/019df2r84" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Laboratoire Information Génomique et Structurale", + "type": "child", + "id": "https://ror.org/05v0fms67" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "Chimie Biologique pour le Vivant", + "type": "child", + "id": "https://ror.org/03cjyj977" + }, + { + "label": "Biologie Moléculaire Structurale et Processus Infectieux", + "type": "child", + "id": "https://ror.org/009b91528" + }, + { + "label": "Centre de Recherche d'Albi en génie des Procédés, des SOlides Divisés, de l'Énergie et de l'Environnement", + "type": "child", + "id": "https://ror.org/03cxnrt47" + }, + { + "label": "Acquisition et Analyse de Données pour l'Histoire naturelle", + "type": "child", + "id": "https://ror.org/05qhnf349" + }, + { + "label": "Observatoire des Sciences de l'Univers de Rennes", + "type": "child", + "id": "https://ror.org/05pwkex33" + }, + { + "label": "UCSD-CNRS Joint Research Chemistry Laboratory", + "type": "child", + "id": "https://ror.org/00t7axd27" + }, + { + "label": "Chronobiotron", + "type": "child", + "id": "https://ror.org/026fpwg41" + }, + { + "label": "Observatoire pour la Conservation de la Mégafaune Marine", + "type": "child", + "id": "https://ror.org/04wbg2z51" + }, + { + "label": "Architecture Histoire Technique Territoire Patrimoine", + "type": "child", + "id": "https://ror.org/05j8sgr10" + }, + { + "label": "Droit, religion, entreprise et société", + "type": "child", + "id": "https://ror.org/026p10446" + }, + { + "label": "Maison des Sciences de l'Homme Val de Loire", + "type": "child", + "id": "https://ror.org/03v4gsj38" + }, + { + "label": "GeoRessources", + "type": "child", + "id": "https://ror.org/04mq2px33" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "child", + "id": "https://ror.org/03949e763" + }, + { + "label": "Observatoire Terre et environnement de Lorraine", + "type": "child", + "id": "https://ror.org/02cyw3861" + }, + { + "label": "Huma-Num", + "type": "child", + "id": "https://ror.org/04ces3204" + }, + { + "label": "Organisation de Micro-Electronique Générale Avancée", + "type": "child", + "id": "https://ror.org/01mbkbh33" + }, + { + "label": "Laboratoire de Mathématiques et Modélisation d'Évry", + "type": "child", + "id": "https://ror.org/03jca6281" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "Chimie Biologie Innovation", + "type": "child", + "id": "https://ror.org/04bgzse17" + }, + { + "label": "Europe orientale, balkanique et médiane", + "type": "child", + "id": "https://ror.org/03ygj8248" + }, + { + "label": "Institut de Recherche en Musicologie", + "type": "child", + "id": "https://ror.org/04gf9wd48" + }, + { + "label": "Centre d’Archives en Philosophie, Histoire et Édition des Sciences", + "type": "child", + "id": "https://ror.org/03j7mz841" + }, + { + "label": "Centre de microcaractérisation Raimond Castaing", + "type": "child", + "id": "https://ror.org/03tvs6n06" + }, + { + "label": "France Génomique", + "type": "child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "CALMIP", + "type": "child", + "id": "https://ror.org/02k7ask46" + }, + { + "label": "Plateforme de chimie biologique intégrative de Strasbourg", + "type": "child", + "id": "https://ror.org/052pqt102" + }, + { + "label": "LINK - Laboratory for Innovative Key Materials and Structures", + "type": "child", + "id": "https://ror.org/03qt6f440" + }, + { + "label": "OpenEdition Center", + "type": "child", + "id": "https://ror.org/02aja8v82" + }, + { + "label": "Genopolys", + "type": "child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Laboratoire de Chimie-Physique Macromoléculaire", + "type": "child", + "id": "https://ror.org/0371yc337" + }, + { + "label": "Centre pour les humanités numériques et l'histoire de la justice", + "type": "child", + "id": "https://ror.org/02yvha224" + }, + { + "label": "AlgoSolis", + "type": "child", + "id": "https://ror.org/05481me13" + }, + { + "label": "Centre d'Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse", + "type": "child", + "id": "https://ror.org/01f5c5978" + }, + { + "label": "Passages", + "type": "child", + "id": "https://ror.org/00s40r567" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Climat, Environnement, Couplages et Incertitudes", + "type": "child", + "id": "https://ror.org/05t8ct211" + }, + { + "label": "Laboratoire de Linguistique de Nantes", + "type": "child", + "id": "https://ror.org/0009eec40" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "type": "child", + "id": "https://ror.org/05d362832" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "ScanMAT", + "type": "child", + "id": "https://ror.org/04fsxy317" + }, + { + "label": "PatriNat", + "type": "child", + "id": "https://ror.org/037eda396" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Institut Denis Poisson", + "type": "child", + "id": "https://ror.org/05djhd259" + }, + { + "label": "Temps, Mondes, Sociétés", + "type": "child", + "id": "https://ror.org/01nhp3z94" + }, + { + "label": "Laboratoire Lorrain de Chimie Moléculaire", + "type": "child", + "id": "https://ror.org/020azc393" + }, + { + "label": "Laboratoire de Physique et Chimie Théoriques", + "type": "child", + "id": "https://ror.org/02atkd403" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Vision pour la Robotique", + "type": "child", + "id": "https://ror.org/02v6phz91" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Epigenetics, Data, Politics", + "type": "child", + "id": "https://ror.org/00rg8bd79" + }, + { + "label": "Physique pour la médecine Paris", + "type": "child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Integrative Neuroscience and Cognition Center", + "type": "child", + "id": "https://ror.org/02fgakj19" + }, + { + "label": "Centre de RMN à Très Hauts Champs de Lyon", + "type": "child", + "id": "https://ror.org/004wefe19" + }, + { + "label": "SPPIN - Saints-Pères Paris Institute for Neurosciences", + "type": "child", + "id": "https://ror.org/01a4enz31" + }, + { + "label": "Laboratoire interdisciplinaire d’études sur les réflexivités - Fonds Yan Thomas", + "type": "child", + "id": "https://ror.org/046dap961" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Light, nanomaterials, nanotechnologies", + "type": "child", + "id": "https://ror.org/01waxag60" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "Centre de recherche sur le monde iranien", + "type": "child", + "id": "https://ror.org/0302qeq32" + }, + { + "label": "RESTORE", + "type": "child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Transitions Energétiques et Environnementales", + "type": "child", + "id": "https://ror.org/04cms1b08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Bordeaux Sciences Économiques", + "type": "child", + "id": "https://ror.org/014vz2d20" + }, + { + "label": "Microscopies, imageries et ressources analytiques en région Centre-Val de Loire", + "type": "child", + "id": "https://ror.org/050x42563" + }, + { + "label": "Laboratoire d’Informatique et Systèmes", + "type": "child", + "id": "https://ror.org/0257sgk90" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Catalyse, Polymérisation, Procédés et Matériaux", + "type": "child", + "id": "https://ror.org/02f6tst70" + }, + { + "label": "Fédération de recherche Matière et Interactions", + "type": "child", + "id": "https://ror.org/02wq1s711" + }, + { + "label": "Biologie du Chloroplaste et Perception de la Lumière chez les Microalgues", + "type": "child", + "id": "https://ror.org/04ezpxa16" + }, + { + "label": "Sciences et Technologies de la Musique et du Son", + "type": "child", + "id": "https://ror.org/025xvn046" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Sciences, Normes, Démocratie", + "type": "child", + "id": "https://ror.org/033eqsk67" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Institut Parisien de Chimie Physique et Théorique", + "type": "child", + "id": "https://ror.org/00xwwwr97" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Building Blocks for Future Electronics Laboratory", + "type": "child", + "id": "https://ror.org/01w108f05" + }, + { + "label": "Institut de la Mer de Villefranche", + "type": "child", + "id": "https://ror.org/05jpad840" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Cultures, Environnements, Arctique, Représentations, Climat", + "type": "child", + "id": "https://ror.org/01bt3e159" + }, + { + "label": "Institut photonique d'analyse non-destructive européen des matériaux anciens", + "type": "child", + "id": "https://ror.org/04k0drf78" + }, + { + "label": "Archéologie, Terre, Histoire, Sociétés", + "type": "child", + "id": "https://ror.org/011hdpx94" + }, + { + "label": "Institut de Chimie Moléculaire de l'Université de Bourgogne", + "type": "child", + "id": "https://ror.org/011ygpb73" + }, + { + "label": "Institut Chevreul", + "type": "child", + "id": "https://ror.org/048k52v18" + }, + { + "label": "Paris School of Economics", + "type": "child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "Laboratoire Ondes et Milieux Complexes", + "type": "child", + "id": "https://ror.org/02sb3b652" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "child", + "id": "https://ror.org/0211r2z47" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institute of Integrative Biology of the Cell", + "type": "child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Laboratoire Aimé Cotton", + "type": "child", + "id": "https://ror.org/021xexe56" + }, + { + "label": "Laboratoire de Chimie Physique", + "type": "child", + "id": "https://ror.org/016r2hq43" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire de physique des Solides", + "type": "child", + "id": "https://ror.org/02dyaew97" + }, + { + "label": "Laboratory of Theoretical Physics and Statistical Models", + "type": "child", + "id": "https://ror.org/00w67e447" + }, + { + "label": "Institut des Neurosciences Paris-Saclay", + "type": "child", + "id": "https://ror.org/002v40q27" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Albert Fert", + "type": "child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Agronomie", + "type": "child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "UMR Géographie-cités", + "type": "related", + "id": "https://ror.org/05yqfzf35" + }, + { + "label": "Campus Condorcet", + "type": "related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "related", + "id": "https://ror.org/05v727m31" + }, + { + "label": "Centre for Nanoscience and Nanotechnology", + "type": "child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Département de mathématiques et applications", + "type": "child", + "id": "https://ror.org/03k9z2963" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Genome Integrity, RNA and Cancer", + "type": "child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "child", + "id": "https://ror.org/002zc3t08" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02gmp5156.json b/test-relationship-delete-v2/updates/02gmp5156.json new file mode 100644 index 000000000..eeb858099 --- /dev/null +++ b/test-relationship-delete-v2/updates/02gmp5156.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 703448, + "geonames_details": { + "country_code": "UA", + "country_name": "Ukraine", + "lat": 50.45466, + "lng": 30.5238, + "name": "Kyiv" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100018227" + ], + "preferred": "100018227" + }, + { + "type": "wikidata", + "all": [ + "Q56367740" + ], + "preferred": "Q56367740" + } + ], + "id": "https://ror.org/02gmp5156", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://nrfu.org.ua" + }, + { + "type": "wikipedia", + "value": "https://uk.wikipedia.org/wiki/%D0%9D%D0%B0%D1%86%D1%96%D0%BE%D0%BD%D0%B0%D0%BB%D1%8C%D0%BD%D0%B8%D0%B9_%D1%84%D0%BE%D0%BD%D0%B4_%D0%B4%D0%BE%D1%81%D0%BB%D1%96%D0%B4%D0%B6%D0%B5%D0%BD%D1%8C_%D0%A3%D0%BA%D1%80%D0%B0%D1%97%D0%BD%D0%B8" + } + ], + "names": [ + { + "value": "National Research Foundation of Ukraine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Research Fund of Ukraine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Національний фонд досліджень України", + "types": [ + "label" + ], + "lang": "uk" + }, + { + "value": "NRFU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02gp35s66.json b/test-relationship-delete-v2/updates/02gp35s66.json new file mode 100644 index 000000000..10c964b1f --- /dev/null +++ b/test-relationship-delete-v2/updates/02gp35s66.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3463030, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -25.54778, + "lng": -54.58806, + "name": "Foz do Iguaçu" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0509 0033" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5574032" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.449851.5" + ], + "preferred": "grid.449851.5" + } + ], + "id": "https://ror.org/02gp35s66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://portal.unila.edu.br" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Federal_University_for_Latin_American_Integration" + } + ], + "names": [ + { + "value": "Universidade Federal da Integração Latino-Americana", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Federal University for Latin American Integration", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UNILA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02h919y47.json b/test-relationship-delete-v2/updates/02h919y47.json new file mode 100644 index 000000000..86ebf0f80 --- /dev/null +++ b/test-relationship-delete-v2/updates/02h919y47.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2938913, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.87167, + "lng": 8.65027, + "name": "Darmstadt" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0621 7921" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q692163" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.426436.1" + ], + "preferred": "grid.426436.1" + }, + { + "type": "fundref", + "all": [ + "501100010560" + ], + "preferred": "501100010560" + } + ], + "id": "https://ror.org/02h919y47", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.eumetsat.int" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/EUMETSAT" + } + ], + "names": [ + { + "value": "European Organisation for the Exploitation of Meteorological Satellites", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Europäische Organisation für die Nutzung meteorologischer Satelliten", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "EUMETSAT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02hj2xr21.json b/test-relationship-delete-v2/updates/02hj2xr21.json new file mode 100644 index 000000000..6b7969c0f --- /dev/null +++ b/test-relationship-delete-v2/updates/02hj2xr21.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 3583361, + "geonames_details": { + "country_code": "SV", + "country_name": "El Salvador", + "lat": 13.68935, + "lng": -89.18718, + "name": "San Salvador" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2303 2126" + ], + "preferred": "0000 0001 2303 2126" + }, + { + "type": "grid", + "all": [ + "grid.472386.c" + ], + "preferred": "grid.472386.c" + }, + { + "type": "wikidata", + "all": [ + "Q29002767" + ], + "preferred": "Q29002767" + } + ], + "id": "https://ror.org/02hj2xr21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uls.edu.sv" + } + ], + "names": [ + { + "value": "Universidad Luterana Salvadoreña", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Salvadoran Lutheran University", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ULS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02hq5p840.json b/test-relationship-delete-v2/updates/02hq5p840.json new file mode 100644 index 000000000..eb093a15a --- /dev/null +++ b/test-relationship-delete-v2/updates/02hq5p840.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 11995365, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.59866, + "lng": -3.71579, + "name": "Tres Cantos" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1794 0365" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30255894" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.433409.9" + ], + "preferred": "grid.433409.9" + } + ], + "id": "https://ror.org/02hq5p840", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.genetrix.es/" + } + ], + "names": [ + { + "value": "Genetrix (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02hqqna27.json b/test-relationship-delete-v2/updates/02hqqna27.json new file mode 100644 index 000000000..51d8a2ee6 --- /dev/null +++ b/test-relationship-delete-v2/updates/02hqqna27.json @@ -0,0 +1,74 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1975, + "external_ids": [ + { + "all": [ + "Q7590700" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.416544.6" + ], + "preferred": "grid.416544.6", + "type": "grid" + } + ], + "id": "https://ror.org/02hqqna27", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/st-michaels-hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/St._Michael%27s_Hospital_(Bristol)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.459099, + "lng": -2.599397, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "St Michael's Hospital" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02kvxyf05.json b/test-relationship-delete-v2/updates/02kvxyf05.json new file mode 100644 index 000000000..8a2420c8f --- /dev/null +++ b/test-relationship-delete-v2/updates/02kvxyf05.json @@ -0,0 +1,315 @@ +{ + "locations": [ + { + "geonames_id": 6455402, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.8205, + "lng": 2.1311, + "name": "Le Chesnay-Rocquencourt" + } + } + ], + "established": 1967, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2186 3954", + "0000 0001 2164 1438" + ], + "preferred": "0000 0001 2164 1438" + }, + { + "type": "fundref", + "all": [ + "100012950" + ], + "preferred": "100012950" + }, + { + "type": "wikidata", + "all": [ + "Q1146208" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5328.c" + ], + "preferred": "grid.5328.c" + } + ], + "id": "https://ror.org/02kvxyf05", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.inria.fr/en/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/French_Institute_for_Research_in_Computer_Science_and_Automation" + } + ], + "names": [ + { + "value": "French Institute for Research in Computer Science and Automation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut de recherche en informatique et en automatique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut national de recherche en informatique et en automatique", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "INRIA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Biometry and Evolutionary Biology Laboratory", + "type": "child", + "id": "https://ror.org/03skt0t88" + }, + { + "label": "Centre de Mathématiques Appliquées", + "type": "child", + "id": "https://ror.org/012e1xn46" + }, + { + "label": "Cognition Behaviour Technology", + "type": "child", + "id": "https://ror.org/04d9wv909" + }, + { + "label": "Computer Science Laboratory of the École Polytechnique", + "type": "child", + "id": "https://ror.org/04afed728" + }, + { + "label": "Département d'Informatique", + "type": "child", + "id": "https://ror.org/05y6rqs46" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Grenoble Computer Science Laboratory", + "type": "child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Inria Bordeaux - Sud-Ouest Research Centre", + "type": "child", + "id": "https://ror.org/03tjcj052" + }, + { + "label": "Inria Grenoble - Rhône-Alpes research centre", + "type": "child", + "id": "https://ror.org/00n8d6z93" + }, + { + "label": "Inria Nancy - Grand-Est research centre", + "type": "child", + "id": "https://ror.org/03fcjvn64" + }, + { + "label": "Inria Rennes - Bretagne Atlantique Research Centre", + "type": "child", + "id": "https://ror.org/04040yw90" + }, + { + "label": "Inria Saclay - Île-de-France Research Centre", + "type": "child", + "id": "https://ror.org/0315e5x55" + }, + { + "label": "Inria research centre Lille - Nord Europe", + "type": "child", + "id": "https://ror.org/04eej9726" + }, + { + "label": "Institut de Mathématiques de Bordeaux", + "type": "child", + "id": "https://ror.org/05m3r1b84" + }, + { + "label": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "type": "child", + "id": "https://ror.org/00myn0z94" + }, + { + "label": "Institut Élie Cartan de Lorraine", + "type": "child", + "id": "https://ror.org/04rvw8791" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Paul Painlevé", + "type": "child", + "id": "https://ror.org/043n4fm24" + }, + { + "label": "Laboratoire d'Informatique, Signaux et Systèmes de Sophia Antipolis", + "type": "child", + "id": "https://ror.org/01215r597" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratoire des Sciences du Numérique de Nantes", + "type": "child", + "id": "https://ror.org/02snf8m58" + }, + { + "label": "Laboratory Preuves, Programmes et Systèmes", + "type": "child", + "id": "https://ror.org/046p9e825" + }, + { + "label": "Laboratory of Mathematics and their Applications", + "type": "child", + "id": "https://ror.org/00g669j87" + }, + { + "label": "Lorraine Research Laboratory in Computer Science and its Applications", + "type": "child", + "id": "https://ror.org/02vnf0c38" + }, + { + "label": "Maison de la Simulation", + "type": "child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Montpellier Laboratory of Informatics, Robotics and Microelectronics", + "type": "child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Research Centre Inria Sophia Antipolis - Méditerranée", + "type": "child", + "id": "https://ror.org/01nzkaw91" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Unit of Mathematics, Pure and Applied", + "type": "child", + "id": "https://ror.org/05n21n105" + }, + { + "label": "Wave Propagation Mathematical Study and Simulation", + "type": "child", + "id": "https://ror.org/03gvm2667" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "Empenn", + "type": "child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "InBio: Experimental and Computational Methods for Modeling Cellular Processes", + "type": "child", + "id": "https://ror.org/01tnxwc41" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02mdbnd10.json b/test-relationship-delete-v2/updates/02mdbnd10.json new file mode 100644 index 000000000..c67530920 --- /dev/null +++ b/test-relationship-delete-v2/updates/02mdbnd10.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2751792, + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 53.20139, + "lng": 5.80859, + "name": "Leeuwarden" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1793 4571" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3920759" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.450080.9" + ], + "preferred": "grid.450080.9" + } + ], + "id": "https://ror.org/02mdbnd10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.hvhl.nl" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Van_Hall_Larenstein" + } + ], + "names": [ + { + "value": "Van Hall Larenstein University of Applied Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Van Hall Larenstein", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hogeschool Van Hall Larenstein", + "types": [ + "label" + ], + "lang": "nl" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02mnw9q71.json b/test-relationship-delete-v2/updates/02mnw9q71.json new file mode 100644 index 000000000..4554c475d --- /dev/null +++ b/test-relationship-delete-v2/updates/02mnw9q71.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 3026108, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.76507, + "lng": 2.26655, + "name": "Châtenay-Malabry" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0368 8779" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q51781179" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503249.9" + ], + "preferred": "grid.503249.9" + } + ], + "id": "https://ror.org/02mnw9q71", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.umr-cnrs8612.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Institut Galien Paris-Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute Galien Paris-Saclay", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut Galien Paris Sud", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IGPS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02mtt1z51.json b/test-relationship-delete-v2/updates/02mtt1z51.json new file mode 100644 index 000000000..83f118b84 --- /dev/null +++ b/test-relationship-delete-v2/updates/02mtt1z51.json @@ -0,0 +1,75 @@ +{ + "admin": { + "created": { + "date": "2021-09-23", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.511076.4" + ], + "preferred": "grid.511076.4", + "type": "grid" + }, + { + "all": [ + "100015250" + ], + "preferred": "100015250", + "type": "fundref" + } + ], + "id": "https://ror.org/02mtt1z51", + "links": [ + { + "type": "website", + "value": "https://www.bristolbrc.nihr.ac.uk/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "NIHR Bristol Biomedical Research Centre" + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + }, + { + "label": "University of Bristol", + "type": "parent", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02ndr3r66.json b/test-relationship-delete-v2/updates/02ndr3r66.json new file mode 100644 index 000000000..d07811697 --- /dev/null +++ b/test-relationship-delete-v2/updates/02ndr3r66.json @@ -0,0 +1,57 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1895, + "external_ids": [ + { + "all": [ + "grid.414221.0" + ], + "preferred": "grid.414221.0", + "type": "grid" + } + ], + "id": "https://ror.org/02ndr3r66", + "links": [ + { + "type": "website", + "value": "http://www.hopitalmarielannelongue.fr/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.784201, + "lng": 2.273588, + "name": "Le Plessis-Robinson" + }, + "geonames_id": 3002650 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hôpital Marie Lannelongue" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02p4far57.json b/test-relationship-delete-v2/updates/02p4far57.json new file mode 100644 index 000000000..7dfd542c9 --- /dev/null +++ b/test-relationship-delete-v2/updates/02p4far57.json @@ -0,0 +1,109 @@ +{ + "locations": [ + { + "geonames_id": 4887398, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.85003, + "lng": -87.65005, + "name": "Chicago" + } + } + ], + "established": 1974, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0619 6876" + ], + "preferred": "0000 0004 0619 6876" + }, + { + "type": "fundref", + "all": [ + "100011249" + ], + "preferred": "100011249" + }, + { + "type": "wikidata", + "all": [ + "Q105710663" + ], + "preferred": "Q105710663" + } + ], + "id": "https://ror.org/02p4far57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cancer.northwestern.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Robert_H._Lurie_Comprehensive_Cancer_Center" + } + ], + "names": [ + { + "value": "Robert H. Lurie Comprehensive Cancer Center of Northwestern University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Robert H. Lurie Comprehensive Cancer Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Lurie Comprehensive Cancer Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Robert H. Lurie Cancer Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Lurie Cancer Center", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Northwestern Medicine", + "type": "parent", + "id": "https://ror.org/04fzwnh64" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02pg81z63.json b/test-relationship-delete-v2/updates/02pg81z63.json new file mode 100644 index 000000000..75aade7bc --- /dev/null +++ b/test-relationship-delete-v2/updates/02pg81z63.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9238 6887" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.428313.f" + ], + "preferred": "grid.428313.f" + } + ], + "id": "https://ror.org/02pg81z63", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.tauli.cat" + } + ], + "names": [ + { + "value": "Corporació Sanitària Parc Taulí", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Consorci Corporació Sanitària Parc Taulí", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Parc Taulí Sabadell Hospital Universitari", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Parc Taulí Hospital Universitari de Sabadell", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hospital de Sabadell–Parc Taulí", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Parc Taulí Hospital Universitari", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Corporación Sanitaria y Universitaria Parc Taulí", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "CSPT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02pkshz09.json b/test-relationship-delete-v2/updates/02pkshz09.json new file mode 100644 index 000000000..45822efdb --- /dev/null +++ b/test-relationship-delete-v2/updates/02pkshz09.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 706483, + "geonames_details": { + "country_code": "UA", + "country_name": "Ukraine", + "lat": 49.98081, + "lng": 36.25272, + "name": "Kharkiv" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8309 4515" + ], + "preferred": "0000 0004 8309 4515" + }, + { + "type": "grid", + "all": [ + "grid.445518.9" + ], + "preferred": "grid.445518.9" + }, + { + "type": "wikidata", + "all": [ + "Q4496336" + ], + "preferred": "Q4496336" + } + ], + "id": "https://ror.org/02pkshz09", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://univd.edu.ua" + } + ], + "names": [ + { + "value": "Kharkiv National University of Internal Affairs", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Харківський національний університет внутрішніх справ", + "types": [ + "label" + ], + "lang": "uk" + }, + { + "value": "KhNUIA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02qjttz75.json b/test-relationship-delete-v2/updates/02qjttz75.json new file mode 100644 index 000000000..50995e007 --- /dev/null +++ b/test-relationship-delete-v2/updates/02qjttz75.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432254.6" + ], + "preferred": "grid.432254.6" + } + ], + "id": "https://ror.org/02qjttz75", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.adexcop.com" + } + ], + "names": [ + { + "value": "Optimized Adaptive Control Systems", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Control Adaptativo Predictivo Experto", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "ADEX", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02qnnz951.json b/test-relationship-delete-v2/updates/02qnnz951.json new file mode 100644 index 000000000..a9c83a6e5 --- /dev/null +++ b/test-relationship-delete-v2/updates/02qnnz951.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2790869, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.45413, + "lng": 3.95229, + "name": "Mons" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2184 581X" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1742161" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.8364.9" + ], + "preferred": "grid.8364.9" + } + ], + "id": "https://ror.org/02qnnz951", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://web.umons.ac.be" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Mons" + } + ], + "names": [ + { + "value": "University of Mons", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Université de Mons", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02qz3vm75.json b/test-relationship-delete-v2/updates/02qz3vm75.json new file mode 100644 index 000000000..3621bda98 --- /dev/null +++ b/test-relationship-delete-v2/updates/02qz3vm75.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2886242, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.93333, + "lng": 6.95, + "name": "Cologne" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9125 6001" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q737480" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.414694.a" + ], + "preferred": "grid.414694.a" + } + ], + "id": "https://ror.org/02qz3vm75", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iqwig.de" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Institute_for_Quality_and_Efficiency_in_Health_Care" + } + ], + "names": [ + { + "value": "Institute for Quality and Efficiency in Health Care", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut für Qualität und Wirtschaftlichkeit im Gesundheitswesen", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "IQWiG", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02rrdvm96.json b/test-relationship-delete-v2/updates/02rrdvm96.json new file mode 100644 index 000000000..0d9a13180 --- /dev/null +++ b/test-relationship-delete-v2/updates/02rrdvm96.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 1796236, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.22222, + "lng": 121.45806, + "name": "Shanghai" + } + } + ], + "established": 2000, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0061 254X" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.507739.f" + ], + "preferred": "grid.507739.f" + } + ], + "id": "https://ror.org/02rrdvm96", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://cemcs.cas.cn" + } + ], + "names": [ + { + "value": "Center for Excellence in Molecular Cell Science", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Biochemistry and Cell Biology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中科院分子细胞卓越创新中心", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "Chinese Academy of Sciences", + "type": "parent", + "id": "https://ror.org/034t30j35" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02st4q439.json b/test-relationship-delete-v2/updates/02st4q439.json new file mode 100644 index 000000000..1d74604d9 --- /dev/null +++ b/test-relationship-delete-v2/updates/02st4q439.json @@ -0,0 +1,100 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1959, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2286 3155" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2388377" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418214.a" + ], + "preferred": "grid.418214.a" + } + ], + "id": "https://ror.org/02st4q439", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://icsn.cnrs.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Institut_de_Chimie_des_Substances_Naturelles" + } + ], + "names": [ + { + "value": "Institut de Chimie des Substances Naturelles", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute for the chemistry of natural substances", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ICSN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02trgdk48.json b/test-relationship-delete-v2/updates/02trgdk48.json new file mode 100644 index 000000000..eefdd88c8 --- /dev/null +++ b/test-relationship-delete-v2/updates/02trgdk48.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3110044, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.31283, + "lng": -1.97499, + "name": "Donostia / San Sebastian" + } + } + ], + "established": 1983, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9388 0529" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.424978.4" + ], + "preferred": "grid.424978.4" + } + ], + "id": "https://ror.org/02trgdk48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gaia.es" + } + ], + "names": [ + { + "value": "Association of Electronic and Information Technologies", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Asociación Cluster de Telecomunicaciones", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "GAIA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02vjkv261.json b/test-relationship-delete-v2/updates/02vjkv261.json new file mode 100644 index 000000000..5e47214a8 --- /dev/null +++ b/test-relationship-delete-v2/updates/02vjkv261.json @@ -0,0 +1,1309 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2186 6389" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100001677" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1474517" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.7429.8" + ], + "preferred": "grid.7429.8" + } + ], + "id": "https://ror.org/02vjkv261", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.inserm.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Inserm" + } + ], + "names": [ + { + "value": "Inserm", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "French Institute of Health and Medical Research", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Institut National de la Santé et de la Recherche Médicale", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "INSERM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Adaptateurs de Signalisation en Hématologie", + "type": "child", + "id": "https://ror.org/03837fc46" + }, + { + "label": "Adhesion and Inflammation Lab", + "type": "child", + "id": "https://ror.org/055ymkj32" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Cancer Research Center of Lyon", + "type": "child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Cancer Research Center of Toulouse", + "type": "child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Cancer Thematics Institute", + "type": "child", + "id": "https://ror.org/04zdwr798" + }, + { + "label": "Cell Biology, Development and Evolution", + "type": "child", + "id": "https://ror.org/024k3xe80" + }, + { + "label": "Center for Interdisciplinary Research in Biology", + "type": "child", + "id": "https://ror.org/01mvzn566" + }, + { + "label": "Center for Research and Interdisciplinarity", + "type": "child", + "id": "https://ror.org/00zbj9525" + }, + { + "label": "Center for Research in Medicine, Science, Health, Mental Health and Society", + "type": "child", + "id": "https://ror.org/02v2jyq75" + }, + { + "label": "Center for Research on Inflammation", + "type": "child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Centre Méditerranéen de Médecine Moléculaire", + "type": "child", + "id": "https://ror.org/029rfe283" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre de Biochimie Structurale", + "type": "child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre de Référence Déficits Immunitaires Héréditaires", + "type": "child", + "id": "https://ror.org/009p5nb11" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Cognition, Action, and Sensorimotor Plasticity", + "type": "child", + "id": "https://ror.org/03xe54902" + }, + { + "label": "Cognitive Neuroimaging Lab", + "type": "child", + "id": "https://ror.org/056wdpc91" + }, + { + "label": "Délégation Paris 11", + "type": "child", + "id": "https://ror.org/0589k3111" + }, + { + "label": "Délégation Paris 12", + "type": "child", + "id": "https://ror.org/00sbttv49" + }, + { + "label": "Délégation Paris 5", + "type": "child", + "id": "https://ror.org/02e0y6e06" + }, + { + "label": "Délégation Paris 6", + "type": "child", + "id": "https://ror.org/03rt48n94" + }, + { + "label": "Délégation Paris 7", + "type": "child", + "id": "https://ror.org/00bw5n526" + }, + { + "label": "Délégation Régionale Auvergne-Rhône-Alpes", + "type": "child", + "id": "https://ror.org/0530j9m17" + }, + { + "label": "Délégation Régionale Est", + "type": "child", + "id": "https://ror.org/04kv7c795" + }, + { + "label": "Délégation Régionale Grand Ouest", + "type": "child", + "id": "https://ror.org/01qa4rf46" + }, + { + "label": "Délégation Régionale Nord Ouest", + "type": "child", + "id": "https://ror.org/00jmxvy70" + }, + { + "label": "Délégation Régionale Nouvelle-Aquitaine", + "type": "child", + "id": "https://ror.org/044rb3f07" + }, + { + "label": "Délégation Régionale Occitanie Méditerranée", + "type": "child", + "id": "https://ror.org/01ddr6d46" + }, + { + "label": "Délégation Régionale Occitanie Pyrénées", + "type": "child", + "id": "https://ror.org/03xssrp53" + }, + { + "label": "Délégation Régionale Provence-Alpes-Côte d’Azur et Corse", + "type": "child", + "id": "https://ror.org/01s8rwd67" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Equipe Soutenue par la Région et par l'Inserm", + "type": "child", + "id": "https://ror.org/03e801006" + }, + { + "label": "Genetics, Genomics and Bioinformatics", + "type": "child", + "id": "https://ror.org/01rfstj90" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Hemostase Inflammation Thrombosis", + "type": "child", + "id": "https://ror.org/03ka94606" + }, + { + "label": "Imagine Institute for Genetic Diseases", + "type": "child", + "id": "https://ror.org/05rq3rb55" + }, + { + "label": "Imaging and Brain", + "type": "child", + "id": "https://ror.org/01eem7c55" + }, + { + "label": "Immunity and Cancer", + "type": "child", + "id": "https://ror.org/01zefvs55" + }, + { + "label": "Immunology, Inflammation, Infectiology and Microbiology", + "type": "child", + "id": "https://ror.org/00r454w59" + }, + { + "label": "Inserm Transfert", + "type": "child", + "id": "https://ror.org/01wftfc57" + }, + { + "label": "Institute for Advanced Biosciences", + "type": "child", + "id": "https://ror.org/05kwbf598" + }, + { + "label": "Institut Cochin", + "type": "child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Européen de Chimie et Biologie", + "type": "child", + "id": "https://ror.org/04agqs597" + }, + { + "label": "Institut Jacques Monod", + "type": "child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut NeuroMyoGène", + "type": "child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut d'Économie Publique", + "type": "child", + "id": "https://ror.org/014ycqe77" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Biologie de Lille", + "type": "child", + "id": "https://ror.org/05gd4yq49" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Neurobiologie de la Méditerranée", + "type": "child", + "id": "https://ror.org/02jthx987" + }, + { + "label": "Institut de Neurosciences des Systèmes", + "type": "child", + "id": "https://ror.org/019kqby73" + }, + { + "label": "Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux", + "type": "child", + "id": "https://ror.org/03xg8m734" + }, + { + "label": "Institut de Recherche en Santé, Environnement et Travail", + "type": "child", + "id": "https://ror.org/01p178v10" + }, + { + "label": "Institut du Cerveau", + "type": "child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Fer à Moulin", + "type": "child", + "id": "https://ror.org/03x9frp33" + }, + { + "label": "Institut du Thorax", + "type": "child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Institute for Regenerative Medicine & Biotherapy", + "type": "child", + "id": "https://ror.org/00b8mh310" + }, + { + "label": "Institute of Biology Valrose", + "type": "child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Institut de Myologie", + "type": "child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Institute of Research on Cancer and Aging in Nice", + "type": "child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "International Center for Infectiology Research", + "type": "child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire CarMeN", + "type": "child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratory for Optics & Biosciences", + "type": "child", + "id": "https://ror.org/000p29f53" + }, + { + "label": "Laboratory for Vascular Translational Science", + "type": "child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Institut Langevin", + "type": "child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Lipides, Nutrition, Cancer", + "type": "child", + "id": "https://ror.org/04d70nb60" + }, + { + "label": "Lyon Neuroscience Research Center", + "type": "child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Molecular and Structural Basis of Life Sciences", + "type": "child", + "id": "https://ror.org/00j5dj575" + }, + { + "label": "Mondor Institute of Biomedical Research", + "type": "child", + "id": "https://ror.org/04qe59j94" + }, + { + "label": "Neurosciences, Cognitive Sciences, Neurology and Psychiatry", + "type": "child", + "id": "https://ror.org/05e7p5n27" + }, + { + "label": "Nutrition Obesity & Risk of Thrombosis", + "type": "child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Oncogenesis Stress Signaling", + "type": "child", + "id": "https://ror.org/00bf6bf92" + }, + { + "label": "Paris Cardiovascular Research Center", + "type": "child", + "id": "https://ror.org/03gvnh520" + }, + { + "label": "Pathologie et Virologie Moléculaire", + "type": "child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Pathophysiology and Novel Therapies", + "type": "child", + "id": "https://ror.org/01et6g203" + }, + { + "label": "Physiopathologie et Epidémiologie des Maladies Respiratoires", + "type": "child", + "id": "https://ror.org/04n8sc212" + }, + { + "label": "Physiopathology, metabolism and nutrition", + "type": "child", + "id": "https://ror.org/00cmmh940" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Public Health", + "type": "child", + "id": "https://ror.org/04wbsq162" + }, + { + "label": "Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète", + "type": "child", + "id": "https://ror.org/05xanhp90" + }, + { + "label": "Signalisation, Neurobiologie et Cancer", + "type": "child", + "id": "https://ror.org/01cmdpn82" + }, + { + "label": "Skin Research Center", + "type": "child", + "id": "https://ror.org/0579jh693" + }, + { + "label": "Stem-Cell and Brain Research Institute", + "type": "child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Structure et Instabilité des Génomes", + "type": "child", + "id": "https://ror.org/05pchb838" + }, + { + "label": "Theories and Approaches of Genomic Complexity", + "type": "child", + "id": "https://ror.org/025sfbe73" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Systèmes avancés de délivrance de principes actifs", + "type": "child", + "id": "https://ror.org/053ppfe96" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Investigation Clinique - Innovation Technologique de Lille", + "type": "child", + "id": "https://ror.org/04p4jgt68" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "IMPact de l'Environnement Chimique sur la Santé humaine", + "type": "child", + "id": "https://ror.org/0455vgw31" + }, + { + "label": "Institute for Translational Research in Inflammation", + "type": "child", + "id": "https://ror.org/03qy9z186" + }, + { + "label": "Lille Neurosciences & Cognition", + "type": "child", + "id": "https://ror.org/04p94ax69" + }, + { + "label": "Médicaments et Molécules pour Agir sur les Systèmes Vivants", + "type": "child", + "id": "https://ror.org/0086epd30" + }, + { + "label": "OncoThAI", + "type": "child", + "id": "https://ror.org/04q29nn62" + }, + { + "label": "Laboratoire de Physiologie Cellulaire", + "type": "child", + "id": "https://ror.org/05fjffm04" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Recherche translationnelle sur le diabète", + "type": "child", + "id": "https://ror.org/03pbmtd68" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Bacterial Regulatory RNAs & Medicine", + "type": "child", + "id": "https://ror.org/031y0x195" + }, + { + "label": "Microenvironment and B-cells: Immunopathology, Cell, Differentiation and Cancer", + "type": "child", + "id": "https://ror.org/05p7fmf80" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Fondation pour l'Innovation en Cardiométabolisme et Nutrition", + "type": "child", + "id": "https://ror.org/0045xgt95" + }, + { + "label": "Centre d’Investigation Clinique 1436", + "type": "child", + "id": "https://ror.org/033z83z59" + }, + { + "label": "Hypoxie et Poumon", + "type": "child", + "id": "https://ror.org/02mtpz628" + }, + { + "label": "Centre d'Investigation Clinique - Epidémiologie Clinique Saint-Etienne", + "type": "child", + "id": "https://ror.org/044dp1584" + }, + { + "label": "NeuroDiderot", + "type": "child", + "id": "https://ror.org/014ndnr76" + }, + { + "label": "Centre d'Investigation Clinique de Besançon", + "type": "child", + "id": "https://ror.org/04nk3ny21" + }, + { + "label": "Empenn", + "type": "child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Centre d'Investigation Clinique de Vaccinologie Cochin-Pasteur", + "type": "child", + "id": "https://ror.org/01c1p7750" + }, + { + "label": "Centre d'investigation clinique Quinze-Vingts", + "type": "child", + "id": "https://ror.org/01exas502" + }, + { + "label": "Physiologie et Physiopathlogie Endocriniennes", + "type": "child", + "id": "https://ror.org/05kz79f96" + }, + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Innovations Thérapeutiques en Hémostase", + "type": "child", + "id": "https://ror.org/02jp0cd74" + }, + { + "label": "Physiopathologie, cibles et thérapies de la polyarthrite rhumatoïde", + "type": "child", + "id": "https://ror.org/05vqkgf08" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "Biologie des maladies cardiovasculaires", + "type": "child", + "id": "https://ror.org/0463z7496" + }, + { + "label": "Nutrition, Diabète et Cerveau", + "type": "child", + "id": "https://ror.org/052yj6c27" + }, + { + "label": "Pharmacologie et Transplantation", + "type": "child", + "id": "https://ror.org/013dngs07" + }, + { + "label": "Pathologies Pulmonaires et Plasticité Cellulaire", + "type": "child", + "id": "https://ror.org/02w7ezv91" + }, + { + "label": "Physiopathologie, autoimmunité, maladies neuromusculaire et thérapie régénératrice", + "type": "child", + "id": "https://ror.org/034feyf26" + }, + { + "label": "Marseille Medical Genetics", + "type": "child", + "id": "https://ror.org/01e4wd589" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Centre d'Investigation Clinique Antilles Guyane", + "type": "child", + "id": "https://ror.org/029hdt144" + }, + { + "label": "Immunologie - Immunopathologie - Immunothérapie", + "type": "child", + "id": "https://ror.org/05dbe0t82" + }, + { + "label": "Cancer, Hétérogénéité, Instabilité et Plasticité", + "type": "child", + "id": "https://ror.org/03t4pc386" + }, + { + "label": "Génétique et biologie du développement", + "type": "child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "HIPI - Human Immunology, Pathophysiology and Immunotherapy", + "type": "child", + "id": "https://ror.org/008e1sp22" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Computationnelles", + "type": "child", + "id": "https://ror.org/01e8w0016" + }, + { + "label": "Institut Droit et Santé", + "type": "child", + "id": "https://ror.org/01ddqfh11" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "child", + "id": "https://ror.org/048qk7477" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Etude longitudinale française depuis l'enfance", + "type": "child", + "id": "https://ror.org/03cxgcr75" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Laboratory for the Bioengineering of Tissues", + "type": "child", + "id": "https://ror.org/012zmcc30" + }, + { + "label": "Bacterial Virulence and Chronic Infections", + "type": "child", + "id": "https://ror.org/044jxv425" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "TBM-Core", + "type": "child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Centre d’Investigation Clinique des Hôpitaux Universitaires de Strasbourg", + "type": "child", + "id": "https://ror.org/03zsnyg10" + }, + { + "label": "Bordeaux Imaging Center", + "type": "child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "child", + "id": "https://ror.org/034bena10" + }, + { + "label": "RMeS - Regenerative Medicine and Skeleton", + "type": "child", + "id": "https://ror.org/025agbr41" + }, + { + "label": "Pharmacologie des anti-infectieux et antibiorésistance", + "type": "child", + "id": "https://ror.org/041v99f68" + }, + { + "label": "Nutrition, Inflammation et axe Microbiote-Intestin-Cerveau", + "type": "child", + "id": "https://ror.org/040d87505" + }, + { + "label": "Ischémie Reperfusion, Métabolisme et Inflammation Stérile en Transplantation", + "type": "child", + "id": "https://ror.org/05kkw6065" + }, + { + "label": "Laboratoire de Neurosciences Expérimentales et Cliniques", + "type": "child", + "id": "https://ror.org/04rfxk768" + }, + { + "label": "Anti-infectieux : supports moléculaires des résistances et innovations thérapeutiques", + "type": "child", + "id": "https://ror.org/0458p8g61" + }, + { + "label": "Institut d’Epidémiologie et de Neurologie Tropicale", + "type": "child", + "id": "https://ror.org/023h4a821" + }, + { + "label": "Centre d'Étude des Pathologies Respiratoires", + "type": "child", + "id": "https://ror.org/01vxptj17" + }, + { + "label": "Groupe de Recherches sur l’Analyse Multimodale de la Fonction Cérébrale", + "type": "child", + "id": "https://ror.org/02a9mrq41" + }, + { + "label": "Plateforme d'information et de services pour les maladies rares et les médicaments orphelins", + "type": "child", + "id": "https://ror.org/05thj7870" + }, + { + "label": "Biopathologie de la myéline, neuroprotection et stratégies thérapeutiques", + "type": "child", + "id": "https://ror.org/000n1xh78" + }, + { + "label": "Optimisation Thérapeutique en Neuropsychopharmacologie", + "type": "child", + "id": "https://ror.org/05wzabs02" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Infection, Antimicrobials, Modelling, Evolution", + "type": "child", + "id": "https://ror.org/05hqep952" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "France Génomique", + "type": "child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Neurophysiologie respiratoire expérimentale et clinique", + "type": "child", + "id": "https://ror.org/0259td381" + }, + { + "label": "Genopolys", + "type": "child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Organisation Nucléaire et Oncogenèse", + "type": "child", + "id": "https://ror.org/05q8d3662" + }, + { + "label": "Physiopathogénèse et Traitement des Maladies du Foie", + "type": "child", + "id": "https://ror.org/01zrk7293" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "child", + "id": "https://ror.org/00p73bw06" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Pathogenèse des infections vasculaires", + "type": "child", + "id": "https://ror.org/00gjnk018" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Maladies Rares: Génétique et Métabolisme", + "type": "child", + "id": "https://ror.org/01wvg5605" + }, + { + "label": "Research on healthcare performance", + "type": "child", + "id": "https://ror.org/02ncy5p18" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Physiopathologie et imagerie des troubles neurologiques", + "type": "child", + "id": "https://ror.org/00vsvph51" + }, + { + "label": "Neuropsychologie et Imagerie de la Mémoire Humaine", + "type": "child", + "id": "https://ror.org/04f6tkx67" + }, + { + "label": "Mobilités: Vieillissement, Pathologie, Santé", + "type": "child", + "id": "https://ror.org/028rasm92" + }, + { + "label": "Imagerie Moléculaire et Stratégies Théranostiques", + "type": "child", + "id": "https://ror.org/03y61y350" + }, + { + "label": "Biologie et pharmacologie des plaquettes sanguines : hémostase, thrombose, transfusion", + "type": "child", + "id": "https://ror.org/03qge6j93" + }, + { + "label": "Physique pour la médecine Paris", + "type": "child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Laboratoire d'imagerie translationnelle en oncologie", + "type": "child", + "id": "https://ror.org/05qy9ka59" + }, + { + "label": "RESTORE", + "type": "child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Génomique fonctionnelle comparative", + "type": "child", + "id": "https://ror.org/016nv8j08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "L’Inserm dans Paris et l’Île-de-France Centre Nord", + "type": "child", + "id": "https://ror.org/00jyt4d57" + }, + { + "label": "Défaillance Cardiovasculaire Aiguë et Chronique", + "type": "child", + "id": "https://ror.org/05ft9wv42" + }, + { + "label": "Nutrition-Génétique et Exposition aux Risques Environnementaux", + "type": "child", + "id": "https://ror.org/053d03003" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "The Enteric Nervous System in Gut and Brain Disorders", + "type": "child", + "id": "https://ror.org/01kbkse74" + }, + { + "label": "UMS Phénotypage du petit animal", + "type": "child", + "id": "https://ror.org/05pm2xt51" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Fondation Voir & Entendre", + "type": "child", + "id": "https://ror.org/01ph0t361" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Maladies génétiques d’expression pédiatrique", + "type": "child", + "id": "https://ror.org/0387w4y93" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Production et analyse de données en sciences de la vie et en santé", + "type": "child", + "id": "https://ror.org/03p2d3k93" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénieurie des Connaissances en e-Santé", + "type": "child", + "id": "https://ror.org/01jr1v359" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Centre de Recherche en Myologie", + "type": "child", + "id": "https://ror.org/02e3eqz10" + }, + { + "label": "PremUP", + "type": "child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Nutrition et obésité : approches systémiques", + "type": "child", + "id": "https://ror.org/00qdphm77" + }, + { + "label": "Unité de recherche sur les maladies cardiovasculaires et métaboliques", + "type": "child", + "id": "https://ror.org/043y2tx42" + }, + { + "label": "Institut Pierre Louis d‘Épidémiologie et de Santé Publique", + "type": "child", + "id": "https://ror.org/02qqh1125" + }, + { + "label": "Maladies rénales fréquentes et rares : des mécanismes moléculaires à la médecine personnalisée", + "type": "child", + "id": "https://ror.org/01x3ydm75" + }, + { + "label": "Infection et inflammation", + "type": "child", + "id": "https://ror.org/021sh3243" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Laboratoire physiopathologie et pharmacologie clinique de la douleur", + "type": "child", + "id": "https://ror.org/02k243t26" + }, + { + "label": "Handicap neuromusculaire : Physiopathologie, Biothérapie et Pharmacologie appliquées", + "type": "child", + "id": "https://ror.org/02nxezb95" + }, + { + "label": "Neuropsychologie Cognitive et Physiopathologie de la Schizophrénie", + "type": "child", + "id": "https://ror.org/02zwf7d57" + }, + { + "label": "COMETE - Mobilités : Vieillissement, pathologie, santé", + "type": "child", + "id": "https://ror.org/018z38380" + }, + { + "label": "Endothélium, valvulopathies et insuffisance cardiaque", + "type": "child", + "id": "https://ror.org/017ed2k28" + }, + { + "label": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "type": "child", + "id": "https://ror.org/035gq6r08" + }, + { + "label": "Center for Research in Transplantation and Translational Immunology", + "type": "child", + "id": "https://ror.org/01165k395" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "methodS in Patient-centered outcomes and HEalth ResEarch", + "type": "child", + "id": "https://ror.org/013m8h627" + }, + { + "label": "Translational Research in Gene Therapy", + "type": "child", + "id": "https://ror.org/02tg88m31" + }, + { + "label": "Dynamique Microbienne associée aux Infections Urinaires et Respiratoires", + "type": "child", + "id": "https://ror.org/01a6c6c20" + }, + { + "label": "Génomique du cancer et du cerveau", + "type": "child", + "id": "https://ror.org/05k71g406" + }, + { + "label": "Unité de recherche interdisciplinaire pour la prévention et le traitement des cancers", + "type": "child", + "id": "https://ror.org/04b8tg719" + }, + { + "label": "Neuroendocrine, Endocrine and Germinal Differentiation Communication", + "type": "child", + "id": "https://ror.org/02yvdat18" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "child", + "id": "https://ror.org/05dy6wv04" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02wfhk785.json b/test-relationship-delete-v2/updates/02wfhk785.json new file mode 100644 index 000000000..fbfa5a2ee --- /dev/null +++ b/test-relationship-delete-v2/updates/02wfhk785.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 2772810, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.06833, + "lng": 16.35607, + "name": "Laxenburg" + } + } + ], + "established": 1972, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1955 9478" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100011859" + ], + "preferred": "501100011859" + }, + { + "type": "wikidata", + "all": [ + "Q212102" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.75276.31" + ], + "preferred": "grid.75276.31" + } + ], + "id": "https://ror.org/02wfhk785", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iiasa.ac.at" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/International_Institute_for_Applied_Systems_Analysis" + } + ], + "names": [ + { + "value": "International Institute for Applied Systems Analysis", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Internationales Institut Fuer Angewandte Systemanalyse", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IIASA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Complexity Science Hub Vienna", + "type": "related", + "id": "https://ror.org/023dz9m50" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02x3f7722.json b/test-relationship-delete-v2/updates/02x3f7722.json new file mode 100644 index 000000000..05aacd9bf --- /dev/null +++ b/test-relationship-delete-v2/updates/02x3f7722.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 5008327, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.10976, + "lng": -86.48002, + "name": "Saint Joseph" + } + } + ], + "established": 1899, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0443 0139" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q22059525" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.490238.4" + ], + "preferred": "grid.490238.4" + } + ], + "id": "https://ror.org/02x3f7722", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.lakelandhealth.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Lakeland_Health" + } + ], + "names": [ + { + "value": "Lakeland Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02x5c5y60.json b/test-relationship-delete-v2/updates/02x5c5y60.json new file mode 100644 index 000000000..0082e3de2 --- /dev/null +++ b/test-relationship-delete-v2/updates/02x5c5y60.json @@ -0,0 +1,93 @@ +{ + "locations": [ + { + "geonames_id": 3123921, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.30544, + "lng": -2.88116, + "name": "Derio" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0639 2420", + "0000 0004 0435 4789" + ], + "preferred": "0000 0004 0639 2420" + }, + { + "type": "grid", + "all": [ + "grid.420175.5" + ], + "preferred": "grid.420175.5" + }, + { + "type": "wikidata", + "all": [ + "Q30282406" + ], + "preferred": "Q30282406" + } + ], + "id": "https://ror.org/02x5c5y60", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cicbiogune.es/" + } + ], + "names": [ + { + "value": "CIC bioGUNE", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centro de Investigación Cooperativa en Biociencias", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Center for Cooperative Research in Biosciences", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Asociacion Centro De Investigacion Cooperativa En Biociencias", + "types": [ + "label" + ], + "lang": "pt" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02xkjwb21.json b/test-relationship-delete-v2/updates/02xkjwb21.json new file mode 100644 index 000000000..4d4e2caa0 --- /dev/null +++ b/test-relationship-delete-v2/updates/02xkjwb21.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.434658.8" + ], + "preferred": "grid.434658.8" + } + ], + "id": "https://ror.org/02xkjwb21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fundacionconfemetal.com" + } + ], + "names": [ + { + "value": "Fundación Confemetal", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02xnnng09.json b/test-relationship-delete-v2/updates/02xnnng09.json new file mode 100644 index 000000000..1c5a6e753 --- /dev/null +++ b/test-relationship-delete-v2/updates/02xnnng09.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0390 3862" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30261615" + ], + "preferred": "Q30261615" + }, + { + "type": "grid", + "all": [ + "grid.462965.a" + ], + "preferred": "grid.462965.a" + } + ], + "id": "https://ror.org/02xnnng09", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.centralesupelec.fr/fr/geeps-group-electrical-engineering-paris" + } + ], + "names": [ + { + "value": "Laboratoire de Génie Électrique et Électronique de Paris", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Group of Electrical Engineering - Paris Laboratory", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Group of Electrical Engineering - Paris", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "GeePs", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02y0cs367.json b/test-relationship-delete-v2/updates/02y0cs367.json new file mode 100644 index 000000000..068838302 --- /dev/null +++ b/test-relationship-delete-v2/updates/02y0cs367.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 9972834, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -33.83488, + "lng": 151.05703, + "name": "Newington" + } + } + ], + "established": 1926, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8855 3435" + ], + "preferred": "0000 0000 8855 3435" + }, + { + "type": "grid", + "all": [ + "grid.489063.0" + ], + "preferred": "grid.489063.0" + }, + { + "type": "wikidata", + "all": [ + "Q7279568" + ], + "preferred": "Q7279568" + } + ], + "id": "https://ror.org/02y0cs367", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fpnsw.org.au/" + } + ], + "names": [ + { + "value": "Family Planning NSW", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Family Planning Australia", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02y6dp041.json b/test-relationship-delete-v2/updates/02y6dp041.json new file mode 100644 index 000000000..060dfc021 --- /dev/null +++ b/test-relationship-delete-v2/updates/02y6dp041.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100016153" + ], + "preferred": "100016153" + } + ], + "id": "https://ror.org/02y6dp041", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.energy.gov/oe/office-electricity" + } + ], + "names": [ + { + "value": "Office of Electricity", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "United States Department of Energy Office of Electricity", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "U.S. Department of Energy Office of Electricity", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Office of Electricity Delivery and Energy Reliability", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Grid Systems and Components", + "type": "child", + "id": "https://ror.org/04bym8a28" + }, + { + "label": "Grid Controls and Communications Division", + "type": "child", + "id": "https://ror.org/04b1tq154" + }, + { + "label": "United States Department of Energy", + "type": "parent", + "id": "https://ror.org/01bj3aw27" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02ygek028.json b/test-relationship-delete-v2/updates/02ygek028.json new file mode 100644 index 000000000..acbb21aca --- /dev/null +++ b/test-relationship-delete-v2/updates/02ygek028.json @@ -0,0 +1,124 @@ +{ + "locations": [ + { + "geonames_id": 2800866, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + } + } + ], + "established": 1858, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0941 6203" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100008137" + ], + "preferred": "501100008137" + }, + { + "type": "wikidata", + "all": [ + "Q1391752" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434229.a" + ], + "preferred": "grid.434229.a" + } + ], + "id": "https://ror.org/02ygek028", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.usaintlouis.be/sl/1058.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Universit%C3%A9_Saint-Louis_Bruxelles" + } + ], + "names": [ + { + "value": "UCLouvain Saint-Louis Brussels", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Facultés Universitaires Saint-Louis", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université Saint-Louis - Bruxelles", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université Saint-Louis", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Saint-Louis University", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Facultés universitaires saint-louis", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "USLB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02yjyfs84.json b/test-relationship-delete-v2/updates/02yjyfs84.json new file mode 100644 index 000000000..ed3f0fd2b --- /dev/null +++ b/test-relationship-delete-v2/updates/02yjyfs84.json @@ -0,0 +1,73 @@ +{ + "locations": [ + { + "geonames_id": 2946447, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.73438, + "lng": 7.09549, + "name": "Bonn" + } + } + ], + "established": 2022, + "external_ids": [], + "id": "https://ror.org/02yjyfs84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mpinb.mpg.de" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Max-Planck-Institut_f%C3%BCr_Neurobiologie_des_Verhaltens_-_caesar" + } + ], + "names": [ + { + "value": "Max Planck Institute for Neurobiology of Behavior – caesar", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stiftung Caesar", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MPINB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Max Planck Society", + "type": "parent", + "id": "https://ror.org/01hhn8329" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02zms4m18.json b/test-relationship-delete-v2/updates/02zms4m18.json new file mode 100644 index 000000000..96cd5c682 --- /dev/null +++ b/test-relationship-delete-v2/updates/02zms4m18.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1988, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2191 9006" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434668.b" + ], + "preferred": "grid.434668.b" + } + ], + "id": "https://ror.org/02zms4m18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fundaciononce.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ONCE" + } + ], + "names": [ + { + "value": "Fundación ONCE", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fundación ONCE for Cooperation and Social Inclusion of Persons with Disabilities", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ONCE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/02zv3kp89.json b/test-relationship-delete-v2/updates/02zv3kp89.json new file mode 100644 index 000000000..1023afd50 --- /dev/null +++ b/test-relationship-delete-v2/updates/02zv3kp89.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2874545, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.12773, + "lng": 11.62916, + "name": "Magdeburg" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.494321.9" + ], + "preferred": "grid.494321.9" + }, + { + "type": "wikidata", + "all": [ + "Q123647955" + ], + "preferred": "Q123647955" + } + ], + "id": "https://ror.org/02zv3kp89", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mule.sachsen-anhalt.de" + } + ], + "names": [ + { + "value": "Ministerium für Umwelt, Landwirtschaft und Energie des Landes Sachsen-Anhalt", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry for the Environment, Agriculture and Energy of the State of Saxony-Anhalt", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MULE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/030d6wr93.json b/test-relationship-delete-v2/updates/030d6wr93.json new file mode 100644 index 000000000..9e4a2225d --- /dev/null +++ b/test-relationship-delete-v2/updates/030d6wr93.json @@ -0,0 +1,94 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": 2018, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q52607321" + ], + "preferred": "Q52607321" + } + ], + "id": "https://ror.org/030d6wr93", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://lima.unistra.fr" + } + ], + "names": [ + { + "value": "Laboratoire d'innovation moléculaire et applications", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire d’Innovation Moléculaire & Applications", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LIMA - Laboratoire d'innovation moléculaire et applications", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LIMA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Upper Alsace", + "type": "parent", + "id": "https://ror.org/04k8k6n84" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/030gd0911.json b/test-relationship-delete-v2/updates/030gd0911.json new file mode 100644 index 000000000..cd21a5cf4 --- /dev/null +++ b/test-relationship-delete-v2/updates/030gd0911.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2509954, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.47391, + "lng": -0.37966, + "name": "Valencia" + } + } + ], + "established": 1984, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1807 8930" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423830.e" + ], + "preferred": "grid.423830.e" + } + ], + "id": "https://ror.org/030gd0911", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.aidima.eu/" + } + ], + "names": [ + { + "value": "AIDIMA Technology Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AIDIMA - Instituto Tecnológico del Mueble", + "types": [ + "label" + ], + "lang": "es" + } + ], + "relationships": [ + { + "label": "Instituto Tecnológico Metalmecánico, Mueble, Madera, Embalaje y Afines", + "type": "successor", + "id": "https://ror.org/057f9wg13" + } + ], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/030przz70.json b/test-relationship-delete-v2/updates/030przz70.json new file mode 100644 index 000000000..22a6c23d8 --- /dev/null +++ b/test-relationship-delete-v2/updates/030przz70.json @@ -0,0 +1,105 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": 1980, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 3260" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.464078.9" + ], + "preferred": "grid.464078.9" + } + ], + "id": "https://ror.org/030przz70", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ibmc.cnrs.fr/laboratoire/m3i/" + } + ], + "names": [ + { + "value": "Modèles Insectes de l'Immunité Innée", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Immune Response and Development in Insects", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Réponse Immunitaire et Développement chez les Insectes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Insect Models of Innate Immunity", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "RIDI", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "M3I", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/030tc8e27.json b/test-relationship-delete-v2/updates/030tc8e27.json new file mode 100644 index 000000000..a9e5d5654 --- /dev/null +++ b/test-relationship-delete-v2/updates/030tc8e27.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3996069, + "geonames_details": { + "country_code": "MX", + "country_name": "Mexico", + "lat": 32.62781, + "lng": -115.45446, + "name": "Mexicali" + } + } + ], + "established": 1982, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30293933" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.441602.5" + ], + "preferred": "grid.441602.5" + } + ], + "id": "https://ror.org/030tc8e27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ueepmxl.edu.mx" + } + ], + "names": [ + { + "value": "Universidad Estatal de Estudios Pedagógicos", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "UEEP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0315e5x55.json b/test-relationship-delete-v2/updates/0315e5x55.json new file mode 100644 index 000000000..2cfb5dadd --- /dev/null +++ b/test-relationship-delete-v2/updates/0315e5x55.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q18156000" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457355.5" + ], + "preferred": "grid.457355.5" + } + ], + "id": "https://ror.org/0315e5x55", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.inria.fr/en/centre/saclay" + } + ], + "names": [ + { + "value": "Inria Saclay - Île-de-France Research Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Inria Saclay - Île de France", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [ + { + "label": "French Institute for Research in Computer Science and Automation", + "type": "parent", + "id": "https://ror.org/02kvxyf05" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/031p4kj21.json b/test-relationship-delete-v2/updates/031p4kj21.json new file mode 100644 index 000000000..59a4b9cfc --- /dev/null +++ b/test-relationship-delete-v2/updates/031p4kj21.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1935, + "external_ids": [ + { + "all": [ + "0000 0004 0399 4514" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4969003" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.418482.3" + ], + "preferred": "grid.418482.3", + "type": "grid" + } + ], + "id": "https://ror.org/031p4kj21", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/bristol-royal-infirmary/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Bristol_Royal_Infirmary" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.4594, + "lng": -2.596, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bristol Royal Infirmary" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BRI" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/031yjqj32.json b/test-relationship-delete-v2/updates/031yjqj32.json new file mode 100644 index 000000000..5c2ce98fc --- /dev/null +++ b/test-relationship-delete-v2/updates/031yjqj32.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6138495, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.30713, + "lng": -73.26259, + "name": "Saint-Jean-sur-Richelieu" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0392 8621" + ], + "preferred": "0000 0004 0392 8621" + }, + { + "type": "wikidata", + "all": [ + "Q3009991" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462162.5" + ], + "preferred": "grid.462162.5" + } + ], + "id": "https://ror.org/031yjqj32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cstjean.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/C%C3%A9gep_de_Saint-Jean-sur-Richelieu" + } + ], + "names": [ + { + "value": "Cégep Saint-Jean-sur-Richelieu", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0321g0743.json b/test-relationship-delete-v2/updates/0321g0743.json new file mode 100644 index 000000000..c5901cf3d --- /dev/null +++ b/test-relationship-delete-v2/updates/0321g0743.json @@ -0,0 +1,110 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1926, + "external_ids": [ + { + "all": [ + "0000 0001 2284 9388" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100008017" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q266227" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.14925.3b" + ], + "preferred": "grid.14925.3b", + "type": "grid" + } + ], + "id": "https://ror.org/0321g0743", + "links": [ + { + "type": "website", + "value": "http://www.gustaveroussy.fr/en" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Institut_Gustave_Roussy" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.7939, + "lng": 2.35992, + "name": "Villejuif" + }, + "geonames_id": 2968705 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institut Gustave Roussy" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Institut Gustave-Roussy" + } + ], + "relationships": [ + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "child", + "id": "https://ror.org/00p73bw06" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/032mthd30.json b/test-relationship-delete-v2/updates/032mthd30.json new file mode 100644 index 000000000..db03be70b --- /dev/null +++ b/test-relationship-delete-v2/updates/032mthd30.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3118594, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.32718, + "lng": -3.7635, + "name": "Leganés" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.423614.6" + ], + "preferred": "grid.423614.6" + } + ], + "id": "https://ror.org/032mthd30", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.aitemin.es/index_e.php" + } + ], + "names": [ + { + "value": "Association for Research and Industrial Development of Natural Resources", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Asociación para Investigación y el Desarrollo Industrial de los Recursos Naturales", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "AITEMIN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/034dfs572.json b/test-relationship-delete-v2/updates/034dfs572.json new file mode 100644 index 000000000..a6fe4d32a --- /dev/null +++ b/test-relationship-delete-v2/updates/034dfs572.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.512209.d" + ], + "preferred": "grid.512209.d" + } + ], + "id": "https://ror.org/034dfs572", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ecopathinternational.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ecopath" + } + ], + "names": [ + { + "value": "Ecopath International Initiative", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "EII", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/035gq6r08.json b/test-relationship-delete-v2/updates/035gq6r08.json new file mode 100644 index 000000000..f68ae2cc6 --- /dev/null +++ b/test-relationship-delete-v2/updates/035gq6r08.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011879" + ], + "preferred": "501100011879" + }, + { + "type": "wikidata", + "all": [ + "Q124525851" + ], + "preferred": "Q124525851" + } + ], + "id": "https://ror.org/035gq6r08", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.labex-lermit.fr" + } + ], + "names": [ + { + "value": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "LabEx LERMIT", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Laboratory of Excellence in Research on Medication and Innovative Therapeutics", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LERMIT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0364rd617.json b/test-relationship-delete-v2/updates/0364rd617.json new file mode 100644 index 000000000..f7b6eb7b9 --- /dev/null +++ b/test-relationship-delete-v2/updates/0364rd617.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2509954, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.47391, + "lng": -0.37966, + "name": "Valencia" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2162 6430" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5917720" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.507092.9" + ], + "preferred": "grid.507092.9" + } + ], + "id": "https://ror.org/0364rd617", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://istas.net" + } + ], + "names": [ + { + "value": "Instituto Sindical de Trabajo Ambiente y Salud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ISTAS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/036mest28.json b/test-relationship-delete-v2/updates/036mest28.json new file mode 100644 index 000000000..3a0bdddfe --- /dev/null +++ b/test-relationship-delete-v2/updates/036mest28.json @@ -0,0 +1,87 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.463808.1" + ], + "preferred": "grid.463808.1" + } + ], + "id": "https://ror.org/036mest28", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www-archbac.u-psud.fr/" + } + ], + "names": [ + { + "value": "Biology of Extremophiles Laboratory", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire de Biologie Moleculaire du Gène chez les Extremophiles", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "BMGE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Délégation Ile-de-France Sud", + "type": "parent", + "id": "https://ror.org/01y8j9r24" + }, + { + "label": "Institute of Integrative Biology of the Cell", + "type": "parent", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "University of Paris-Sud", + "type": "parent", + "id": "https://ror.org/028rypz17" + } + ], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/037405308.json b/test-relationship-delete-v2/updates/037405308.json new file mode 100644 index 000000000..9b6012735 --- /dev/null +++ b/test-relationship-delete-v2/updates/037405308.json @@ -0,0 +1,172 @@ +{ + "locations": [ + { + "geonames_id": 2174003, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -27.46794, + "lng": 153.02809, + "name": "Brisbane" + } + } + ], + "established": 1859, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0380 0628" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100003550" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3112627" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.453171.5" + ], + "preferred": "grid.453171.5" + } + ], + "id": "https://ror.org/037405308", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.qld.gov.au" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Government_of_Queensland" + } + ], + "names": [ + { + "value": "Queensland Government", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Government of Queensland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State of Queensland", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Australian e-Health Research Centre", + "type": "child", + "id": "https://ror.org/04ywhbc61" + }, + { + "label": "Department of Agriculture and Fisheries", + "type": "child", + "id": "https://ror.org/05s5aag36" + }, + { + "label": "Department of Natural Resources, Mines and Energy", + "type": "child", + "id": "https://ror.org/007zyap28" + }, + { + "label": "Department of Transport and Main Roads", + "type": "child", + "id": "https://ror.org/024ws6f80" + }, + { + "label": "Department of the Premier and Cabinet", + "type": "child", + "id": "https://ror.org/05sz45x40" + }, + { + "label": "Queensland Academy of Sport", + "type": "child", + "id": "https://ror.org/04tnw9626" + }, + { + "label": "Queensland Curriculum and Assessment Authority", + "type": "child", + "id": "https://ror.org/05fvmm618" + }, + { + "label": "Queensland Department of Education", + "type": "child", + "id": "https://ror.org/043k84p27" + }, + { + "label": "Queensland Department of Environment and Science", + "type": "child", + "id": "https://ror.org/02wtcj248" + }, + { + "label": "Queensland Health", + "type": "child", + "id": "https://ror.org/00c1dt378" + }, + { + "label": "Queensland Police Service", + "type": "child", + "id": "https://ror.org/04p74nw72" + }, + { + "label": "Queensland Rail", + "type": "child", + "id": "https://ror.org/01fykd523" + }, + { + "label": "Seqwater", + "type": "child", + "id": "https://ror.org/01vz3ga16" + }, + { + "label": "Australian Tropical Herbarium", + "type": "related", + "id": "https://ror.org/02bjj9p45" + }, + { + "label": "Advance Queensland", + "type": "child", + "id": "https://ror.org/05fb23t53" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/037p13h95.json b/test-relationship-delete-v2/updates/037p13h95.json new file mode 100644 index 000000000..998ea2303 --- /dev/null +++ b/test-relationship-delete-v2/updates/037p13h95.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3674962, + "geonames_details": { + "country_code": "CO", + "country_name": "Colombia", + "lat": 6.25184, + "lng": -75.56359, + "name": "Medellín" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0812 5789" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100018005" + ], + "preferred": "100018005" + }, + { + "type": "grid", + "all": [ + "grid.411140.1" + ], + "preferred": "grid.411140.1" + }, + { + "type": "wikidata", + "all": [ + "Q6156377" + ], + "preferred": "Q6156377" + } + ], + "id": "https://ror.org/037p13h95", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ces.edu.co" + } + ], + "names": [ + { + "value": "CES University", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03a3nj982.json b/test-relationship-delete-v2/updates/03a3nj982.json new file mode 100644 index 000000000..522e21870 --- /dev/null +++ b/test-relationship-delete-v2/updates/03a3nj982.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432540.4" + ], + "preferred": "grid.432540.4" + } + ], + "id": "https://ror.org/03a3nj982", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ecoinstitut.coop" + } + ], + "names": [ + { + "value": "Ecoinstitut", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03ab0zs98.json b/test-relationship-delete-v2/updates/03ab0zs98.json new file mode 100644 index 000000000..dbd779417 --- /dev/null +++ b/test-relationship-delete-v2/updates/03ab0zs98.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0368 9704" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463900.8" + ], + "preferred": "grid.463900.8" + } + ], + "id": "https://ror.org/03ab0zs98", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.imo.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratoire de Mathématiques d'Orsay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire de Mathématiques d’Orsay", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Mathematics Laboratory of Orsay", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LMO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03artm726.json b/test-relationship-delete-v2/updates/03artm726.json new file mode 100644 index 000000000..af6a75f5b --- /dev/null +++ b/test-relationship-delete-v2/updates/03artm726.json @@ -0,0 +1,91 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1955, + "external_ids": [ + { + "all": [ + "0000 0004 0435 1924" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "grid.417118.a" + ], + "preferred": "grid.417118.a", + "type": "grid" + }, + { + "all": [ + "Q30286651" + ], + "preferred": "Q30286651", + "type": "wikidata" + } + ], + "id": "https://ror.org/03artm726", + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/locations/beaumont-hospital-royal-oak" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.48948, + "lng": -83.14465, + "name": "Royal Oak" + }, + "geonames_id": 5007804 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Beaumont Hospital, Royal Oak" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "William Beaumont Hospital, Royal Oak" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "WBH" + } + ], + "relationships": [ + { + "label": "Oakland University", + "type": "related", + "id": "https://ror.org/01ythxj32" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03b21sh32.json b/test-relationship-delete-v2/updates/03b21sh32.json new file mode 100644 index 000000000..6d0a092e8 --- /dev/null +++ b/test-relationship-delete-v2/updates/03b21sh32.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3128026, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0467 2410" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100014371" + ], + "preferred": "501100014371" + }, + { + "type": "wikidata", + "all": [ + "Q4867846" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462072.5" + ], + "preferred": "grid.462072.5" + } + ], + "id": "https://ror.org/03b21sh32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bcamath.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Basque_Center_for_Applied_Mathematics" + } + ], + "names": [ + { + "value": "Basque Center for Applied Mathematics", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BCAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03bk8p931.json b/test-relationship-delete-v2/updates/03bk8p931.json new file mode 100644 index 000000000..87d63377d --- /dev/null +++ b/test-relationship-delete-v2/updates/03bk8p931.json @@ -0,0 +1,75 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1970, + "external_ids": [ + { + "all": [ + "0000 0004 0450 6121" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q14716129" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.413656.3" + ], + "preferred": "grid.413656.3", + "type": "grid" + } + ], + "id": "https://ror.org/03bk8p931", + "links": [ + { + "type": "website", + "value": "http://www.helendevoschildrens.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Helen_DeVos_Children%27s_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.97017, + "lng": -85.665668, + "name": "Grand Rapids" + }, + "geonames_id": 4994358 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Helen DeVos Children's Hospital" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03c4atk17.json b/test-relationship-delete-v2/updates/03c4atk17.json new file mode 100644 index 000000000..43562e0f2 --- /dev/null +++ b/test-relationship-delete-v2/updates/03c4atk17.json @@ -0,0 +1,117 @@ +{ + "locations": [ + { + "geonames_id": 2659836, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.01008, + "lng": 8.96004, + "name": "Lugano" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2203 2861" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q689617", + "Q27484979" + ], + "preferred": "Q689617" + }, + { + "type": "grid", + "all": [ + "grid.29078.34" + ], + "preferred": "grid.29078.34" + } + ], + "id": "https://ror.org/03c4atk17", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.usi.ch" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Universit%C3%A0_della_Svizzera_italiana" + } + ], + "names": [ + { + "value": "Università della Svizzera italiana", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Lugano", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Italian Switzerland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université de la Suisse italienne", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Southern Switzerland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "USI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Dalle Molle Institute for Artificial Intelligence Research", + "type": "child", + "id": "https://ror.org/013355g38" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03c7e3050.json b/test-relationship-delete-v2/updates/03c7e3050.json new file mode 100644 index 000000000..62a17f6d0 --- /dev/null +++ b/test-relationship-delete-v2/updates/03c7e3050.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4904 4581" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.477257.4" + ], + "preferred": "grid.477257.4" + } + ], + "id": "https://ror.org/03c7e3050", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uab.cat/web/fundacio-salut-i-envelliment-1345754058073.html" + } + ], + "names": [ + { + "value": "Fundació Salut i Envelliment UAB", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Universitat Autònoma de Barcelona", + "type": "related", + "id": "https://ror.org/052g8jq94" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03cmntr54.json b/test-relationship-delete-v2/updates/03cmntr54.json new file mode 100644 index 000000000..a729df75a --- /dev/null +++ b/test-relationship-delete-v2/updates/03cmntr54.json @@ -0,0 +1,108 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1975, + "external_ids": [ + { + "all": [ + "501100022432" + ], + "preferred": "501100022432", + "type": "fundref" + }, + { + "all": [ + "grid.17423.33" + ], + "preferred": "grid.17423.33", + "type": "grid" + }, + { + "all": [ + "0000 0004 1767 6621" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1583495" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03cmntr54", + "links": [ + { + "type": "website", + "value": "https://www.iac.es" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 28.46824, + "lng": -16.25462, + "name": "Tenerife" + }, + "geonames_id": 2511174 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IAC" + }, + { + "lang": "ca", + "types": [ + "label" + ], + "value": "Institut Astrofísic de les Illes Canàries" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Instituto de Astrofísica de Canarias" + } + ], + "relationships": [ + { + "label": "Isaac Newton Group", + "type": "child", + "id": "https://ror.org/054tmk179" + }, + { + "label": "Red Española de Supercomputación", + "type": "related", + "id": "https://ror.org/02x2fbb57" + }, + { + "label": "Universidad de La Laguna", + "type": "parent", + "id": "https://ror.org/01r9z8p25" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03f6cng42.json b/test-relationship-delete-v2/updates/03f6cng42.json new file mode 100644 index 000000000..4c355c95d --- /dev/null +++ b/test-relationship-delete-v2/updates/03f6cng42.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9850 0097" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434693.f" + ], + "preferred": "grid.434693.f" + } + ], + "id": "https://ror.org/03f6cng42", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.opti.org" + } + ], + "names": [ + { + "value": "Observatorio de Prospectiva Tecnológica Industrial", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Observatory for Prospective Technological Industry", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "OPTI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03fdma228.json b/test-relationship-delete-v2/updates/03fdma228.json new file mode 100644 index 000000000..dce66ff24 --- /dev/null +++ b/test-relationship-delete-v2/updates/03fdma228.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8785 8261" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5871651" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434260.7" + ], + "preferred": "grid.434260.7" + } + ], + "id": "https://ror.org/03fdma228", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://fride.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/FRIDE" + } + ], + "names": [ + { + "value": "Fundación para las Relaciones Internacionales y el Diálogo Exterior", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Foundation for International Relations and Foreign Dialogue", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "FRIDE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03fpf5m04.json b/test-relationship-delete-v2/updates/03fpf5m04.json new file mode 100644 index 000000000..c471ba826 --- /dev/null +++ b/test-relationship-delete-v2/updates/03fpf5m04.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2634308, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.34603, + "lng": -2.97665, + "name": "Weston-super-Mare" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0484 4171" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.439741.c" + ], + "preferred": "grid.439741.c" + } + ], + "id": "https://ror.org/03fpf5m04", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.waht.nhs.uk/" + } + ], + "names": [ + { + "value": "Weston Area Health NHS Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Weston General Hospital", + "type": "child", + "id": "https://ror.org/03mc19e15" + } + ], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03g5ew477.json b/test-relationship-delete-v2/updates/03g5ew477.json new file mode 100644 index 000000000..ad3e1a7a7 --- /dev/null +++ b/test-relationship-delete-v2/updates/03g5ew477.json @@ -0,0 +1,126 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1757 1854" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100017170" + ], + "preferred": "100017170" + }, + { + "type": "wikidata", + "all": [ + "Q3775506" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5853.b" + ], + "preferred": "grid.5853.b" + } + ], + "id": "https://ror.org/03g5ew477", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.icfo.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ICFO_%E2%80%93_The_Institute_of_Photonic_Sciences" + } + ], + "names": [ + { + "value": "Institute of Photonic Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto de Ciencias Fotónicas", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Institut de Ciències Fotòniques", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "ICFO", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "ICFO-CERCA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Barcelona Institute for Science and Technology", + "type": "parent", + "id": "https://ror.org/03kpps236" + }, + { + "label": "CERCA Institution", + "type": "parent", + "id": "https://ror.org/01bkbaq61" + }, + { + "label": "Universitat Politècnica de Catalunya", + "type": "parent", + "id": "https://ror.org/03mb6wj31" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03gbd4842.json b/test-relationship-delete-v2/updates/03gbd4842.json new file mode 100644 index 000000000..d38d5ac8a --- /dev/null +++ b/test-relationship-delete-v2/updates/03gbd4842.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1906, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q14715871" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.449497.3" + ], + "preferred": "grid.449497.3" + } + ], + "id": "https://ror.org/03gbd4842", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.suffolk.edu/madrid-campus" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Suffolk_University" + } + ], + "names": [ + { + "value": "Suffolk University Madrid", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Suffolk University Madrid Campus", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidad Suffolk Madrid", + "types": [ + "label" + ], + "lang": "es" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03gmkya61.json b/test-relationship-delete-v2/updates/03gmkya61.json new file mode 100644 index 000000000..42d5e35ad --- /dev/null +++ b/test-relationship-delete-v2/updates/03gmkya61.json @@ -0,0 +1,87 @@ +{ + "locations": [ + { + "geonames_id": 2995206, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.72692, + "lng": 2.28301, + "name": "Massy" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109621296" + ], + "preferred": "Q109621296" + } + ], + "id": "https://ror.org/03gmkya61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www6.versailles-grignon.inrae.fr/umr-sayfood/UMR-SayFood" + } + ], + "names": [ + { + "value": "SayFood - Food and Bioproduct Engineering", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SayFood", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Paris-saclay food and bioproduct engineering research unit", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03gna4510.json b/test-relationship-delete-v2/updates/03gna4510.json new file mode 100644 index 000000000..fa1bf1065 --- /dev/null +++ b/test-relationship-delete-v2/updates/03gna4510.json @@ -0,0 +1,68 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [ + { + "all": [ + "grid.454367.7" + ], + "preferred": "grid.454367.7", + "type": "grid" + } + ], + "id": "https://ror.org/03gna4510", + "links": [ + { + "type": "website", + "value": "http://www.ukcrcexpmed.org.uk/BristolCVBRU/Pages/FacilityWelcome.aspx" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.459736, + "lng": -2.596797, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "NIHR Bristol Cardiovascular Biomedical Research Unit" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + }, + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03h4zjr91.json b/test-relationship-delete-v2/updates/03h4zjr91.json new file mode 100644 index 000000000..830b42765 --- /dev/null +++ b/test-relationship-delete-v2/updates/03h4zjr91.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 5381396, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 34.14778, + "lng": -118.14452, + "name": "Pasadena" + } + } + ], + "established": 1904, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0373 5870" + ], + "preferred": "0000 0004 0373 5870" + }, + { + "type": "grid", + "all": [ + "grid.432988.c" + ], + "preferred": "grid.432988.c" + }, + { + "type": "fundref", + "all": [ + "100029528" + ], + "preferred": "100029528" + } + ], + "id": "https://ror.org/03h4zjr91", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://obs.carnegiescience.edu/" + } + ], + "names": [ + { + "value": "Carnegie Observatories", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Carnegie Institution of Washington", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Carnegie Institution for Science", + "type": "parent", + "id": "https://ror.org/04jr01610" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03hpdk269.json b/test-relationship-delete-v2/updates/03hpdk269.json new file mode 100644 index 000000000..311a9a4d1 --- /dev/null +++ b/test-relationship-delete-v2/updates/03hpdk269.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3124569, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.35, + "lng": 2.08333, + "name": "Cornellà de Llobregat" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.8563.8" + ], + "preferred": "grid.8563.8" + } + ], + "id": "https://ror.org/03hpdk269", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cric.cat/" + } + ], + "names": [ + { + "value": "Catalonian Research and Innovation Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CRIC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ateknea Solutions (Spain)", + "type": "successor", + "id": "https://ror.org/01m260238" + } + ], + "status": "inactive", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03hv28176.json b/test-relationship-delete-v2/updates/03hv28176.json new file mode 100644 index 000000000..8299d7c35 --- /dev/null +++ b/test-relationship-delete-v2/updates/03hv28176.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2820860, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.52266, + "lng": 9.05222, + "name": "Tübingen" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0493 3318" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1813768" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418956.7" + ], + "preferred": "grid.418956.7" + } + ], + "id": "https://ror.org/03hv28176", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iwm-tuebingen.de" + } + ], + "names": [ + { + "value": "Leibniz-Institut für Wissensmedien", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stiftung „Medien in der Bildung“", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "IWM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03k4wdb90.json b/test-relationship-delete-v2/updates/03k4wdb90.json new file mode 100644 index 000000000..88a14fc19 --- /dev/null +++ b/test-relationship-delete-v2/updates/03k4wdb90.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.476174.7" + ], + "preferred": "grid.476174.7" + }, + { + "type": "isni", + "all": [ + "0000 0004 7677 6809" + ], + "preferred": "0000 0004 7677 6809" + }, + { + "type": "wikidata", + "all": [ + "Q117405723" + ], + "preferred": "Q117405723" + } + ], + "id": "https://ror.org/03k4wdb90", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.barcelonabeta.org" + } + ], + "names": [ + { + "value": "Barcelonaβeta Brain Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Barcelonabeta Brain Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BBRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03k9z2963.json b/test-relationship-delete-v2/updates/03k9z2963.json new file mode 100644 index 000000000..4362fbffa --- /dev/null +++ b/test-relationship-delete-v2/updates/03k9z2963.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0624 4946" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q51784704" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503142.1" + ], + "preferred": "grid.503142.1" + } + ], + "id": "https://ror.org/03k9z2963", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.math.ens.psl.eu" + } + ], + "names": [ + { + "value": "Département de mathématiques et applications", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Department of Mathematics and their Applications", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "DMA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "École Normale Supérieure - PSL", + "type": "parent", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03kevw840.json b/test-relationship-delete-v2/updates/03kevw840.json new file mode 100644 index 000000000..791916bb8 --- /dev/null +++ b/test-relationship-delete-v2/updates/03kevw840.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30290690" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.436359.e" + ], + "preferred": "grid.436359.e" + } + ], + "id": "https://ror.org/03kevw840", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.meta4.es/" + } + ], + "names": [ + { + "value": "Meta4 (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03mc19e15.json b/test-relationship-delete-v2/updates/03mc19e15.json new file mode 100644 index 000000000..ac3e0282e --- /dev/null +++ b/test-relationship-delete-v2/updates/03mc19e15.json @@ -0,0 +1,75 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1986, + "external_ids": [ + { + "all": [ + "0000 0004 0417 1843" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7989433" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.417077.2" + ], + "preferred": "grid.417077.2", + "type": "grid" + } + ], + "id": "https://ror.org/03mc19e15", + "links": [ + { + "type": "website", + "value": "http://www.waht.nhs.uk/Childrens-Services/Childrens-Services1/Seashore-Centre-at-Weston-General-Hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Weston_General_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.32119, + "lng": -2.971386, + "name": "Weston-super-Mare" + }, + "geonames_id": 2634308 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Weston General Hospital" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03n15ch10.json b/test-relationship-delete-v2/updates/03n15ch10.json new file mode 100644 index 000000000..c8c717606 --- /dev/null +++ b/test-relationship-delete-v2/updates/03n15ch10.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.457334.2" + ], + "preferred": "grid.457334.2" + } + ], + "id": "https://ror.org/03n15ch10", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www-centre-saclay.cea.fr/fr" + } + ], + "names": [ + { + "value": "CEA Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Direction des énergies", + "type": "parent", + "id": "https://ror.org/03cwzta72" + }, + { + "label": "Laboratoire Interactions, Dynamiques et Lasers", + "type": "child", + "id": "https://ror.org/04dy97z61" + }, + { + "label": "Saclay Nuclear Research Centre", + "type": "child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Soleil Synchrotron", + "type": "child", + "id": "https://ror.org/01ydb3330" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03n8fv677.json b/test-relationship-delete-v2/updates/03n8fv677.json new file mode 100644 index 000000000..81c3679d7 --- /dev/null +++ b/test-relationship-delete-v2/updates/03n8fv677.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.491054.d" + ], + "preferred": "grid.491054.d" + } + ], + "id": "https://ror.org/03n8fv677", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pronokal.com" + } + ], + "names": [ + { + "value": "Fundación Pronokal", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03nr10290.json b/test-relationship-delete-v2/updates/03nr10290.json new file mode 100644 index 000000000..3306cc5ff --- /dev/null +++ b/test-relationship-delete-v2/updates/03nr10290.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 5007804, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.48948, + "lng": -83.14465, + "name": "Royal Oak" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.459348.7" + ], + "preferred": "grid.459348.7" + } + ], + "id": "https://ror.org/03nr10290", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/services/childrens" + } + ], + "names": [ + { + "value": "Corewell Health Children's", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Beaumont Children's", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03p40sz62.json b/test-relationship-delete-v2/updates/03p40sz62.json new file mode 100644 index 000000000..c5225acfd --- /dev/null +++ b/test-relationship-delete-v2/updates/03p40sz62.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5901 7165" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100008055" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.483886.9" + ], + "preferred": "grid.483886.9" + } + ], + "id": "https://ror.org/03p40sz62", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fundacioneugeniorodriguezpascual.es" + } + ], + "names": [ + { + "value": "Fundación Eugenio Rodríguez Pascual", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03prydq77.json b/test-relationship-delete-v2/updates/03prydq77.json new file mode 100644 index 000000000..d3b59def8 --- /dev/null +++ b/test-relationship-delete-v2/updates/03prydq77.json @@ -0,0 +1,133 @@ +{ + "locations": [ + { + "geonames_id": 2761369, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.20849, + "lng": 16.37208, + "name": "Vienna" + } + } + ], + "established": 1365, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2286 1424" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100003065", + "501100003066" + ], + "preferred": "501100003065" + }, + { + "type": "wikidata", + "all": [ + "Q165980", + "Q1362780" + ], + "preferred": "Q165980" + }, + { + "type": "grid", + "all": [ + "grid.10420.37" + ], + "preferred": "grid.10420.37" + } + ], + "id": "https://ror.org/03prydq77", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.univie.ac.at/en/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Vienna" + } + ], + "names": [ + { + "value": "University of Vienna", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universität Wien", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "Sveučilište u Beču", + "types": [ + "label" + ], + "lang": "hr" + }, + { + "value": "Bécsi Egyetem", + "types": [ + "label" + ], + "lang": "hu" + }, + { + "value": "Univerza na Dunaju", + "types": [ + "label" + ], + "lang": "sl" + } + ], + "relationships": [ + { + "label": "Vienna General Hospital", + "type": "related", + "id": "https://ror.org/05f0zr486" + }, + { + "label": "Christian Doppler Laboratory for Thermoelectricity", + "type": "child", + "id": "https://ror.org/01cbw5x35" + }, + { + "label": "Vienna Center for Quantum Science and Technology", + "type": "child", + "id": "https://ror.org/014cpn338" + }, + { + "label": "Vienna BioCenter Core Facilities", + "type": "child", + "id": "https://ror.org/01w64ht88" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03pvr2g57.json b/test-relationship-delete-v2/updates/03pvr2g57.json new file mode 100644 index 000000000..a00127422 --- /dev/null +++ b/test-relationship-delete-v2/updates/03pvr2g57.json @@ -0,0 +1,120 @@ +{ + "locations": [ + { + "geonames_id": 2805615, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.79391, + "lng": 9.95121, + "name": "Würzburg" + } + } + ], + "established": 1402, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1378 7891" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1784848" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.411760.5" + ], + "preferred": "grid.411760.5" + } + ], + "id": "https://ror.org/03pvr2g57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ukw.de" + } + ], + "names": [ + { + "value": "Universitätsklinikum Würzburg", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University Hospital Würzburg", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University Hospital of Wuerzburg", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universitaetsklinikum Wuerzburg - Klinikum Der Bayerischen Julius-Maximilians-Universitat", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UKW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Würzburg", + "type": "related", + "id": "https://ror.org/00fbnyb24" + }, + { + "label": "Augenklinik Universitätsklinikum Würzburg", + "type": "child", + "id": "https://ror.org/00rwpbm87" + }, + { + "label": "Comprehensive Cancer Center Mainfranken", + "type": "child", + "id": "https://ror.org/013tmk464" + }, + { + "label": "Universitäts-Kinderklinik Würzburg", + "type": "child", + "id": "https://ror.org/000ph9k36" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03rd4h240.json b/test-relationship-delete-v2/updates/03rd4h240.json new file mode 100644 index 000000000..8c1ab36ec --- /dev/null +++ b/test-relationship-delete-v2/updates/03rd4h240.json @@ -0,0 +1,90 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100006130", + "100006172", + "100006149" + ], + "preferred": "100006130" + }, + { + "type": "wikidata", + "all": [ + "Q12064662" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.453355.1" + ], + "preferred": "grid.453355.1" + } + ], + "id": "https://ror.org/03rd4h240", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://energy.gov/oe/office-electricity-delivery-and-energy-reliability" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Office_of_Electricity_Delivery_and_Energy_Reliability" + } + ], + "names": [ + { + "value": "Office of Electricity Delivery and Energy Reliability", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "OE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United States Department of Energy", + "type": "parent", + "id": "https://ror.org/01bj3aw27" + } + ], + "status": "withdrawn", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03rnk6m14.json b/test-relationship-delete-v2/updates/03rnk6m14.json new file mode 100644 index 000000000..f3904f3a0 --- /dev/null +++ b/test-relationship-delete-v2/updates/03rnk6m14.json @@ -0,0 +1,178 @@ +{ + "locations": [ + { + "geonames_id": 2992166, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + } + } + ], + "established": 1842, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2172 5332" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2945808" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434209.8" + ], + "preferred": "grid.434209.8" + } + ], + "id": "https://ror.org/03rnk6m14", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.institut-agro-montpellier.fr" + } + ], + "names": [ + { + "value": "Institut Agro Montpellier", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Montpellier SupAgro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SupAgro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Centre international d'études supérieures en sciences agronomiques", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [ + { + "label": "Languedoc-Roussillon Universities", + "type": "parent", + "id": "https://ror.org/04f6hmf16" + }, + { + "label": "Agropolymerpolymer Engineering and Emerging Technologies", + "type": "child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Diversity, Genomes and Insects-Microorganisms Interactions", + "type": "child", + "id": "https://ror.org/03q1qx424" + }, + { + "label": "Functional Ecology and Biogeochemistry of Soils and Agrosystems", + "type": "child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Laboratoire d'Écophysiologie Moléculaire des Plantes sous Stress Environnementaux", + "type": "child", + "id": "https://ror.org/03fte3n86" + }, + { + "label": "Laboratoire des Symbioses Tropicales et Méditerranéennes", + "type": "child", + "id": "https://ror.org/05q94pf14" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Mathématiques, Informatique et Statistique pour l'Environnement et l'Agronomie", + "type": "child", + "id": "https://ror.org/01pd2sz18" + }, + { + "label": "Sciences pour L’Œnologie", + "type": "child", + "id": "https://ror.org/04w07sc25" + }, + { + "label": "Tropical and Mediterranean Animal Production Systems", + "type": "child", + "id": "https://ror.org/05merjr74" + }, + { + "label": "Tropical and Mediterranean Cropping System Functioning and Management", + "type": "child", + "id": "https://ror.org/033x0mt18" + }, + { + "label": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation", + "type": "child", + "id": "https://ror.org/03kbarg82" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03rtqzj55.json b/test-relationship-delete-v2/updates/03rtqzj55.json new file mode 100644 index 000000000..2e5fec25f --- /dev/null +++ b/test-relationship-delete-v2/updates/03rtqzj55.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2510911, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 37.38283, + "lng": -5.97317, + "name": "Seville" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.425160.4" + ], + "preferred": "grid.425160.4" + } + ], + "id": "https://ror.org/03rtqzj55", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.inabensa.com/web/en/index.html" + } + ], + "names": [ + { + "value": "Inabensa (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instalaciones Inabensa, S.A.", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03s92mv58.json b/test-relationship-delete-v2/updates/03s92mv58.json new file mode 100644 index 000000000..82b52a2e0 --- /dev/null +++ b/test-relationship-delete-v2/updates/03s92mv58.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.464121.4" + ], + "preferred": "grid.464121.4" + } + ], + "id": "https://ror.org/03s92mv58", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://geops.geol.u-psud.fr/" + } + ], + "names": [ + { + "value": "Geosciences Paris Sud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "GEOPS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "University of Paris-Sud", + "type": "parent", + "id": "https://ror.org/028rypz17" + } + ], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03sv46s19.json b/test-relationship-delete-v2/updates/03sv46s19.json new file mode 100644 index 000000000..3bad45ef5 --- /dev/null +++ b/test-relationship-delete-v2/updates/03sv46s19.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100010198" + ], + "preferred": "501100010198" + }, + { + "type": "wikidata", + "all": [ + "Q81886673" + ], + "preferred": "Q81886673" + } + ], + "id": "https://ror.org/03sv46s19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://portal.mineco.gob.es" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Ministerio_de_Asuntos_Econ%C3%B3micos_y_Transformaci%C3%B3n_Digital" + } + ], + "names": [ + { + "value": "Ministerio de Asuntos Económicos y Transformación Digital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Economic Affairs and Digital Transformation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "MINECO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ministry of Economy, Industry and Competitiveness", + "type": "predecessor", + "id": "https://ror.org/034900433" + } + ], + "status": "inactive", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03sypqe31.json b/test-relationship-delete-v2/updates/03sypqe31.json new file mode 100644 index 000000000..317e0b392 --- /dev/null +++ b/test-relationship-delete-v2/updates/03sypqe31.json @@ -0,0 +1,66 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 495X" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.464173.3" + ], + "preferred": "grid.464173.3" + } + ], + "id": "https://ror.org/03sypqe31", + "domains": [], + "links": [], + "names": [ + { + "value": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SMPSD", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03tdnf746.json b/test-relationship-delete-v2/updates/03tdnf746.json new file mode 100644 index 000000000..9ebd2db55 --- /dev/null +++ b/test-relationship-delete-v2/updates/03tdnf746.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3117164, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.54211, + "lng": 2.4445, + "name": "Mataró" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q5065642" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.424852.d" + ], + "preferred": "grid.424852.d" + } + ], + "id": "https://ror.org/03tdnf746", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cetemmsa.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Cetemmsa" + } + ], + "names": [ + { + "value": "CETEMMSA Technological Centre (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fundación Privada CETEMMSA", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03tscbz39.json b/test-relationship-delete-v2/updates/03tscbz39.json new file mode 100644 index 000000000..2104253a5 --- /dev/null +++ b/test-relationship-delete-v2/updates/03tscbz39.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": 2007, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100009120" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423766.2" + ], + "preferred": "grid.423766.2" + }, + { + "type": "wikidata", + "all": [ + "Q30284524" + ], + "preferred": "Q30284524" + } + ], + "id": "https://ror.org/03tscbz39", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fondation-lehn.fr" + } + ], + "names": [ + { + "value": "Fondation Jean-Marie Lehn", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "International Center for Frontier Research in Chemistry", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Jean-Marie Lehn Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Centre international de recherche aux frontières de la chimie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Strasbourg Center for Frontier Research in Chemistry", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Le Centre International de Recherche aux Frontières de la Chimie", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "ICRFC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03vam5b06.json b/test-relationship-delete-v2/updates/03vam5b06.json new file mode 100644 index 000000000..b19b1e6f1 --- /dev/null +++ b/test-relationship-delete-v2/updates/03vam5b06.json @@ -0,0 +1,106 @@ +{ + "locations": [ + { + "geonames_id": 3029276, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.79632, + "lng": 2.33661, + "name": "Cachan" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0370 4273" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30262402" + ], + "preferred": "Q30262402" + }, + { + "type": "grid", + "all": [ + "grid.464043.1" + ], + "preferred": "grid.464043.1" + } + ], + "id": "https://ror.org/03vam5b06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://satie.ens-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory of Systems and Applications of Information and Energy Technologies", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "SATIE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "CY Cergy Paris University", + "type": "parent", + "id": "https://ror.org/043htjv09" + }, + { + "label": "Conservatoire National des Arts et Métiers", + "type": "parent", + "id": "https://ror.org/0175hh227" + }, + { + "label": "Université Gustave Eiffel", + "type": "parent", + "id": "https://ror.org/03x42jk29" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "parent", + "id": "https://ror.org/00hx6zz33" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03x4pp342.json b/test-relationship-delete-v2/updates/03x4pp342.json new file mode 100644 index 000000000..8e8057868 --- /dev/null +++ b/test-relationship-delete-v2/updates/03x4pp342.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 4990510, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.32226, + "lng": -83.17631, + "name": "Dearborn" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0394 7232" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.416675.7" + ], + "preferred": "grid.416675.7" + } + ], + "id": "https://ror.org/03x4pp342", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/locations/beaumont-hospital-dearborn" + } + ], + "names": [ + { + "value": "Beaumont Hospital, Dearborn", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Beaumont Hospital", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Oakwood Hospital - Dearborn", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03xjwb503.json b/test-relationship-delete-v2/updates/03xjwb503.json new file mode 100644 index 000000000..c7b59e4d7 --- /dev/null +++ b/test-relationship-delete-v2/updates/03xjwb503.json @@ -0,0 +1,479 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 6535" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100007241" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q109409389" + ], + "preferred": "Q109409389" + }, + { + "type": "grid", + "all": [ + "grid.460789.4" + ], + "preferred": "grid.460789.4" + } + ], + "id": "https://ror.org/03xjwb503", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.universite-paris-saclay.fr/fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Paris-Saclay" + } + ], + "names": [ + { + "value": "University of Paris-Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Université Paris-Saclay", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "Universitat París-Saclay", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Paris-Saclayko Unibertsitatea", + "types": [ + "label" + ], + "lang": "eu" + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "child", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Biologie de la Reproduction, Environnement, Epigénétique et Développement", + "type": "child", + "id": "https://ror.org/05mfwtg94" + }, + { + "label": "CentraleSupélec", + "type": "child", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Centre for Nanoscience and Nanotechnology", + "type": "child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Computer Science, Integrative Biology and Complex Systems", + "type": "child", + "id": "https://ror.org/01aqxgr98" + }, + { + "label": "Hautes Études Commerciales de Paris", + "type": "child", + "id": "https://ror.org/0423jsj19" + }, + { + "label": "Hemostase Inflammation Thrombosis", + "type": "child", + "id": "https://ror.org/03ka94606" + }, + { + "label": "Institut des Cellules Souches pour le Traitement et l'Étude des Maladies Monogéniques", + "type": "child", + "id": "https://ror.org/04g9rt435" + }, + { + "label": "Institut d’Optique Graduate School", + "type": "child", + "id": "https://ror.org/00d0rke27" + }, + { + "label": "Laboratoire Génie Industriel", + "type": "child", + "id": "https://ror.org/0455wwj08" + }, + { + "label": "Laboratoire de Physique des 2 Infinis Irène Joliot-Curie", + "type": "child", + "id": "https://ror.org/03gc1p724" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratory of Quantum and Molecular Photonics", + "type": "child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire Interactions, Dynamiques et Lasers", + "type": "child", + "id": "https://ror.org/04dy97z61" + }, + { + "label": "Leprince-Ringuet Laboratory", + "type": "child", + "id": "https://ror.org/058t6p923" + }, + { + "label": "Saclay Nuclear Research Centre", + "type": "child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "University of Évry Val d'Essonne", + "type": "child", + "id": "https://ror.org/00e96v939" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "child", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "École Nationale de la Statistique et de l'Administration Économique", + "type": "child", + "id": "https://ror.org/01fz7mn40" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "child", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "Agronomie", + "type": "child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "Laboratoire Universitaire de Recherche en Production Automatisée", + "type": "child", + "id": "https://ror.org/05wjc8a85" + }, + { + "label": "SADAPT Science Action Développement - Activités Produits Territoires", + "type": "child", + "id": "https://ror.org/01cmdgj85" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Mathématiques et Informatique pour la Complexité et les Systèmes", + "type": "child", + "id": "https://ror.org/03q29s414" + }, + { + "label": "Physiologie et Physiopathlogie Endocriniennes", + "type": "child", + "id": "https://ror.org/05kz79f96" + }, + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "child", + "id": "https://ror.org/048qk7477" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "child", + "id": "https://ror.org/00780az30" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Physiopathogénèse et Traitement des Maladies du Foie", + "type": "child", + "id": "https://ror.org/01zrk7293" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "child", + "id": "https://ror.org/00p73bw06" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "Laboratoire de Biologie de l'Exercice pour la Performance et la Santé", + "type": "child", + "id": "https://ror.org/0449rap84" + }, + { + "label": "Centre de Recherche en Design", + "type": "child", + "id": "https://ror.org/007y9b339" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Biomarqueurs et essais cliniques en Cancérologie et Onco-Hématologie", + "type": "child", + "id": "https://ror.org/05r0mw364" + }, + { + "label": "Centre d’histoire culturelle des sociétés contemporaines", + "type": "child", + "id": "https://ror.org/0087n5v55" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Equipe de recherche paramédicale sur le handicap neuromoteur", + "type": "child", + "id": "https://ror.org/023bv6t84" + }, + { + "label": "Institut de recherches arctiques Jean Malaurie", + "type": "child", + "id": "https://ror.org/008hxwy89" + }, + { + "label": "Laboratoire Anthropologie, Archéologie, Biologie", + "type": "child", + "id": "https://ror.org/023b2c435" + }, + { + "label": "Laboratoire interdisciplinaire sur les mutations des espaces économiques et politiques - Paris Saclay", + "type": "child", + "id": "https://ror.org/01jdptv64" + }, + { + "label": "Maison de la Simulation", + "type": "child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "CIRED", + "type": "child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Genome Integrity, RNA and Cancer", + "type": "child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "child", + "id": "https://ror.org/05dy6wv04" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "child", + "id": "https://ror.org/0211r2z47" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03yk4dt83.json b/test-relationship-delete-v2/updates/03yk4dt83.json new file mode 100644 index 000000000..8f012904f --- /dev/null +++ b/test-relationship-delete-v2/updates/03yk4dt83.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 2516345, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 38.99042, + "lng": -0.51852, + "name": "Xàtiva" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1768 2773" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.414979.6" + ], + "preferred": "grid.414979.6" + } + ], + "id": "https://ror.org/03yk4dt83", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://xativaontinyent.san.gva.es" + } + ], + "names": [ + { + "value": "Hospital Lluis Alcanyis", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Hospital Lluís Alcanyís", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hospital General d'Ontinyent", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hospital General de Ontinyent", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Departament de Salut Xàtiva Ontinyent", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Departamento de Salud Xàtiva Ontinyent", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03yrm5c26.json b/test-relationship-delete-v2/updates/03yrm5c26.json new file mode 100644 index 000000000..85aa62c35 --- /dev/null +++ b/test-relationship-delete-v2/updates/03yrm5c26.json @@ -0,0 +1 @@ +{"admin":{"created":{"date":"2018-11-14","schema_version":"1.0"},"last_modified":{"date":"2021-03-17","schema_version":"2.0"}},"domains":[],"established":1997,"external_ids":[{"all":["0000 0001 1957 5136"],"preferred":null,"type":"isni"},{"all":["Q5020447"],"preferred":null,"type":"wikidata"},{"all":["grid.463323.3"],"preferred":"grid.463323.3","type":"grid"}],"id":"https://ror.org/03yrm5c26","links":[{"type":"website","value":"http://www.cdlib.org/"},{"type":"wikipedia","value":"https://en.wikipedia.org/wiki/California_Digital_Library"}],"locations":[{"geonames_details":{"country_code":"US","country_name":"United States","lat":37.808283,"lng":-122.267508,"name":"Oakland"},"geonames_id":5378538}],"names":[{"lang":null,"types":["ror_display","label"],"value":"California Digital Library"},{"lang":null,"types":["acronym"],"value":"CDL"}],"relationships":[{"label":"University of California System","type":"parent","id":"https://ror.org/00pjdza24"}],"status":"active","types":["archive"]} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03yycdv57.json b/test-relationship-delete-v2/updates/03yycdv57.json new file mode 100644 index 000000000..f88202245 --- /dev/null +++ b/test-relationship-delete-v2/updates/03yycdv57.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1870, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0639 2930" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3137513" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.425204.5" + ], + "preferred": "grid.425204.5" + } + ], + "id": "https://ror.org/03yycdv57", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ign.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Instituto_Geogr%C3%A1fico_Nacional_(Spain)" + } + ], + "names": [ + { + "value": "Instituto Geográfico Nacional", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Geographic Institute", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "IGN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/03yz3tz18.json b/test-relationship-delete-v2/updates/03yz3tz18.json new file mode 100644 index 000000000..6fdc2a0c7 --- /dev/null +++ b/test-relationship-delete-v2/updates/03yz3tz18.json @@ -0,0 +1,160 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-04-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1979, + "external_ids": [ + { + "all": [ + "grid.462023.1" + ], + "preferred": "grid.462023.1", + "type": "grid" + } + ], + "id": "https://ror.org/03yz3tz18", + "links": [ + { + "type": "website", + "value": "http://www.dgdr.cnrs.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.847568, + "lng": 2.264044, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DGDR" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Direction Générale Déléguée aux Ressources" + } + ], + "relationships": [ + { + "label": "Délégation Alpes", + "type": "child", + "id": "https://ror.org/04px4e658" + }, + { + "label": "Délégation Alsace", + "type": "child", + "id": "https://ror.org/02wy4ac67" + }, + { + "label": "Délégation Aquitaine", + "type": "child", + "id": "https://ror.org/05nfypp21" + }, + { + "label": "Délégation Bretagne et Pays de la Loire", + "type": "child", + "id": "https://ror.org/02t220m45" + }, + { + "label": "Délégation Centre Limousin Poitou-Charentes", + "type": "child", + "id": "https://ror.org/023vkeb66" + }, + { + "label": "Délégation Centre-Est", + "type": "child", + "id": "https://ror.org/01tz1zp46" + }, + { + "label": "Délégation Côte d'Azur", + "type": "child", + "id": "https://ror.org/0496p8026" + }, + { + "label": "Délégation Ile-de-France Ouest et Nord", + "type": "child", + "id": "https://ror.org/02ft5tp06" + }, + { + "label": "Délégation Ile-de-France Villejuif", + "type": "child", + "id": "https://ror.org/008kn4z11" + }, + { + "label": "Délégation Languedoc Roussillon", + "type": "child", + "id": "https://ror.org/04hrs9369" + }, + { + "label": "Délégation Midi Pyrénées", + "type": "child", + "id": "https://ror.org/042t83k43" + }, + { + "label": "Délégation Nord, Pas-de-Calais et Picardie", + "type": "child", + "id": "https://ror.org/04cxsn644" + }, + { + "label": "Délégation Normandie", + "type": "child", + "id": "https://ror.org/04q1kbj36" + }, + { + "label": "Délégation Paris B", + "type": "child", + "id": "https://ror.org/04tnvnq52" + }, + { + "label": "Délégation Paris Michel-Ange", + "type": "child", + "id": "https://ror.org/00hy22508" + }, + { + "label": "Délégation Paris-Villejuif-03", + "type": "child", + "id": "https://ror.org/007x3c094" + }, + { + "label": "Délégation Provence et Corse", + "type": "child", + "id": "https://ror.org/049qgqg40" + }, + { + "label": "Délégation Rhône Auvergne", + "type": "child", + "id": "https://ror.org/00bjjqs38" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/041m9xr71.json b/test-relationship-delete-v2/updates/041m9xr71.json new file mode 100644 index 000000000..3ce248881 --- /dev/null +++ b/test-relationship-delete-v2/updates/041m9xr71.json @@ -0,0 +1,107 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1947, + "external_ids": [ + { + "all": [ + "0000 0001 0690 157X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100011659" + ], + "preferred": "100011659", + "type": "fundref" + }, + { + "all": [ + "Q4745875" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.451319.b" + ], + "preferred": "grid.451319.b", + "type": "grid" + } + ], + "id": "https://ror.org/041m9xr71", + "links": [ + { + "type": "website", + "value": "https://www.ameslab.gov/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ames_Laboratory" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.03471, + "lng": -93.61994, + "name": "Ames" + }, + "geonames_id": 4846834 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Ames National Laboratory" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Ames Laboratory" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Department of Energy Office of Science Ames National Laboratory" + } + ], + "relationships": [ + { + "label": "Iowa State University", + "type": "parent", + "id": "https://ror.org/04rswrd78" + }, + { + "label": "Office of Science", + "type": "parent", + "id": "https://ror.org/00mmn6b08" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/042heps41.json b/test-relationship-delete-v2/updates/042heps41.json new file mode 100644 index 000000000..442479425 --- /dev/null +++ b/test-relationship-delete-v2/updates/042heps41.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 4832458, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.10369, + "lng": -69.10893, + "name": "Rockland" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4686 4007" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q7894639" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.461517.0" + ], + "preferred": "grid.461517.0" + } + ], + "id": "https://ror.org/042heps41", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://learn.maine.edu/rockland/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_College_at_Rockland" + } + ], + "names": [ + { + "value": "University College at Rockland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "URock", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Maine System", + "type": "parent", + "id": "https://ror.org/050qj5m48" + } + ], + "status": "withdrawn", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/047448m94.json b/test-relationship-delete-v2/updates/047448m94.json new file mode 100644 index 000000000..ada9946ae --- /dev/null +++ b/test-relationship-delete-v2/updates/047448m94.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2220957, + "geonames_details": { + "country_code": "CM", + "country_name": "Cameroon", + "lat": 3.86667, + "lng": 11.51667, + "name": "Yaoundé" + } + } + ], + "established": 1965, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9212 1336" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463347.1" + ], + "preferred": "grid.463347.1" + }, + { + "type": "wikidata", + "all": [ + "Q30261846" + ], + "preferred": "Q30261846" + } + ], + "id": "https://ror.org/047448m94", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://impm-cm.org" + } + ], + "names": [ + { + "value": "Institut de Recherches Médicales et d’Etudes des Plantes Médicinales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Research Medical and Medicinal Plants Studies", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "IMPM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/047xxvg44.json b/test-relationship-delete-v2/updates/047xxvg44.json new file mode 100644 index 000000000..3a3e5b40e --- /dev/null +++ b/test-relationship-delete-v2/updates/047xxvg44.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2740637, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 40.20564, + "lng": -8.41955, + "name": "Coimbra" + } + } + ], + "established": 1927, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0631 0608" + ], + "preferred": "0000 0004 0631 0608" + }, + { + "type": "grid", + "all": [ + "grid.435541.2" + ], + "preferred": "grid.435541.2" + }, + { + "type": "wikidata", + "all": [ + "Q107279716" + ], + "preferred": "Q107279716" + } + ], + "id": "https://ror.org/047xxvg44", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ipocoimbra.min-saude.pt" + } + ], + "names": [ + { + "value": "Instituto Português de Oncologia de Coimbra Francisco Gentil", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Francisco Gentil Portuguese Institute for Oncology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IPOCFG", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/047yj9455.json b/test-relationship-delete-v2/updates/047yj9455.json new file mode 100644 index 000000000..3ca25b235 --- /dev/null +++ b/test-relationship-delete-v2/updates/047yj9455.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1783 3287" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q8242526" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.16388.34" + ], + "preferred": "grid.16388.34" + } + ], + "id": "https://ror.org/047yj9455", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.barcelonamedia.org/" + } + ], + "names": [ + { + "value": "Barcelona Media", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0483fn738.json b/test-relationship-delete-v2/updates/0483fn738.json new file mode 100644 index 000000000..b4b1dcf37 --- /dev/null +++ b/test-relationship-delete-v2/updates/0483fn738.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 8358544, + "geonames_details": { + "country_code": "GR", + "country_name": "Greece", + "lat": 37.97574, + "lng": 23.76911, + "name": "Zografos" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.435146.1" + ], + "preferred": "grid.435146.1" + }, + { + "type": "wikidata", + "all": [ + "Q30289833" + ], + "preferred": "Q30289833" + } + ], + "id": "https://ror.org/0483fn738", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iccs.gr" + } + ], + "names": [ + { + "value": "Institute of Communication and Computer Systems", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Communication & Computer Systems “ICCS”", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Erevnitiko Panepistimiako Institouto Systimaton Epikoinonion Kai Ypologiston", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ICCS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Technical University of Athens", + "type": "related", + "id": "https://ror.org/03cx6bg69" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04b404920.json b/test-relationship-delete-v2/updates/04b404920.json new file mode 100644 index 000000000..c0b7af64b --- /dev/null +++ b/test-relationship-delete-v2/updates/04b404920.json @@ -0,0 +1,123 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": 1899, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0144 8833" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2646956" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.448744.f" + ], + "preferred": "grid.448744.f" + } + ], + "id": "https://ror.org/04b404920", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ash-berlin.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Alice_Salomon_University_of_Applied_Sciences_Berlin" + } + ], + "names": [ + { + "value": "Alice-Salomon-Hochschule Berlin", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Alice Salomon University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Alice Salomon Hochschule Berlin University of Applied Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ASH Berlin", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Alice Salomon University of Applied Sciences Berlin", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Alice Salomon Hochschule Berlin", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "ASH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institute for Productive Learning in Europe", + "type": "child", + "id": "https://ror.org/042jh8155" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04bdqq221.json b/test-relationship-delete-v2/updates/04bdqq221.json new file mode 100644 index 000000000..dcbc328e3 --- /dev/null +++ b/test-relationship-delete-v2/updates/04bdqq221.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 3125287, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.67019, + "lng": -7.41013, + "name": "Cervo" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.466596.e" + ], + "preferred": "grid.466596.e" + } + ], + "id": "https://ror.org/04bdqq221", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.concellodecervo.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Cervo,_Lugo" + } + ], + "names": [ + { + "value": "Concello de Cervo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ayuntamiento de Cervo", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04bgjpg77.json b/test-relationship-delete-v2/updates/04bgjpg77.json new file mode 100644 index 000000000..d5b7c5bf6 --- /dev/null +++ b/test-relationship-delete-v2/updates/04bgjpg77.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9792 877X" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30261542" + ], + "preferred": "Q30261542" + }, + { + "type": "grid", + "all": [ + "grid.462744.7" + ], + "preferred": "grid.462744.7" + } + ], + "id": "https://ror.org/04bgjpg77", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lpgp.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratoire de Physique des Gaz et des Plasmas", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory of Gas and Plasma Physics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LPGP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04bkzce69.json b/test-relationship-delete-v2/updates/04bkzce69.json new file mode 100644 index 000000000..0ff66cb23 --- /dev/null +++ b/test-relationship-delete-v2/updates/04bkzce69.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.464070.1" + ], + "preferred": "grid.464070.1", + "type": "grid" + } + ], + "id": "https://ror.org/04bkzce69", + "links": [ + { + "type": "website", + "value": "http://inserm-u769.cep.u-psud.fr/index.php?lang=en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.760907, + "lng": 2.270853, + "name": "Châtenay-Malabry" + }, + "geonames_id": 3026108 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Laboratory Signaling and Cardiovascular Pathophysiology" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Singnalisation et physiopathologie cardiaque" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SCP" + } + ], + "relationships": [ + { + "label": "Délégation Paris 11", + "type": "parent", + "id": "https://ror.org/0589k3111" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04cwfse38.json b/test-relationship-delete-v2/updates/04cwfse38.json new file mode 100644 index 000000000..707a494e2 --- /dev/null +++ b/test-relationship-delete-v2/updates/04cwfse38.json @@ -0,0 +1,127 @@ +{ + "locations": [ + { + "geonames_id": 2110683, + "geonames_details": { + "country_code": "JP", + "country_name": "Japan", + "lat": 36.2, + "lng": 140.1, + "name": "Tsukuba" + } + } + ], + "established": 1963, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2151 1625" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006328" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.450301.3" + ], + "preferred": "grid.450301.3" + }, + { + "type": "wikidata", + "all": [ + "Q11657051" + ], + "preferred": "Q11657051" + } + ], + "id": "https://ror.org/04cwfse38", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bosai.go.jp" + } + ], + "names": [ + { + "value": "National Research Institute for Earth Science and Disaster Resilience", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Research Institute for Earth Science and Disaster Prevention", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ぼうさいかがくぎじゅつけんきゅうしょ", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ボウサイカガクギジュツケンキュウショ", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Bōsai Kagaku Gijutsu Kenkyūsho", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Bousai Kagaku Gijutsu Kenkyuusho", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "国立研究開発法人防災科学技術研究所", + "types": [ + "label" + ], + "lang": "ja" + }, + { + "value": "NIED", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04e582786.json b/test-relationship-delete-v2/updates/04e582786.json new file mode 100644 index 000000000..a987865fd --- /dev/null +++ b/test-relationship-delete-v2/updates/04e582786.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30279561" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.34966.3e" + ], + "preferred": "grid.34966.3e" + } + ], + "id": "https://ror.org/04e582786", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iuee.eu/" + } + ], + "names": [ + { + "value": "Institut Universitari D'Estudis Europeus", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04e874t64.json b/test-relationship-delete-v2/updates/04e874t64.json new file mode 100644 index 000000000..d5697a16f --- /dev/null +++ b/test-relationship-delete-v2/updates/04e874t64.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 3169070, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 41.89193, + "lng": 12.51133, + "name": "Rome" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1758 1809" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100004808" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q16249630" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.467365.5" + ], + "preferred": "grid.467365.5" + } + ], + "id": "https://ror.org/04e874t64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.eief.it/eief/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Einaudi_Institute_for_Economics_and_Finance" + } + ], + "names": [ + { + "value": "Einaudi Institute for Economics and Finance", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Istituto Einaudi per l'Economia e la Finanza", + "types": [ + "label" + ], + "lang": "it" + }, + { + "value": "EIEF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04ebbpp93.json b/test-relationship-delete-v2/updates/04ebbpp93.json new file mode 100644 index 000000000..5218f850b --- /dev/null +++ b/test-relationship-delete-v2/updates/04ebbpp93.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3173435, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + } + } + ], + "established": 1941, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8865 1297" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.433325.0" + ], + "preferred": "grid.433325.0" + }, + { + "type": "wikidata", + "all": [ + "Q30255830" + ], + "preferred": "Q30255830" + } + ], + "id": "https://ror.org/04ebbpp93", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.istitutospallanzani.it" + } + ], + "names": [ + { + "value": "Istituto Sperimentale Italiano Lazzaro Spallanzani", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Italian Experimental Institute Lazzaro Spallanzani", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04eq6rh16.json b/test-relationship-delete-v2/updates/04eq6rh16.json new file mode 100644 index 000000000..c16e8efac --- /dev/null +++ b/test-relationship-delete-v2/updates/04eq6rh16.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1963, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q67201734" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.510867.d" + ], + "preferred": "grid.510867.d" + } + ], + "id": "https://ror.org/04eq6rh16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://sebbm.es" + } + ], + "names": [ + { + "value": "Spanish Society of Biochemistry and Molecular Biology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Sociedad Española de Bioquímica y Biología Molecular", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "SEBBM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04ews3245.json b/test-relationship-delete-v2/updates/04ews3245.json new file mode 100644 index 000000000..0f5d9757f --- /dev/null +++ b/test-relationship-delete-v2/updates/04ews3245.json @@ -0,0 +1,131 @@ +{ + "locations": [ + { + "geonames_id": 2934246, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.22172, + "lng": 6.77616, + "name": "Düsseldorf" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0492 602X" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.429051.b" + ], + "preferred": "grid.429051.b" + }, + { + "type": "wikidata", + "all": [ + "Q1205596" + ], + "preferred": "Q1205596" + } + ], + "id": "https://ror.org/04ews3245", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ddz.de" + } + ], + "names": [ + { + "value": "Deutsches Diabetes-Zentrum e.V.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Leibniz-Zentrum für Diabetes-Forschung an der Heinrich-Heine-Universität Düsseldorf", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Leibniz Center for Diabetes Research at the Heinrich Heine University Düsseldorf", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "German Diabetes Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DDFG e.V.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DDZ German Diabetes Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Deutsches Diabetes-Zentrum", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "DDZ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Heinrich Heine University Düsseldorf", + "type": "parent", + "id": "https://ror.org/024z2rq82" + }, + { + "label": "Leibniz Association", + "type": "parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04f7h3b65.json b/test-relationship-delete-v2/updates/04f7h3b65.json new file mode 100644 index 000000000..106137886 --- /dev/null +++ b/test-relationship-delete-v2/updates/04f7h3b65.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 3427500, + "geonames_details": { + "country_code": "AR", + "country_name": "Argentina", + "lat": -34.45505, + "lng": -58.54614, + "name": "Victoria" + } + } + ], + "established": 1988, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2325 2241" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5242548" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.441741.3" + ], + "preferred": "grid.441741.3" + } + ], + "id": "https://ror.org/04f7h3b65", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.udesa.edu.ar/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_San_Andr%C3%A9s" + } + ], + "names": [ + { + "value": "University of San Andrés", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidad de San Andrés", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Université de san andrés", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "UDESA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04fpz9t23.json b/test-relationship-delete-v2/updates/04fpz9t23.json new file mode 100644 index 000000000..f67e12721 --- /dev/null +++ b/test-relationship-delete-v2/updates/04fpz9t23.json @@ -0,0 +1,66 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5901 7034" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100005141" + ], + "preferred": "501100005141" + }, + { + "type": "grid", + "all": [ + "grid.469326.c" + ], + "preferred": "grid.469326.c" + } + ], + "id": "https://ror.org/04fpz9t23", + "domains": [], + "links": [], + "names": [ + { + "value": "BabelFamily", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04frf8n21.json b/test-relationship-delete-v2/updates/04frf8n21.json new file mode 100644 index 000000000..19a88690a --- /dev/null +++ b/test-relationship-delete-v2/updates/04frf8n21.json @@ -0,0 +1,117 @@ +{ + "locations": [ + { + "geonames_id": 1528675, + "geonames_details": { + "country_code": "KG", + "country_name": "Kyrgyzstan", + "lat": 42.87, + "lng": 74.59, + "name": "Bishkek" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 4627" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q52669993" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.444269.9" + ], + "preferred": "grid.444269.9" + } + ], + "id": "https://ror.org/04frf8n21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://manas.edu.kg" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Manas_University" + } + ], + "names": [ + { + "value": "Kyrgyz-Türkish Manas Üniversity", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Manas University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Kyrgyz-Turkish Manas University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Kırgızistan-Türkiye Manas Üniversitesi", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Кыргыз-Түрк «Манас» университети", + "types": [ + "label" + ], + "lang": "ky" + }, + { + "value": "Кыргызско-Турецкий университет «Манас»", + "types": [ + "label" + ], + "lang": "ru" + }, + { + "value": "KTMU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04fzwnh64.json b/test-relationship-delete-v2/updates/04fzwnh64.json new file mode 100644 index 000000000..d6dd0b4c0 --- /dev/null +++ b/test-relationship-delete-v2/updates/04fzwnh64.json @@ -0,0 +1,109 @@ +{ + "locations": [ + { + "geonames_id": 4887398, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.85003, + "lng": -87.65005, + "name": "Chicago" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4683 9645" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.490348.2" + ], + "preferred": "grid.490348.2" + }, + { + "type": "wikidata", + "all": [ + "Q50036890" + ], + "preferred": "Q50036890" + } + ], + "id": "https://ror.org/04fzwnh64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nm.org/" + } + ], + "names": [ + { + "value": "Northwestern Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Northwestern Memorial HealthCare", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Central DuPage Hospital", + "type": "child", + "id": "https://ror.org/00g1rc256" + }, + { + "label": "LivingWell Cancer Resource Center", + "type": "child", + "id": "https://ror.org/007nfvg13" + }, + { + "label": "Marianjoy Rehabilitation Hospital", + "type": "child", + "id": "https://ror.org/03m5bv793" + }, + { + "label": "Northwestern Medicine Lake Forest Hospital", + "type": "child", + "id": "https://ror.org/03fhrtz10" + }, + { + "label": "Northwestern Memorial Hospital", + "type": "child", + "id": "https://ror.org/009543z50" + }, + { + "label": "Robert H. Lurie Comprehensive Cancer Center of Northwestern University", + "type": "child", + "id": "https://ror.org/02p4far57" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04k1qv985.json b/test-relationship-delete-v2/updates/04k1qv985.json new file mode 100644 index 000000000..33dee1033 --- /dev/null +++ b/test-relationship-delete-v2/updates/04k1qv985.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1987, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6096 8320" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.509567.8" + ], + "preferred": "grid.509567.8" + } + ], + "id": "https://ror.org/04k1qv985", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lipotec.com/" + } + ], + "names": [ + { + "value": "Lipotec (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Lubrizol Life Science Health (United States)", + "type": "successor", + "id": "https://ror.org/03kp1tb17" + } + ], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04kdfz702.json b/test-relationship-delete-v2/updates/04kdfz702.json new file mode 100644 index 000000000..470248a09 --- /dev/null +++ b/test-relationship-delete-v2/updates/04kdfz702.json @@ -0,0 +1,379 @@ +{ + "locations": [ + { + "geonames_id": 2978179, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.79395, + "lng": 2.49323, + "name": "Saint-Maur-des-Fossés" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2154 1736" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100004617" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.452348.c" + ], + "preferred": "grid.452348.c" + } + ], + "id": "https://ror.org/04kdfz702", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.insu.cnrs.fr/en" + } + ], + "names": [ + { + "value": "Institut National des Sciences de l'Univers", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INSU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "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": "Géoazur", + "type": "child", + "id": "https://ror.org/05xtktk35" + }, + { + "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 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 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": "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": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratory of Astrophysics of Bordeaux", + "type": "child", + "id": "https://ror.org/00yee3n23" + }, + { + "label": "Laboratoire d'Océanographie Microbienne", + "type": "child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratoire d’études spatiales et d’instrumentation en astrophysique", + "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 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": "Systèmes de Référence Temps-Espace", + "type": "child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Laboratoire d’Océanographie de Villefranche", + "type": "child", + "id": "https://ror.org/05r5y6641" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "child", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "École & Observatoire des Sciences de la Terre", + "type": "child", + "id": "https://ror.org/030qxve40" + }, + { + "label": "Institut Terre & Environnement de Strasbourg", + "type": "child", + "id": "https://ror.org/0530qwm02" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04ma29860.json b/test-relationship-delete-v2/updates/04ma29860.json new file mode 100644 index 000000000..fc0f12e6a --- /dev/null +++ b/test-relationship-delete-v2/updates/04ma29860.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2964574, + "geonames_details": { + "country_code": "IE", + "country_name": "Ireland", + "lat": 53.33306, + "lng": -6.24889, + "name": "Dublin" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0510 4503" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.494077.9" + ], + "preferred": "grid.494077.9" + } + ], + "id": "https://ror.org/04ma29860", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.fishinginireland.info/" + } + ], + "names": [ + { + "value": "Fishing in Ireland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Central Fisheries Board", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04marky29.json b/test-relationship-delete-v2/updates/04marky29.json new file mode 100644 index 000000000..72d226594 --- /dev/null +++ b/test-relationship-delete-v2/updates/04marky29.json @@ -0,0 +1,133 @@ +{ + "locations": [ + { + "geonames_id": 2761369, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.20849, + "lng": 16.37208, + "name": "Vienna" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0515 0868", + "0000 0005 1089 9897" + ], + "preferred": "0000 0005 1089 9897" + }, + { + "type": "fundref", + "all": [ + "501100004956", + "100018774" + ], + "preferred": "100018774" + }, + { + "type": "wikidata", + "all": [ + "Q871765" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.454185.9" + ], + "preferred": "grid.454185.9" + } + ], + "id": "https://ror.org/04marky29", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://bmk.gv.at" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Transport_(Austria)" + } + ], + "names": [ + { + "value": "Bundesministerium für Klimaschutz, Umwelt, Energie, Mobilität, Innovation und Technologie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Transport", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Federal Ministry for Climate Action, Environment, Energy, Mobility, Innovation and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Austrian Ministry of Climate Action, Environment, Energy, Mobility, Innovation and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Federal Ministry for Transport, Innovation and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Bundesministerium für Verkehr, Innovation und Technologie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Climate Action, Environment, Energy, Mobility, Innovation and Technology", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "BMVIT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04mb62065.json b/test-relationship-delete-v2/updates/04mb62065.json new file mode 100644 index 000000000..88a88d9fa --- /dev/null +++ b/test-relationship-delete-v2/updates/04mb62065.json @@ -0,0 +1,80 @@ +{ + "locations": [ + { + "geonames_id": 1625822, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -7.24917, + "lng": 112.75083, + "name": "Surabaya" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100016139", + "501100014823" + ], + "preferred": "501100016139" + } + ], + "id": "https://ror.org/04mb62065", + "domains": [], + "links": [], + "names": [ + { + "value": "Direktorat Riset Dan Pengabdian Kepada Masyarakat", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DRPM – Kemenristekdikti", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Directorate of Research and Community Service – Ministry of Research, Technology and Higher Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DRPM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Research and Innovation Agency", + "type": "parent", + "id": "https://ror.org/02hmjzt55" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04n0g0b29.json b/test-relationship-delete-v2/updates/04n0g0b29.json new file mode 100644 index 000000000..9b2c8d168 --- /dev/null +++ b/test-relationship-delete-v2/updates/04n0g0b29.json @@ -0,0 +1,181 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2172 2676" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100018967" + ], + "preferred": "100018967" + }, + { + "type": "wikidata", + "all": [ + "Q24543" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5612.0" + ], + "preferred": "grid.5612.0" + } + ], + "id": "https://ror.org/04n0g0b29", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.upf.edu/en/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Pompeu_Fabra_University" + } + ], + "names": [ + { + "value": "Pompeu Fabra University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universitat Pompeu Fabra, Barcelona", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universitat Pompeu Fabra", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Universidad Pompeu Fabra", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "UPF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut de Biologia Evolutiva", + "type": "child", + "id": "https://ror.org/044mj7r89" + }, + { + "label": "Barcelona School of Economics", + "type": "related", + "id": "https://ror.org/02k09n368" + }, + { + "label": "Centre de Recerca en Economia Internacional", + "type": "related", + "id": "https://ror.org/0241avf06" + }, + { + "label": "Centre for Genomic Regulation", + "type": "related", + "id": "https://ror.org/03wyzt892" + }, + { + "label": "Institut Barcelona d'Estudis Internacionals", + "type": "related", + "id": "https://ror.org/05rke5d69" + }, + { + "label": "Barcelona Institute for Global Health", + "type": "related", + "id": "https://ror.org/03hjgt059" + }, + { + "label": "Hospital del Mar Research Institute", + "type": "related", + "id": "https://ror.org/042nkmz09" + }, + { + "label": "Barcelona Biomedical Research Park", + "type": "related", + "id": "https://ror.org/05sajct49" + }, + { + "label": "Institut de Política Econòmica i Governança", + "type": "child", + "id": "https://ror.org/03wbt1f24" + }, + { + "label": "Escola Superior de Comerç Internacional", + "type": "child", + "id": "https://ror.org/033m8p353" + }, + { + "label": "Escola Superior d'Infermeria del Mar", + "type": "child", + "id": "https://ror.org/04jp88086" + }, + { + "label": "BIST Dolors Aleu Graduate Centre", + "type": "child", + "id": "https://ror.org/037tawy03" + }, + { + "label": "UPF Barcelona School of Management", + "type": "child", + "id": "https://ror.org/04m3cqq68" + }, + { + "label": "TecnoCampus", + "type": "child", + "id": "https://ror.org/05193xx52" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04nm1cv11.json b/test-relationship-delete-v2/updates/04nm1cv11.json new file mode 100644 index 000000000..899b01a10 --- /dev/null +++ b/test-relationship-delete-v2/updates/04nm1cv11.json @@ -0,0 +1,133 @@ +{ + "locations": [ + { + "geonames_id": 2654675, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0380 7336" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100012141" + ], + "preferred": "100012141" + }, + { + "type": "wikidata", + "all": [ + "Q17028004" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.410421.2" + ], + "preferred": "grid.410421.2" + } + ], + "id": "https://ror.org/04nm1cv11", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_Hospitals_Bristol_NHS_Foundation_Trust" + } + ], + "names": [ + { + "value": "University Hospitals Bristol NHS Foundation Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Bristol Eye Hospital", + "type": "child", + "id": "https://ror.org/01w151e64" + }, + { + "label": "Bristol General Hospital", + "type": "child", + "id": "https://ror.org/00h3hwc05" + }, + { + "label": "Bristol Royal Hospital for Children", + "type": "child", + "id": "https://ror.org/01qgecw57" + }, + { + "label": "Bristol Royal Infirmary", + "type": "child", + "id": "https://ror.org/031p4kj21" + }, + { + "label": "NIHR Bristol Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/02mtt1z51" + }, + { + "label": "NIHR Bristol Cardiovascular Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/03gna4510" + }, + { + "label": "NIHR Bristol Nutrition Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/019rf7x86" + }, + { + "label": "South Bristol Community Hospital", + "type": "child", + "id": "https://ror.org/00pa9y269" + }, + { + "label": "St Michael's Hospital", + "type": "child", + "id": "https://ror.org/02hqqna27" + }, + { + "label": "University Of Bristol Dental Hospital", + "type": "child", + "id": "https://ror.org/027a33v57" + } + ], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04nqtfa57.json b/test-relationship-delete-v2/updates/04nqtfa57.json new file mode 100644 index 000000000..600ae506f --- /dev/null +++ b/test-relationship-delete-v2/updates/04nqtfa57.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.494474.e" + ], + "preferred": "grid.494474.e" + } + ], + "id": "https://ror.org/04nqtfa57", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sts-e.com/index.php?lang=en" + } + ], + "names": [ + { + "value": "Technical Services and Supplies (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Servicios Técnicos y Suministros", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "STS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04nwt4928.json b/test-relationship-delete-v2/updates/04nwt4928.json new file mode 100644 index 000000000..b64138aab --- /dev/null +++ b/test-relationship-delete-v2/updates/04nwt4928.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3106672, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.65518, + "lng": -4.72372, + "name": "Valladolid" + } + } + ], + "established": 1908, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1789 4151" + ], + "preferred": "0000 0004 1789 4151" + }, + { + "type": "grid", + "all": [ + "grid.423855.d" + ], + "preferred": "grid.423855.d" + } + ], + "id": "https://ror.org/04nwt4928", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.valladolid.es" + } + ], + "names": [ + { + "value": "Ayuntamiento de Valladolid", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04q4ppz72.json b/test-relationship-delete-v2/updates/04q4ppz72.json new file mode 100644 index 000000000..cade1b907 --- /dev/null +++ b/test-relationship-delete-v2/updates/04q4ppz72.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2510409, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.8581, + "lng": -4.02263, + "name": "Toledo" + } + } + ], + "established": 1966, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1766 1075" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418888.5" + ], + "preferred": "grid.418888.5" + } + ], + "id": "https://ror.org/04q4ppz72", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://toledo.sanidad.castillalamancha.es" + } + ], + "names": [ + { + "value": "Complejo Hospitalario Universitario de Toledo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Complejo Hospitalario de Toledo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CHT", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CHUT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Servicio de Salud de Castilla La Mancha", + "type": "parent", + "id": "https://ror.org/03k8zj440" + }, + { + "label": "Hospital Virgen del Valle", + "type": "child", + "id": "https://ror.org/00kxqbw45" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04rzqnw97.json b/test-relationship-delete-v2/updates/04rzqnw97.json new file mode 100644 index 000000000..491069685 --- /dev/null +++ b/test-relationship-delete-v2/updates/04rzqnw97.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q47457486" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.501550.4" + ], + "preferred": "grid.501550.4" + } + ], + "id": "https://ror.org/04rzqnw97", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.conservatorioteresaberganza.com/" + } + ], + "names": [ + { + "value": "Conservatorio Profesional de Música “Teresa Berganza”", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Conservatorio de Música Teresa Berganza", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04sk0bj73.json b/test-relationship-delete-v2/updates/04sk0bj73.json new file mode 100644 index 000000000..52c3a1ae3 --- /dev/null +++ b/test-relationship-delete-v2/updates/04sk0bj73.json @@ -0,0 +1,74 @@ +{ + "locations": [ + { + "geonames_id": 2953436, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.22683, + "lng": 8.61816, + "name": "Bad Homburg" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q650259" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.415062.4" + ], + "preferred": "grid.415062.4" + } + ], + "id": "https://ror.org/04sk0bj73", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.freseniusmedicalcare.us/en/home/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Fresenius_Medical_Care" + } + ], + "names": [ + { + "value": "Fresenius Medical Care (Germany)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Fresenius Medical Care North America (United States)", + "type": "child", + "id": "https://ror.org/05rs7tq63" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04sqh8108.json b/test-relationship-delete-v2/updates/04sqh8108.json new file mode 100644 index 000000000..c31643b50 --- /dev/null +++ b/test-relationship-delete-v2/updates/04sqh8108.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2519139, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.65675, + "lng": 2.94953, + "name": "Costitx" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q357639" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.440324.5" + ], + "preferred": "grid.440324.5" + } + ], + "id": "https://ror.org/04sqh8108", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.oam.es/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Astronomical_Observatory_of_Mallorca" + } + ], + "names": [ + { + "value": "Astronomical Observatory of Mallorca", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "OAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04t4b6y41.json b/test-relationship-delete-v2/updates/04t4b6y41.json new file mode 100644 index 000000000..fd40ade6d --- /dev/null +++ b/test-relationship-delete-v2/updates/04t4b6y41.json @@ -0,0 +1,66 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1978, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8497 6529" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.417198.2" + ], + "preferred": "grid.417198.2" + } + ], + "id": "https://ror.org/04t4b6y41", + "domains": [], + "links": [], + "names": [ + { + "value": "Instituto Nacional de la Salud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INSALUD", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04v2q5t19.json b/test-relationship-delete-v2/updates/04v2q5t19.json new file mode 100644 index 000000000..09a66c54c --- /dev/null +++ b/test-relationship-delete-v2/updates/04v2q5t19.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424747.6" + ], + "preferred": "grid.424747.6" + } + ], + "id": "https://ror.org/04v2q5t19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bcndigital.org" + } + ], + "names": [ + { + "value": "Barcelona Digital Centro Tecnológico", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BDigital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04w30w390.json b/test-relationship-delete-v2/updates/04w30w390.json new file mode 100644 index 000000000..0518ba6e6 --- /dev/null +++ b/test-relationship-delete-v2/updates/04w30w390.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.476529.b" + ], + "preferred": "grid.476529.b" + } + ], + "id": "https://ror.org/04w30w390", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.biomendi.com/" + } + ], + "names": [ + { + "value": "Biomendi (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratorios Biomendi SAU", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04x05p558.json b/test-relationship-delete-v2/updates/04x05p558.json new file mode 100644 index 000000000..a3fc3ef49 --- /dev/null +++ b/test-relationship-delete-v2/updates/04x05p558.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2518559, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 38.26218, + "lng": -0.70107, + "name": "Elche" + } + } + ], + "established": 1988, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.431984.3" + ], + "preferred": "grid.431984.3" + } + ], + "id": "https://ror.org/04x05p558", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://elche.avanzagrupo.com" + } + ], + "names": [ + { + "value": "Autobuses Urbanos Elche", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AUESA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04xcq9q51.json b/test-relationship-delete-v2/updates/04xcq9q51.json new file mode 100644 index 000000000..e075faf56 --- /dev/null +++ b/test-relationship-delete-v2/updates/04xcq9q51.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 5006946, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.87502, + "lng": -85.51005, + "name": "Reed City" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0450 5807" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.490520.a" + ], + "preferred": "grid.490520.a" + } + ], + "id": "https://ror.org/04xcq9q51", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.spectrumhealth.org/locations/spectrum-health-reed-city-hospital" + } + ], + "names": [ + { + "value": "Corewell Health Reed City Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spectrum Health Reed City Hospital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04xk0dc21.json b/test-relationship-delete-v2/updates/04xk0dc21.json new file mode 100644 index 000000000..94688afab --- /dev/null +++ b/test-relationship-delete-v2/updates/04xk0dc21.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 320392, + "geonames_details": { + "country_code": "TR", + "country_name": "Türkiye", + "lat": 37.72028, + "lng": 30.29083, + "name": "Burdur" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0386 420X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100016210" + ], + "preferred": "501100016210" + }, + { + "type": "wikidata", + "all": [ + "Q924465" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.411761.4" + ], + "preferred": "grid.411761.4" + } + ], + "id": "https://ror.org/04xk0dc21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.mehmetakif.edu.tr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Mehmet_Akif_Ersoy_University" + } + ], + "names": [ + { + "value": "Burdur Mehmet Akif Ersoy Üniversitesi", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Mehmet Akif Ersoy Üniversitesi", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Mehmet Akif Ersoy University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Burdur Mehmet Akif Ersoy University", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04yznqr36.json b/test-relationship-delete-v2/updates/04yznqr36.json new file mode 100644 index 000000000..10b85d40c --- /dev/null +++ b/test-relationship-delete-v2/updates/04yznqr36.json @@ -0,0 +1,218 @@ +{ + "locations": [ + { + "geonames_id": 2980291, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.43389, + "lng": 4.39, + "name": "Saint-Etienne" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2158 1682" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q623154" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.6279.a" + ], + "preferred": "grid.6279.a" + } + ], + "id": "https://ror.org/04yznqr36", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://portail.univ-st-etienne.fr/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Jean_Monnet_University" + } + ], + "names": [ + { + "value": "Jean Monnet University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Université Jean Monnet", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [ + { + "label": "Laboratoire Interuniversitaire de Biologie de la Motricité", + "type": "related", + "id": "https://ror.org/03sc1p174" + }, + { + "label": "Université de Lyon", + "type": "parent", + "id": "https://ror.org/01rk35k63" + }, + { + "label": "Biologie, Ingénierie et Imagerie de la Greffe de Cornée", + "type": "child", + "id": "https://ror.org/037b3he73" + }, + { + "label": "Centre Max Weber", + "type": "child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre de Recherches Critiques sur le Droit", + "type": "child", + "id": "https://ror.org/01rzzcx32" + }, + { + "label": "Conception de l'Action en Situation", + "type": "child", + "id": "https://ror.org/0476zq753" + }, + { + "label": "Education, Cultures, Politiques", + "type": "child", + "id": "https://ror.org/037xc1874" + }, + { + "label": "Environment, City, Society", + "type": "child", + "id": "https://ror.org/0256r1e04" + }, + { + "label": "Groupe d'Analyse et de Théorie Economique Lyon St Etienne", + "type": "child", + "id": "https://ror.org/042fmc481" + }, + { + "label": "Histoire et Sources des Mondes Antiques", + "type": "child", + "id": "https://ror.org/01yx7av22" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Laboratoire Hubert Curien", + "type": "child", + "id": "https://ror.org/0028p8r67" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire d'études sur les monothéismes", + "type": "child", + "id": "https://ror.org/02m0hy518" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Biotechnologies Végétales Appliquées aux Plantes Aromatiques et Médicinales", + "type": "child", + "id": "https://ror.org/01j6cta96" + }, + { + "label": "Laboratoire de Mécanique des Fluides et d'Acoustique", + "type": "child", + "id": "https://ror.org/04dxeze48" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratory of Polymer Materials Engineering", + "type": "child", + "id": "https://ror.org/02160my55" + }, + { + "label": "Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles", + "type": "child", + "id": "https://ror.org/04rkh0096" + }, + { + "label": "Lyon Neuroscience Research Center", + "type": "child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Triangle", + "type": "child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Centre d'Investigation Clinique - Epidémiologie Clinique Saint-Etienne", + "type": "child", + "id": "https://ror.org/044dp1584" + }, + { + "label": "Research on healthcare performance", + "type": "child", + "id": "https://ror.org/02ncy5p18" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04z22qz54.json b/test-relationship-delete-v2/updates/04z22qz54.json new file mode 100644 index 000000000..5219b4d2b --- /dev/null +++ b/test-relationship-delete-v2/updates/04z22qz54.json @@ -0,0 +1,246 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 1581" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100017211" + ], + "preferred": "501100017211" + }, + { + "type": "wikidata", + "all": [ + "Q24935922" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457015.2" + ], + "preferred": "grid.457015.2" + } + ], + "id": "https://ror.org/04z22qz54", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/ins2i/" + } + ], + "names": [ + { + "value": "Institut des Sciences de l'Information et de leurs Interactions", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INS2I", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Laboratoire d'Informatique de Paris-Nord", + "type": "child", + "id": "https://ror.org/05g1zjw44" + }, + { + "label": "Computer Science Laboratory of the École Polytechnique", + "type": "child", + "id": "https://ror.org/04afed728" + }, + { + "label": "Département d'Informatique", + "type": "child", + "id": "https://ror.org/05y6rqs46" + }, + { + "label": "Grenoble Computer Science Laboratory", + "type": "child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "GREYC", + "type": "child", + "id": "https://ror.org/043749971" + }, + { + "label": "Heuristics and Diagnostics for Complex Systems", + "type": "child", + "id": "https://ror.org/0075hvk77" + }, + { + "label": "Information Processing and System Research Lab", + "type": "child", + "id": "https://ror.org/0592ata02" + }, + { + "label": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "type": "child", + "id": "https://ror.org/00myn0z94" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Laboratoire Bordelais de Recherche en Informatique", + "type": "child", + "id": "https://ror.org/03adqg323" + }, + { + "label": "Laboratoire d'Informatique Gaspard-Monge", + "type": "child", + "id": "https://ror.org/04t50yk91" + }, + { + "label": "Laboratoire d'Informatique, Signaux et Systèmes de Sophia Antipolis", + "type": "child", + "id": "https://ror.org/01215r597" + }, + { + "label": "Laboratoire de Recherche en Informatique de Paris 6", + "type": "child", + "id": "https://ror.org/05krcen59" + }, + { + "label": "Laboratoire de l'Informatique du Parallélisme", + "type": "child", + "id": "https://ror.org/04msnz457" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratoire des Sciences et Techniques de l’Information de la Communication et de la Connaissance", + "type": "child", + "id": "https://ror.org/0266kfd37" + }, + { + "label": "Laboratoire des Sciences pour la Conception, l'Optimisation et la Production", + "type": "child", + "id": "https://ror.org/00rv5x925" + }, + { + "label": "Laboratory Preuves, Programmes et Systèmes", + "type": "child", + "id": "https://ror.org/046p9e825" + }, + { + "label": "Laboratory for Analysis and Architecture of Systems", + "type": "child", + "id": "https://ror.org/03vcm6439" + }, + { + "label": "Laboratory of Computing, Modelling and Optimization of the Systems", + "type": "child", + "id": "https://ror.org/00t3fpp34" + }, + { + "label": "Laboratory of Industrial and Human Automation Control, Mechanical Engineering and Computer Science", + "type": "child", + "id": "https://ror.org/006z7v557" + }, + { + "label": "Lamsade", + "type": "child", + "id": "https://ror.org/03pnp1a74" + }, + { + "label": "Lorraine Research Laboratory in Computer Science and its Applications", + "type": "child", + "id": "https://ror.org/02vnf0c38" + }, + { + "label": "Maison de la Simulation", + "type": "child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Montpellier Laboratory of Informatics, Robotics and Microelectronics", + "type": "child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Research Center for Automatic Control of Nancy", + "type": "child", + "id": "https://ror.org/022r5hc56" + }, + { + "label": "Techniques for Biomedical Engineering and Complexity Management–Informatics, Mathematics and Applications Grenoble", + "type": "child", + "id": "https://ror.org/03985kf35" + }, + { + "label": "Techniques of Informatics and Microelectronics for Integrated Systems Architecture", + "type": "child", + "id": "https://ror.org/000063q30" + }, + { + "label": "Verimag", + "type": "child", + "id": "https://ror.org/05afmzm11" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04zbc6m03.json b/test-relationship-delete-v2/updates/04zbc6m03.json new file mode 100644 index 000000000..5cecd4734 --- /dev/null +++ b/test-relationship-delete-v2/updates/04zbc6m03.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.512902.d" + ], + "preferred": "grid.512902.d" + } + ], + "id": "https://ror.org/04zbc6m03", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.isciii.es/QuienesSomos/CentrosPropios/MuseoISCIII" + } + ], + "names": [ + { + "value": "Museo Nacional de Sanidad", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ISCIII Museum", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Museo ISCIII", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Instituto de Salud Carlos III", + "type": "parent", + "id": "https://ror.org/00ca2c886" + } + ], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/04zw2sa68.json b/test-relationship-delete-v2/updates/04zw2sa68.json new file mode 100644 index 000000000..c789bbdac --- /dev/null +++ b/test-relationship-delete-v2/updates/04zw2sa68.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.488304.3" + ], + "preferred": "grid.488304.3" + } + ], + "id": "https://ror.org/04zw2sa68", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.geicogroup.com" + } + ], + "names": [ + { + "value": "Spanish Ovarian Cancer Research Group", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Grupo Español de Cáncer de Ovario", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "GEICO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/050gn5214.json b/test-relationship-delete-v2/updates/050gn5214.json new file mode 100644 index 000000000..0111a98c0 --- /dev/null +++ b/test-relationship-delete-v2/updates/050gn5214.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2005, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0620 5939" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3152211" + ], + "preferred": "Q3152211" + }, + { + "type": "grid", + "all": [ + "grid.425274.2" + ], + "preferred": "grid.425274.2" + } + ], + "id": "https://ror.org/050gn5214", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://institutducerveau-icm.org" + } + ], + "names": [ + { + "value": "Institut du Cerveau", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Paris Brain Institute", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Institut du Cerveau et de la Moelle épinière", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "ICM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/050jcm728.json b/test-relationship-delete-v2/updates/050jcm728.json new file mode 100644 index 000000000..bb8031782 --- /dev/null +++ b/test-relationship-delete-v2/updates/050jcm728.json @@ -0,0 +1,231 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 052X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100017213" + ], + "preferred": "501100017213" + }, + { + "type": "wikidata", + "all": [ + "Q24935942" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457017.0" + ], + "preferred": "grid.457017.0" + } + ], + "id": "https://ror.org/050jcm728", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/insmi/" + } + ], + "names": [ + { + "value": "Institut National des Sciences Mathématiques et de leurs Interactions", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INSMI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Analyse, Géométrie et Modélisation", + "type": "child", + "id": "https://ror.org/03qgt2624" + }, + { + "label": "Centre de Mathématiques Appliquées", + "type": "child", + "id": "https://ror.org/012e1xn46" + }, + { + "label": "Centre de Recherche en Mathématiques de la Décision", + "type": "child", + "id": "https://ror.org/03s0gj002" + }, + { + "label": "Institut Henri Poincaré", + "type": "child", + "id": "https://ror.org/05dfxeg46" + }, + { + "label": "Institut Fourier", + "type": "child", + "id": "https://ror.org/05rwrfh97" + }, + { + "label": "Institut de Mathématique et de Modélisation de Montpellier", + "type": "child", + "id": "https://ror.org/044kxby82" + }, + { + "label": "Institut de Mathématiques de Bordeaux", + "type": "child", + "id": "https://ror.org/05m3r1b84" + }, + { + "label": "Institut de Mathématiques de Jussieu-Paris Rive Gauche", + "type": "child", + "id": "https://ror.org/03fk87k11" + }, + { + "label": "Institut de Recherche Mathématique Avancée", + "type": "child", + "id": "https://ror.org/02hwgty18" + }, + { + "label": "Institut Élie Cartan de Lorraine", + "type": "child", + "id": "https://ror.org/04rvw8791" + }, + { + "label": "Laboratoire Amiénois de Mathématique Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/04smxbm79" + }, + { + "label": "Laboratoire Analyse, Géométrie et Applications", + "type": "child", + "id": "https://ror.org/018nzqy79" + }, + { + "label": "Laboratoire Angevin de Recherche en Mathématiques", + "type": "child", + "id": "https://ror.org/036j0y719" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Jean-Alexandre Dieudonné", + "type": "child", + "id": "https://ror.org/0274zdr66" + }, + { + "label": "Laboratoire Paul Painlevé", + "type": "child", + "id": "https://ror.org/043n4fm24" + }, + { + "label": "Laboratoire de Mathématiques", + "type": "child", + "id": "https://ror.org/05sd5r855" + }, + { + "label": "Laboratoire de Mathématiques Jean Leray", + "type": "child", + "id": "https://ror.org/04g1hjn96" + }, + { + "label": "Laboratoire de Mathématiques Raphaël Salem", + "type": "child", + "id": "https://ror.org/01k1v7590" + }, + { + "label": "Laboratoire de Mathématiques de Bretagne Atlantique", + "type": "child", + "id": "https://ror.org/02ght4n58" + }, + { + "label": "Laboratoire d’Analyse et de Mathématiques Appliquées", + "type": "child", + "id": "https://ror.org/0581g8849" + }, + { + "label": "Laboratory of Mathematics and their Applications", + "type": "child", + "id": "https://ror.org/00g669j87" + }, + { + "label": "Laurent Schwartz Center for Mathematics", + "type": "child", + "id": "https://ror.org/00b7djk73" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Toulouse Mathematics Institute", + "type": "child", + "id": "https://ror.org/014vp6c30" + }, + { + "label": "Unit of Mathematics, Pure and Applied", + "type": "child", + "id": "https://ror.org/05n21n105" + }, + { + "label": "Institut de Mathématiques de Marseille", + "type": "child", + "id": "https://ror.org/042h2y225" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/050qj5m48.json b/test-relationship-delete-v2/updates/050qj5m48.json new file mode 100644 index 000000000..2ad2f53b4 --- /dev/null +++ b/test-relationship-delete-v2/updates/050qj5m48.json @@ -0,0 +1,130 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1968, + "external_ids": [ + { + "all": [ + "0000 0000 9905 4447" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100010066" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q2495861" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.411025.3" + ], + "preferred": "grid.411025.3", + "type": "grid" + } + ], + "id": "https://ror.org/050qj5m48", + "links": [ + { + "type": "website", + "value": "http://www.maine.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Maine_System" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.899617, + "lng": -68.669223, + "name": "Bangor" + }, + "geonames_id": 4957280 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Maine System" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UMS" + } + ], + "relationships": [ + { + "label": "University of Maine", + "type": "child", + "id": "https://ror.org/01adr0w49" + }, + { + "label": "University of Maine School of Law", + "type": "child", + "id": "https://ror.org/04625j688" + }, + { + "label": "University of Maine at Augusta", + "type": "child", + "id": "https://ror.org/041gqhg24" + }, + { + "label": "University of Maine at Farmington", + "type": "child", + "id": "https://ror.org/00ydm0027" + }, + { + "label": "University of Maine at Fort Kent", + "type": "child", + "id": "https://ror.org/038s91v75" + }, + { + "label": "University of Maine at Machias", + "type": "child", + "id": "https://ror.org/00e9xa106" + }, + { + "label": "University of Maine at Presque Isle", + "type": "child", + "id": "https://ror.org/00nk17n43" + }, + { + "label": "University of Southern Maine", + "type": "child", + "id": "https://ror.org/03ke6tv85" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/051g75b06.json b/test-relationship-delete-v2/updates/051g75b06.json new file mode 100644 index 000000000..356dc7bf9 --- /dev/null +++ b/test-relationship-delete-v2/updates/051g75b06.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 706483, + "geonames_details": { + "country_code": "UA", + "country_name": "Ukraine", + "lat": 49.98081, + "lng": 36.25272, + "name": "Kharkiv" + } + } + ], + "established": 1921, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30257440" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.445530.3" + ], + "preferred": "grid.445530.3" + } + ], + "id": "https://ror.org/051g75b06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ksada.org" + } + ], + "names": [ + { + "value": "Kharkov State Academy of Design and Arts", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Харківська державна академія дизайну і мистецтв", + "types": [ + "label" + ], + "lang": "uk" + }, + { + "value": "KSADA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/052g8jq94.json b/test-relationship-delete-v2/updates/052g8jq94.json new file mode 100644 index 000000000..be3a7cfe2 --- /dev/null +++ b/test-relationship-delete-v2/updates/052g8jq94.json @@ -0,0 +1,239 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1968, + "external_ids": [ + { + "all": [ + "0000 0001 2296 0625", + "0000 0001 2097 0205" + ], + "preferred": "0000 0001 2296 0625", + "type": "isni" + }, + { + "all": [ + "501100011104" + ], + "preferred": "501100011104", + "type": "fundref" + }, + { + "all": [ + "Q43452" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.7080.f" + ], + "preferred": "grid.7080.f", + "type": "grid" + } + ], + "id": "https://ror.org/052g8jq94", + "links": [ + { + "type": "website", + "value": "https://www.uab.cat" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Autonomous_University_of_Barcelona" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.49109, + "lng": 2.14079, + "name": "Cerdanyola del Vallès" + }, + "geonames_id": 3109402 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Universitat Autònoma de Barcelona" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Autónoma de Barcelona" + }, + { + "lang": "eu", + "types": [ + "label" + ], + "value": "Bartzelonako Unibertsitate Autonomoa" + }, + { + "lang": "gl", + "types": [ + "label" + ], + "value": "Universidade Autónoma de Barcelona" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Autonomous University of Barcelona" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UAB" + } + ], + "relationships": [ + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "related", + "id": "https://ror.org/03abrgd14" + }, + { + "label": "Hospital Universitari Germans Trias i Pujol", + "type": "related", + "id": "https://ror.org/04wxdxa47" + }, + { + "label": "Barcelona School of Economics", + "type": "related", + "id": "https://ror.org/02k09n368" + }, + { + "label": "Centre de Recerca Matemàtica", + "type": "related", + "id": "https://ror.org/020s51w82" + }, + { + "label": "Computer Vision Center", + "type": "related", + "id": "https://ror.org/00s0nnj93" + }, + { + "label": "Centre for Demographic Studies", + "type": "related", + "id": "https://ror.org/02dm87055" + }, + { + "label": "Institut Universitari d'Investigació en Atenció Primària Jordi Gol", + "type": "related", + "id": "https://ror.org/0370bpp07" + }, + { + "label": "Puigvert Foundation", + "type": "related", + "id": "https://ror.org/03qwx2883" + }, + { + "label": "Fundació Salut i Envelliment UAB", + "type": "related", + "id": "https://ror.org/03c7e3050" + }, + { + "label": "Hospital del Mar Research Institute", + "type": "related", + "id": "https://ror.org/042nkmz09" + }, + { + "label": "Institut Barcelona d'Estudis Internacionals", + "type": "related", + "id": "https://ror.org/05rke5d69" + }, + { + "label": "Institut Català de Paleontologia Miquel Crusafont", + "type": "related", + "id": "https://ror.org/04qeh2h86" + }, + { + "label": "Institut Català d'Oncologia", + "type": "related", + "id": "https://ror.org/01j1eb875" + }, + { + "label": "Institut de Recerca Sant Pau", + "type": "related", + "id": "https://ror.org/005teat46" + }, + { + "label": "Vall d'Hebron Institut de Recerca", + "type": "related", + "id": "https://ror.org/01d5vx451" + }, + { + "label": "Institut d'Estudis Espacials de Catalunya", + "type": "related", + "id": "https://ror.org/00k6njn28" + }, + { + "label": "Institut d'Investigació en Ciències de la Salut Germans Trias i Pujol", + "type": "related", + "id": "https://ror.org/03bzdww12" + }, + { + "label": "Institute of Research and Innovation Parc Tauli", + "type": "related", + "id": "https://ror.org/038c0gc18" + }, + { + "label": "Centre Tecnològic Forestal de Catalunya", + "type": "related", + "id": "https://ror.org/02tt2zf29" + }, + { + "label": "Vall d'Hebron Institute of Oncology", + "type": "related", + "id": "https://ror.org/054xx3904" + }, + { + "label": "IrsiCaixa", + "type": "related", + "id": "https://ror.org/001synm23" + }, + { + "label": "Institute for High Energy Physics", + "type": "related", + "id": "https://ror.org/01sdrjx85" + }, + { + "label": "Center for Research in Agricultural Genomics", + "type": "child", + "id": "https://ror.org/04tz2h245" + }, + { + "label": "Institut Català de Nanociència i Nanotecnologia", + "type": "child", + "id": "https://ror.org/00k1qja49" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/052ss8w32.json b/test-relationship-delete-v2/updates/052ss8w32.json new file mode 100644 index 000000000..ac5574654 --- /dev/null +++ b/test-relationship-delete-v2/updates/052ss8w32.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2306104, + "geonames_details": { + "country_code": "GH", + "country_name": "Ghana", + "lat": 5.55602, + "lng": -0.1969, + "name": "Accra" + } + } + ], + "established": 1993, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0582 2706" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5555350" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434994.7" + ], + "preferred": "grid.434994.7" + } + ], + "id": "https://ror.org/052ss8w32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ghs.gov.gh" + } + ], + "names": [ + { + "value": "Ghana Health Service", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ghanaian Health Service", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "GHS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/053jm8142.json b/test-relationship-delete-v2/updates/053jm8142.json new file mode 100644 index 000000000..55dc92883 --- /dev/null +++ b/test-relationship-delete-v2/updates/053jm8142.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 5015701, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.81252, + "lng": -86.01865, + "name": "Zeeland" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.492550.f" + ], + "preferred": "grid.492550.f" + } + ], + "id": "https://ror.org/053jm8142", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.spectrumhealth.org/locations/spectrum-health-zeeland-community-hospital" + } + ], + "names": [ + { + "value": "Corewell Health Zeeland Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Zeeland Community Hospital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/054a6d704.json b/test-relationship-delete-v2/updates/054a6d704.json new file mode 100644 index 000000000..810200296 --- /dev/null +++ b/test-relationship-delete-v2/updates/054a6d704.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1960 2720" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1436777" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.425604.1" + ], + "preferred": "grid.425604.1" + } + ], + "id": "https://ror.org/054a6d704", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.sepi.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Sociedad_Estatal_de_Participaciones_Industriales" + } + ], + "names": [ + { + "value": "Sociedad Estatal de Participaciones Industriales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SEPI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05591te55.json b/test-relationship-delete-v2/updates/05591te55.json new file mode 100644 index 000000000..963f9c007 --- /dev/null +++ b/test-relationship-delete-v2/updates/05591te55.json @@ -0,0 +1,150 @@ +{ + "locations": [ + { + "geonames_id": 2867714, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.13743, + "lng": 11.57549, + "name": "Munich" + } + } + ], + "established": 1472, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1936 973X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100005722", + "501100006192", + "501100009401" + ], + "preferred": "501100005722" + }, + { + "type": "wikidata", + "all": [ + "Q55044" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5252.0" + ], + "preferred": "grid.5252.0" + } + ], + "id": "https://ror.org/05591te55", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lmu.de" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Ludwig_Maximilian_University_of_Munich" + } + ], + "names": [ + { + "value": "Ludwig-Maximilians-Universität München", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Munich", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universität München", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ludwig Maximilian University of Munich", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ludwig-Maximilians-Universität in Munich", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LMU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "LMU Klinikum", + "type": "related", + "id": "https://ror.org/02jet3w32" + }, + { + "label": "Centre for Advanced Laser Applications", + "type": "child", + "id": "https://ror.org/04j4kfb22" + }, + { + "label": "Ifo Institute for Economic Research", + "type": "child", + "id": "https://ror.org/045495t75" + }, + { + "label": "Center for Integrated Protein Science Munich", + "type": "child", + "id": "https://ror.org/032hzb643" + }, + { + "label": "Center for NanoScience", + "type": "child", + "id": "https://ror.org/002epp671" + }, + { + "label": "Munich Cluster for Systems Neurology", + "type": "child", + "id": "https://ror.org/025z3z560" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/055s8hs34.json b/test-relationship-delete-v2/updates/055s8hs34.json new file mode 100644 index 000000000..941104cb1 --- /dev/null +++ b/test-relationship-delete-v2/updates/055s8hs34.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 2968705, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.7939, + "lng": 2.35992, + "name": "Villejuif" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0480 0128" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.493856.5" + ], + "preferred": "grid.493856.5" + } + ], + "id": "https://ror.org/055s8hs34", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gustaveroussy.fr/en/content/umr-8200-0" + } + ], + "names": [ + { + "value": "Stabilité génétique et oncogenèse", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Genetic Stability and Oncogenesis", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Délégation Ile-de-France Villejuif", + "type": "parent", + "id": "https://ror.org/008kn4z11" + }, + { + "label": "Délégation Paris-Villejuif-03", + "type": "parent", + "id": "https://ror.org/007x3c094" + }, + { + "label": "Institut Gustave Roussy", + "type": "parent", + "id": "https://ror.org/0321g0743" + }, + { + "label": "University of Paris-Sud", + "type": "parent", + "id": "https://ror.org/028rypz17" + } + ], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05691ev83.json b/test-relationship-delete-v2/updates/05691ev83.json new file mode 100644 index 000000000..0b08acccd --- /dev/null +++ b/test-relationship-delete-v2/updates/05691ev83.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 5391959, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.77493, + "lng": -122.41942, + "name": "San Francisco" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6073 3003" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30257865" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.446377.5" + ], + "preferred": "grid.446377.5" + } + ], + "id": "https://ror.org/05691ev83", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://alexandriaarchive.org/" + } + ], + "names": [ + { + "value": "Alexandria Archive Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Open Context", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OpenContext", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OpenContext.org", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "AAI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/056vjed89.json b/test-relationship-delete-v2/updates/056vjed89.json new file mode 100644 index 000000000..cf846f1fe --- /dev/null +++ b/test-relationship-delete-v2/updates/056vjed89.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3114472, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.81687, + "lng": -1.64323, + "name": "Pamplona" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4687 7107" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.424804.e" + ], + "preferred": "grid.424804.e" + } + ], + "id": "https://ror.org/056vjed89", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cemitec.com/" + } + ], + "names": [ + { + "value": "Centro Multidisciplinar de Tecnologías para la Industria", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Cetena Foundation´s Multidisciplinary Innovation and Technology Centre of Navarre", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CEMITEC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0576by029.json b/test-relationship-delete-v2/updates/0576by029.json new file mode 100644 index 000000000..2e22ced2e --- /dev/null +++ b/test-relationship-delete-v2/updates/0576by029.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 265243, + "geonames_details": { + "country_code": "GR", + "country_name": "Greece", + "lat": 38.05, + "lng": 23.8, + "name": "Marousi" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0393 5688" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.19843.37" + ], + "preferred": "grid.19843.37" + } + ], + "id": "https://ror.org/0576by029", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.athena-innovation.gr/el/announce/pressreleases.html" + } + ], + "names": [ + { + "value": "Athena Research and Innovation Center In Information Communication & Knowledge Technologies", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Athena RIC", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Athena Research and Innovation Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Athena Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Athena RC", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/057yy7z71.json b/test-relationship-delete-v2/updates/057yy7z71.json new file mode 100644 index 000000000..73bdf51d7 --- /dev/null +++ b/test-relationship-delete-v2/updates/057yy7z71.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1958, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0496 3568" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30291296" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.437178.e" + ], + "preferred": "grid.437178.e" + } + ], + "id": "https://ror.org/057yy7z71", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ramem.com/" + } + ], + "names": [ + { + "value": "Ramem (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Arquimea (Spain)", + "type": "successor", + "id": "https://ror.org/04mnaqe33" + } + ], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/0589k3111.json b/test-relationship-delete-v2/updates/0589k3111.json new file mode 100644 index 000000000..59a21e138 --- /dev/null +++ b/test-relationship-delete-v2/updates/0589k3111.json @@ -0,0 +1,97 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30299499" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457369.a" + ], + "preferred": "grid.457369.a" + } + ], + "id": "https://ror.org/0589k3111", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.idf.inserm.fr/rubriques/l-inserm-en-ile-de-france/delegation-paris-11" + } + ], + "names": [ + { + "value": "Délégation Paris 11", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DR PARIS 11", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Centre d'Épidémiologie sur les Causes Médicales de Décès", + "type": "child", + "id": "https://ror.org/02bn1dj67" + }, + { + "label": "Hémostase et Dynamique Cellulaire Vasculaire", + "type": "child", + "id": "https://ror.org/05dsek450" + }, + { + "label": "Institute of Psychiatry and Neuroscience of Paris", + "type": "child", + "id": "https://ror.org/02g40zn06" + }, + { + "label": "Laboratory Signaling and Cardiovascular Pathophysiology", + "type": "child", + "id": "https://ror.org/04bkzce69" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/058cmwb06.json b/test-relationship-delete-v2/updates/058cmwb06.json new file mode 100644 index 000000000..750ef23b9 --- /dev/null +++ b/test-relationship-delete-v2/updates/058cmwb06.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1938, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0132 5286" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1750397" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.426205.7" + ], + "preferred": "grid.426205.7" + } + ], + "id": "https://ror.org/058cmwb06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.once.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ONCE" + } + ], + "names": [ + { + "value": "Organización Nacional de Ciegos Españoles", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Organization of Spanish blind people", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ONCE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/058sakv40.json b/test-relationship-delete-v2/updates/058sakv40.json new file mode 100644 index 000000000..1a2e33c0c --- /dev/null +++ b/test-relationship-delete-v2/updates/058sakv40.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5012521, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.13949, + "lng": -83.17826, + "name": "Trenton" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0458 375X" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.416679.b" + ], + "preferred": "grid.416679.b" + } + ], + "id": "https://ror.org/058sakv40", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/locations/beaumont-hospital-trenton" + } + ], + "names": [ + { + "value": "Corewell Health William Beaumont University Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Oakwood Southshore Medical Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Beaumont Hospital, Trenton", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/059gc9s81.json b/test-relationship-delete-v2/updates/059gc9s81.json new file mode 100644 index 000000000..9692a1120 --- /dev/null +++ b/test-relationship-delete-v2/updates/059gc9s81.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1973, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4679 2779" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.473816.f" + ], + "preferred": "grid.473816.f" + } + ], + "id": "https://ror.org/059gc9s81", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://gcm.unu.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/United_Nations_University" + } + ], + "names": [ + { + "value": "United Nations University Institute on Globalization, Culture and Mobility", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "UNU-GCM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United Nations University", + "type": "parent", + "id": "https://ror.org/01cdrde68" + } + ], + "status": "inactive", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/059zf1d45.json b/test-relationship-delete-v2/updates/059zf1d45.json new file mode 100644 index 000000000..1c5a387b9 --- /dev/null +++ b/test-relationship-delete-v2/updates/059zf1d45.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 6356153, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.55222, + "lng": 2.20901, + "name": "Mollet del Vallès" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0507 1975" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434941.f" + ], + "preferred": "grid.434941.f" + } + ], + "id": "https://ror.org/059zf1d45", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.iuct.com/en/" + } + ], + "names": [ + { + "value": "Institut Universitari de Ciencia i Tecnologia (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IUCT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05bvkb649.json b/test-relationship-delete-v2/updates/05bvkb649.json new file mode 100644 index 000000000..144db293e --- /dev/null +++ b/test-relationship-delete-v2/updates/05bvkb649.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3121881, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.36859, + "lng": -1.79622, + "name": "Hondarribia" + } + } + ], + "established": 1976, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0666 8923" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100019124" + ], + "preferred": "501100019124" + }, + { + "type": "grid", + "all": [ + "grid.484077.8" + ], + "preferred": "grid.484077.8" + } + ], + "id": "https://ror.org/05bvkb649", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gipuzkoa.eus" + } + ], + "names": [ + { + "value": "Diputación Foral de Gipuzkoa", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05c7h4935.json b/test-relationship-delete-v2/updates/05c7h4935.json new file mode 100644 index 000000000..1c873511a --- /dev/null +++ b/test-relationship-delete-v2/updates/05c7h4935.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2306104, + "geonames_details": { + "country_code": "GH", + "country_name": "Ghana", + "lat": 5.55602, + "lng": -0.1969, + "name": "Accra" + } + } + ], + "established": 1957, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q6867086" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.415765.4" + ], + "preferred": "grid.415765.4" + }, + { + "type": "isni", + "all": [ + "0000 0001 0721 5002" + ], + "preferred": "0000 0001 0721 5002" + } + ], + "id": "https://ror.org/05c7h4935", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.moh.gov.gh" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Health_(Ghana)" + } + ], + "names": [ + { + "value": "Ministry of Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Health of Ghana", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ghanaian Ministry of Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MoH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05c8abs18.json b/test-relationship-delete-v2/updates/05c8abs18.json new file mode 100644 index 000000000..1470cd916 --- /dev/null +++ b/test-relationship-delete-v2/updates/05c8abs18.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432388.6" + ], + "preferred": "grid.432388.6" + } + ], + "id": "https://ror.org/05c8abs18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.barcelonactiva.cat" + } + ], + "names": [ + { + "value": "Barcelona Activa", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05dnzrj50.json b/test-relationship-delete-v2/updates/05dnzrj50.json new file mode 100644 index 000000000..3a3a77fd1 --- /dev/null +++ b/test-relationship-delete-v2/updates/05dnzrj50.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100013055" + ], + "preferred": "100013055" + } + ], + "id": "https://ror.org/05dnzrj50", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://science.osti.gov/bes/mse" + } + ], + "names": [ + { + "value": "Materials Sciences and Engineering Division", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Division of Materials Sciences and Engineering", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Materials Sciences and Engineering (MSE) Division", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DMSE", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "MSE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ames National Laboratory", + "type": "parent", + "id": "https://ror.org/041m9xr71" + } + ], + "status": "withdrawn", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05dpfhh73.json b/test-relationship-delete-v2/updates/05dpfhh73.json new file mode 100644 index 000000000..1533cb25b --- /dev/null +++ b/test-relationship-delete-v2/updates/05dpfhh73.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.464067.7" + ], + "preferred": "grid.464067.7" + } + ], + "id": "https://ror.org/05dpfhh73", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.scicf.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Interactions Cellulaires et Physiopathologie Hépathique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ICPH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05dr3r825.json b/test-relationship-delete-v2/updates/05dr3r825.json new file mode 100644 index 000000000..584ff5bbc --- /dev/null +++ b/test-relationship-delete-v2/updates/05dr3r825.json @@ -0,0 +1,93 @@ +{ + "locations": [ + { + "geonames_id": 2759794, + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 52.37403, + "lng": 4.88969, + "name": "Amsterdam" + } + } + ], + "established": 1926, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0501 3257" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006315", + "501100022115" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.454756.1" + ], + "preferred": "grid.454756.1" + } + ], + "id": "https://ror.org/05dr3r825", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.reumafonds.nl/" + } + ], + "names": [ + { + "value": "ReumaNederland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Reumafonds", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Dutch Arthritis Foundation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "DAF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05dy6wv04.json b/test-relationship-delete-v2/updates/05dy6wv04.json new file mode 100644 index 000000000..1f717e57e --- /dev/null +++ b/test-relationship-delete-v2/updates/05dy6wv04.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3024783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.80299, + "lng": 2.26692, + "name": "Clamart" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.503203.7" + ], + "preferred": "grid.503203.7" + } + ], + "id": "https://ror.org/05dy6wv04", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://umr996.inserm.fr/" + } + ], + "names": [ + { + "value": "Inflammation, Microbiome and Immunosurveillance", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Inflammation, Chemokines and Immunopathology", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05f82e368.json b/test-relationship-delete-v2/updates/05f82e368.json new file mode 100644 index 000000000..ff0000ecd --- /dev/null +++ b/test-relationship-delete-v2/updates/05f82e368.json @@ -0,0 +1,642 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7885 7602" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100021716" + ], + "preferred": "501100021716" + }, + { + "type": "wikidata", + "all": [ + "Q55849612" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.508487.6" + ], + "preferred": "grid.508487.6" + } + ], + "id": "https://ror.org/05f82e368", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://u-paris.fr/en" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Paris_(2019)" + } + ], + "names": [ + { + "value": "Université Paris Cité", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Paris", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université de Paris", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Hôpitaux Universitaires Paris-Ouest", + "type": "related", + "id": "https://ror.org/01v676463" + }, + { + "label": "Hôtel-Dieu de Paris", + "type": "related", + "id": "https://ror.org/03jmjy508" + }, + { + "label": "Institut de physique du globe de Paris", + "type": "related", + "id": "https://ror.org/004gzqz66" + }, + { + "label": "André Revuz Didactics Laboratory", + "type": "child", + "id": "https://ror.org/053p8kg34" + }, + { + "label": "Anthropology and History of the Ancient World", + "type": "child", + "id": "https://ror.org/04yavcg77" + }, + { + "label": "Astroparticle and Cosmology Laboratory", + "type": "child", + "id": "https://ror.org/03tnjrr49" + }, + { + "label": "Astrophysique, Instrumentation et Modélisation", + "type": "child", + "id": "https://ror.org/0015h8611" + }, + { + "label": "Biologie Intégrée du Globule Rouge", + "type": "child", + "id": "https://ror.org/048cbmc89" + }, + { + "label": "Bioscar", + "type": "child", + "id": "https://ror.org/01qdqrj31" + }, + { + "label": "Center for Research and Interdisciplinarity", + "type": "child", + "id": "https://ror.org/00zbj9525" + }, + { + "label": "Center for Research in Medicine, Science, Health, Mental Health and Society", + "type": "child", + "id": "https://ror.org/02v2jyq75" + }, + { + "label": "Center for Research on Inflammation", + "type": "child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Center for Social Studies on African, American and Asian Worlds", + "type": "child", + "id": "https://ror.org/03pnk9016" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Linguistique Inter-langues, de Lexicologie, de Linguistique Anglaise et de Corpus-Atelier de Recherche sur la Parole", + "type": "child", + "id": "https://ror.org/01y85ge33" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de Recherche sur les Liens Sociaux", + "type": "child", + "id": "https://ror.org/01wcaw014" + }, + { + "label": "Epigenetics and Cell Fate", + "type": "child", + "id": "https://ror.org/03dbsav41" + }, + { + "label": "Expression Génétique Microbienne", + "type": "child", + "id": "https://ror.org/05t5n2z26" + }, + { + "label": "Galaxies, Etoiles, Physique et Instrumentation", + "type": "child", + "id": "https://ror.org/01920cw75" + }, + { + "label": "Imagine Institute for Genetic Diseases", + "type": "child", + "id": "https://ror.org/05rq3rb55" + }, + { + "label": "Institut Cochin", + "type": "child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Jacques Monod", + "type": "child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut de Mathématiques de Jussieu-Paris Rive Gauche", + "type": "child", + "id": "https://ror.org/03fk87k11" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institute of Psychiatry and Neuroscience of Paris", + "type": "child", + "id": "https://ror.org/02g40zn06" + }, + { + "label": "Interfaces Traitements Organisation et Dynamique des Systèmes", + "type": "child", + "id": "https://ror.org/03edms940" + }, + { + "label": "International College of Territorial Sciences", + "type": "child", + "id": "https://ror.org/002t9r032" + }, + { + "label": "Laboratoire Dynamiques Sociales et Recomposition des Espaces", + "type": "child", + "id": "https://ror.org/045r56524" + }, + { + "label": "Laboratoire ICT", + "type": "child", + "id": "https://ror.org/04p7gsa29" + }, + { + "label": "Laboratoire Interdisciplinaire des Énergies de Demain", + "type": "child", + "id": "https://ror.org/00m43ek07" + }, + { + "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", + "type": "child", + "id": "https://ror.org/046cjf283" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Matière et Systèmes Complexes", + "type": "child", + "id": "https://ror.org/032w6q449" + }, + { + "label": "Laboratoire Vision Action Cognition", + "type": "child", + "id": "https://ror.org/03saykv37" + }, + { + "label": "Laboratoire d'Electrochimie Moléculaire", + "type": "child", + "id": "https://ror.org/03atapr58" + }, + { + "label": "Laboratoire de Chimie et Biochimie Pharmacologiques et Toxicologiques", + "type": "child", + "id": "https://ror.org/028qedy27" + }, + { + "label": "Laboratoire de Linguistique Formelle", + "type": "child", + "id": "https://ror.org/0223bz716" + }, + { + "label": "Laboratoire de Physique Nucléaire et de Hautes Énergies", + "type": "child", + "id": "https://ror.org/01hg8p552" + }, + { + "label": "Laboratory Materials and Quantum Phenomena", + "type": "child", + "id": "https://ror.org/02p3et738" + }, + { + "label": "Laboratory Orofacial Pathologies, Imaging and Biotherapies", + "type": "child", + "id": "https://ror.org/00kneq391" + }, + { + "label": "Laboratory Preuves, Programmes et Systèmes", + "type": "child", + "id": "https://ror.org/046p9e825" + }, + { + "label": "Laboratory Universe and Theories", + "type": "child", + "id": "https://ror.org/00bbtde36" + }, + { + "label": "Laboratory for Vascular Translational Science", + "type": "child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laboratory for the Psychology of Child Development and Education", + "type": "child", + "id": "https://ror.org/023kqz006" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Laboratory of Physical and Chemical Biology of Membrane Proteins", + "type": "child", + "id": "https://ror.org/03nr8xh07" + }, + { + "label": "Laboratoire d’études spatiales et d’instrumentation en astrophysique", + "type": "child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratory of Theoretical Biochemistry", + "type": "child", + "id": "https://ror.org/00nvjgv40" + }, + { + "label": "Institut Langevin", + "type": "child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Memory and Cognition Laboratory", + "type": "child", + "id": "https://ror.org/036ydxy43" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Mère et Enfant en Milieu Tropical", + "type": "child", + "id": "https://ror.org/00rd22143" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "Paris Biotech Santé", + "type": "child", + "id": "https://ror.org/05h9gyn11" + }, + { + "label": "Paris Cardiovascular Research Center", + "type": "child", + "id": "https://ror.org/03gvnh520" + }, + { + "label": "Pathologie et Virologie Moléculaire", + "type": "child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Physiopathologie et Epidémiologie des Maladies Respiratoires", + "type": "child", + "id": "https://ror.org/04n8sc212" + }, + { + "label": "Physique et Mécanique des Milieux Hétérogènes", + "type": "child", + "id": "https://ror.org/03kr50w79" + }, + { + "label": "Population and Development Center", + "type": "child", + "id": "https://ror.org/002yg6s88" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Research Institute on the Foundations of Computer Science", + "type": "child", + "id": "https://ror.org/02krdtz55" + }, + { + "label": "Sciences, Philosophie, Histoire", + "type": "child", + "id": "https://ror.org/05c9ks061" + }, + { + "label": "Skin Research Center", + "type": "child", + "id": "https://ror.org/0579jh693" + }, + { + "label": "The Centre for Studies on China, Korea and Japan", + "type": "child", + "id": "https://ror.org/02djzje70" + }, + { + "label": "Toxicology, Pharmacology and Cellular Signaling", + "type": "child", + "id": "https://ror.org/021ryxk89" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Éco-Anthropologie", + "type": "child", + "id": "https://ror.org/03x0yny97" + }, + { + "label": "Épidémiologie Clinique, Évaluation Économique Appliquées aux Populations Vulnérables", + "type": "child", + "id": "https://ror.org/02617e391" + }, + { + "label": "Histoire des Théories Linguistiques", + "type": "child", + "id": "https://ror.org/0546jt497" + }, + { + "label": "Réseau interdisciplinaire pour l’aménagement, l’observation et la cohésion des territoires européens", + "type": "child", + "id": "https://ror.org/036w0tz95" + }, + { + "label": "Mathématiques Appliquées à Paris 5", + "type": "child", + "id": "https://ror.org/04yrrdj53" + }, + { + "label": "NeuroDiderot", + "type": "child", + "id": "https://ror.org/014ndnr76" + }, + { + "label": "Centre d'Investigation Clinique de Vaccinologie Cochin-Pasteur", + "type": "child", + "id": "https://ror.org/01c1p7750" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Innovations Thérapeutiques en Hémostase", + "type": "child", + "id": "https://ror.org/02jp0cd74" + }, + { + "label": "Laboratoire de Recherche sur les Cultures Anglophones", + "type": "child", + "id": "https://ror.org/0057kwj95" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "HIPI - Human Immunology, Pathophysiology and Immunotherapy", + "type": "child", + "id": "https://ror.org/008e1sp22" + }, + { + "label": "Institut Droit et Santé", + "type": "child", + "id": "https://ror.org/01ddqfh11" + }, + { + "label": "Unité de Recherche en Biomatériaux Innovant et Interfaces", + "type": "child", + "id": "https://ror.org/01cht3g41" + }, + { + "label": "Optimisation Thérapeutique en Neuropsychopharmacologie", + "type": "child", + "id": "https://ror.org/05wzabs02" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Infection, Antimicrobials, Modelling, Evolution", + "type": "child", + "id": "https://ror.org/05hqep952" + }, + { + "label": "Institut de Recherche bio-Médicale et d'Epidémiologie du Sport", + "type": "child", + "id": "https://ror.org/00dgdgj39" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Integrative Neuroscience and Cognition Center", + "type": "child", + "id": "https://ror.org/02fgakj19" + }, + { + "label": "SPPIN - Saints-Pères Paris Institute for Neurosciences", + "type": "child", + "id": "https://ror.org/01a4enz31" + }, + { + "label": "Laboratoire de Psychologie et d’Ergonomie Appliquées", + "type": "child", + "id": "https://ror.org/0572pak88" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "Fédération de recherche en sciences mathématiques de Paris centre", + "type": "child", + "id": "https://ror.org/02jwwk370" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "PremUP", + "type": "child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "child", + "id": "https://ror.org/00ex3jm11" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05f8nen40.json b/test-relationship-delete-v2/updates/05f8nen40.json new file mode 100644 index 000000000..c502db98d --- /dev/null +++ b/test-relationship-delete-v2/updates/05f8nen40.json @@ -0,0 +1,65 @@ +{ + "locations": [ + { + "geonames_id": 2514256, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 36.72016, + "lng": -4.42034, + "name": "Málaga" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30284480" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423695.f" + ], + "preferred": "grid.423695.f" + } + ], + "id": "https://ror.org/05f8nen40", + "domains": [], + "links": [], + "names": [ + { + "value": "AT4 wireless (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Dekra (Germany)", + "type": "successor", + "id": "https://ror.org/02b3ny291" + } + ], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05fp9g671.json b/test-relationship-delete-v2/updates/05fp9g671.json new file mode 100644 index 000000000..51760c258 --- /dev/null +++ b/test-relationship-delete-v2/updates/05fp9g671.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 142358, + "geonames_details": { + "country_code": "IR", + "country_name": "Iran", + "lat": 36.69929, + "lng": 52.65011, + "name": "Bābolsar" + } + } + ], + "established": 1979, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9618 7703" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100016293" + ], + "preferred": "501100016293" + }, + { + "type": "wikidata", + "all": [ + "Q6672257" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.411622.2" + ], + "preferred": "grid.411622.2" + } + ], + "id": "https://ror.org/05fp9g671", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://umz.ac.ir" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Mazandaran" + } + ], + "names": [ + { + "value": "University of Mazandaran", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Reza Shah Kabir University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "دانشگاه مازندران", + "types": [ + "label" + ], + "lang": "fa" + }, + { + "value": "UMZ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05g2hd893.json b/test-relationship-delete-v2/updates/05g2hd893.json new file mode 100644 index 000000000..f58a0f526 --- /dev/null +++ b/test-relationship-delete-v2/updates/05g2hd893.json @@ -0,0 +1,135 @@ +{ + "locations": [ + { + "geonames_id": 5007804, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.48948, + "lng": -83.14465, + "name": "Royal Oak" + } + } + ], + "established": 1955, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0460 1081" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100007740" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q970220" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.461921.9" + ], + "preferred": "grid.461921.9" + } + ], + "id": "https://ror.org/05g2hd893", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.beaumont.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Beaumont_Health" + } + ], + "names": [ + { + "value": "Beaumont Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "William Beaumont Health System", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Michigan State University", + "type": "related", + "id": "https://ror.org/05hs6h993" + }, + { + "label": "Oakland University", + "type": "related", + "id": "https://ror.org/01ythxj32" + }, + { + "label": "University of Michigan–Ann Arbor", + "type": "related", + "id": "https://ror.org/00jmfr291" + }, + { + "label": "Wayne State University", + "type": "related", + "id": "https://ror.org/01070mq45" + }, + { + "label": "Beaumont Children's Hospital", + "type": "child", + "id": "https://ror.org/03nr10290" + }, + { + "label": "Oakwood Hospital", + "type": "child", + "id": "https://ror.org/03x4pp342" + }, + { + "label": "Oakwood Southshore Medical Center", + "type": "child", + "id": "https://ror.org/058sakv40" + }, + { + "label": "Beaumont Hospital, Royal Oak", + "type": "child", + "id": "https://ror.org/03artm726" + }, + { + "label": "Beaumont Hospital, Troy", + "type": "child", + "id": "https://ror.org/05x9ffc66" + } + ], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05ghke119.json b/test-relationship-delete-v2/updates/05ghke119.json new file mode 100644 index 000000000..3ca474b23 --- /dev/null +++ b/test-relationship-delete-v2/updates/05ghke119.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2509954, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.47391, + "lng": -0.37966, + "name": "Valencia" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432460.7" + ], + "preferred": "grid.432460.7" + } + ], + "id": "https://ror.org/05ghke119", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.avep.es" + } + ], + "names": [ + { + "value": "Asociacion Valenciana de empresarios de plasticos", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AVEP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05he0t313.json b/test-relationship-delete-v2/updates/05he0t313.json new file mode 100644 index 000000000..5854cd949 --- /dev/null +++ b/test-relationship-delete-v2/updates/05he0t313.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 3096880, + "geonames_details": { + "country_code": "PL", + "country_name": "Poland", + "lat": 51.76109, + "lng": 18.09102, + "name": "Kalisz" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0054 1382" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.467042.3" + ], + "preferred": "grid.467042.3" + }, + { + "type": "wikidata", + "all": [ + "Q11815238" + ], + "preferred": "Q11815238" + } + ], + "id": "https://ror.org/05he0t313", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uniwersytetkaliski.edu.pl" + } + ], + "names": [ + { + "value": "Uniwersytet Kaliski im. Prezydenta Stanisława Wojciechowskiego", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Uniwersytet Kaliski", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Państwowa Wyższa Szkoła Zawodowa w Kaliszu", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PWSZ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05hs6h993.json b/test-relationship-delete-v2/updates/05hs6h993.json new file mode 100644 index 000000000..3da69d853 --- /dev/null +++ b/test-relationship-delete-v2/updates/05hs6h993.json @@ -0,0 +1,194 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1855, + "external_ids": [ + { + "all": [ + "0000 0001 2195 6501", + "0000 0004 1375 3642" + ], + "preferred": "0000 0001 2195 6501", + "type": "isni" + }, + { + "all": [ + "100007709", + "100006534", + "100007508", + "100010507", + "100010518", + "100010603", + "100011138", + "100009585", + "100008425", + "100008587", + "100015893", + "100015892" + ], + "preferred": "100007709", + "type": "fundref" + }, + { + "all": [ + "Q270222" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.17088.36" + ], + "preferred": "grid.17088.36", + "type": "grid" + } + ], + "id": "https://ror.org/05hs6h993", + "links": [ + { + "type": "website", + "value": "https://msu.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Michigan_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.73698, + "lng": -84.48387, + "name": "East Lansing" + }, + "geonames_id": 4991640 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Michigan State University" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État du michigan" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MSU" + } + ], + "relationships": [ + { + "label": "Borgess Medical Center", + "type": "related", + "id": "https://ror.org/03964hc96" + }, + { + "label": "Botsford Hospital", + "type": "related", + "id": "https://ror.org/050qpjf10" + }, + { + "label": "Bronson Methodist Hospital", + "type": "related", + "id": "https://ror.org/032zc6m47" + }, + { + "label": "Butterworth Hospital", + "type": "related", + "id": "https://ror.org/05x643e19" + }, + { + "label": "Genesys Regional Medical Center", + "type": "related", + "id": "https://ror.org/03snrmr61" + }, + { + "label": "Hurley Medical Center", + "type": "related", + "id": "https://ror.org/034npj057" + }, + { + "label": "Marquette General Hospital", + "type": "related", + "id": "https://ror.org/01aj5dy09" + }, + { + "label": "McLaren Greater Lansing", + "type": "related", + "id": "https://ror.org/045zcth28" + }, + { + "label": "Munson Medical Center", + "type": "related", + "id": "https://ror.org/005qzv038" + }, + { + "label": "Sparrow Hospital", + "type": "related", + "id": "https://ror.org/018dx8725" + }, + { + "label": "Spectrum Health Blodgett Hospital", + "type": "related", + "id": "https://ror.org/00qy68j92" + }, + { + "label": "McLaren Regional Medical Center", + "type": "child", + "id": "https://ror.org/01cpcy908" + }, + { + "label": "Michigan Sea Grant", + "type": "child", + "id": "https://ror.org/015tnsz82" + }, + { + "label": "National Superconducting Cyclotron Laboratory", + "type": "child", + "id": "https://ror.org/00qerpb33" + }, + { + "label": "Kellogg Biological Station Long Term Ecological Research", + "type": "child", + "id": "https://ror.org/02vkce854" + }, + { + "label": "Facility for Rare Isotope Beams", + "type": "child", + "id": "https://ror.org/03r4g9w46" + }, + { + "label": "Henry Ford Health + Michigan State University Health Sciences", + "type": "child", + "id": "https://ror.org/0599cab37" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05hv77153.json b/test-relationship-delete-v2/updates/05hv77153.json new file mode 100644 index 000000000..9b71b0af9 --- /dev/null +++ b/test-relationship-delete-v2/updates/05hv77153.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 6174041, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 48.4359, + "lng": -123.35155, + "name": "Victoria" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0707 3462" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100002759" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.468004.e" + ], + "preferred": "grid.468004.e" + }, + { + "type": "wikidata", + "all": [ + "Q30264305" + ], + "preferred": "Q30264305" + } + ], + "id": "https://ror.org/05hv77153", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www2.gov.bc.ca/gov/content/governments/organizational-structure/ministries-organizations/ministries/education" + } + ], + "names": [ + { + "value": "Ministry of Education and Child Care", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "British Columbia Ministry of Education and Child Care", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BC Ministry of Education and Child Care", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "British Columbia Ministry of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BC Ministry of Education", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05j5g1b69.json b/test-relationship-delete-v2/updates/05j5g1b69.json new file mode 100644 index 000000000..96932c89d --- /dev/null +++ b/test-relationship-delete-v2/updates/05j5g1b69.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2653822, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.48, + "lng": -3.18, + "name": "Cardiff" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q29025663" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.500780.a" + ], + "preferred": "grid.500780.a" + } + ], + "id": "https://ror.org/05j5g1b69", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://ppiw.org.uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Public_Policy_Institute_for_Wales" + } + ], + "names": [ + { + "value": "Public Policy Institute for Wales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PPIW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05jmnvy38.json b/test-relationship-delete-v2/updates/05jmnvy38.json new file mode 100644 index 000000000..53c3db9d9 --- /dev/null +++ b/test-relationship-delete-v2/updates/05jmnvy38.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 2619856, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 55.88098, + "lng": 12.50111, + "name": "Hørsholm" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0670 5261" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423937.8" + ], + "preferred": "grid.423937.8" + } + ], + "id": "https://ror.org/05jmnvy38", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.dhigroup.com" + } + ], + "names": [ + { + "value": "DHI", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DHI Water & Environment", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Dansk Hydraulisk Institut", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DHI Water and Environment", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Danish Hydraulic Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DHI A/S", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05mg91w61.json b/test-relationship-delete-v2/updates/05mg91w61.json new file mode 100644 index 000000000..8b7e7beff --- /dev/null +++ b/test-relationship-delete-v2/updates/05mg91w61.json @@ -0,0 +1,100 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5897 3091" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100006151", + "100017535", + "100013055" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30296525" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.452988.a" + ], + "preferred": "grid.452988.a" + } + ], + "id": "https://ror.org/05mg91w61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://science.osti.gov/bes" + } + ], + "names": [ + { + "value": "Office of Basic Energy Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BES", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "DOE BES", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Office of Science", + "type": "parent", + "id": "https://ror.org/00mmn6b08" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05n3x4p02.json b/test-relationship-delete-v2/updates/05n3x4p02.json new file mode 100644 index 000000000..1233e9691 --- /dev/null +++ b/test-relationship-delete-v2/updates/05n3x4p02.json @@ -0,0 +1,134 @@ +{ + "locations": [ + { + "geonames_id": 2761369, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.20849, + "lng": 16.37208, + "name": "Vienna" + } + } + ], + "established": 1365, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9259 8492" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100005788" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q700731" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.22937.3d" + ], + "preferred": "grid.22937.3d" + } + ], + "id": "https://ror.org/05n3x4p02", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.meduniwien.ac.at" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Medical_University_of_Vienna" + } + ], + "names": [ + { + "value": "Medical University of Vienna", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MedUni Wien", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MedUni Vienna", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Medizinische Universität Wien", + "types": [ + "label" + ], + "lang": "de" + } + ], + "relationships": [ + { + "label": "Complexity Science Hub Vienna", + "type": "related", + "id": "https://ror.org/023dz9m50" + }, + { + "label": "Universitätsklinik für Neurologie", + "type": "related", + "id": "https://ror.org/00adn8q67" + }, + { + "label": "Universitätszahnklinik Wien", + "type": "related", + "id": "https://ror.org/04zvdfd56" + }, + { + "label": "Vienna General Hospital", + "type": "related", + "id": "https://ror.org/05f0zr486" + }, + { + "label": "Comprehensive Cancer Center Vienna", + "type": "child", + "id": "https://ror.org/00df3z122" + }, + { + "label": "Universitätsklinik für Hals-, Nasen- und Ohrenkrankheiten", + "type": "child", + "id": "https://ror.org/0045a4523" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05p3cb968.json b/test-relationship-delete-v2/updates/05p3cb968.json new file mode 100644 index 000000000..52aea9a65 --- /dev/null +++ b/test-relationship-delete-v2/updates/05p3cb968.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 1040652, + "geonames_details": { + "country_code": "MZ", + "country_name": "Mozambique", + "lat": -25.96553, + "lng": 32.58322, + "name": "Maputo" + } + } + ], + "established": 2005, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9230 7800" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100013954" + ], + "preferred": "501100013954" + }, + { + "type": "grid", + "all": [ + "grid.463372.7" + ], + "preferred": "grid.463372.7" + }, + { + "type": "wikidata", + "all": [ + "Q30261867" + ], + "preferred": "Q30261867" + } + ], + "id": "https://ror.org/05p3cb968", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iiam.gov.mz" + } + ], + "names": [ + { + "value": "Instituto de Investigação Agrária de Moçambique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Agricultural Research Institute of Mozambique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IIAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05p70jq59.json b/test-relationship-delete-v2/updates/05p70jq59.json new file mode 100644 index 000000000..c97c6c94f --- /dev/null +++ b/test-relationship-delete-v2/updates/05p70jq59.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2179537, + "geonames_details": { + "country_code": "NZ", + "country_name": "New Zealand", + "lat": -41.28664, + "lng": 174.77557, + "name": "Wellington" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0727 3536" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1937182" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.488641.7" + ], + "preferred": "grid.488641.7" + }, + { + "type": "fundref", + "all": [ + "501100009648" + ], + "preferred": "501100009648" + } + ], + "id": "https://ror.org/05p70jq59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.education.govt.nz/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Education_(New_Zealand)" + } + ], + "names": [ + { + "value": "Ministry of Education", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Education of New Zealand", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "New Zealand Ministry of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Te Tāhuhu o te Mātauranga", + "types": [ + "label" + ], + "lang": "mi" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05ppf7q77.json b/test-relationship-delete-v2/updates/05ppf7q77.json new file mode 100644 index 000000000..8f0a54d5c --- /dev/null +++ b/test-relationship-delete-v2/updates/05ppf7q77.json @@ -0,0 +1,100 @@ +{ + "locations": [ + { + "geonames_id": 3014143, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.77334, + "lng": 2.07393, + "name": "Guyancourt" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q3214361" + ], + "preferred": "Q3214361" + }, + { + "type": "grid", + "all": [ + "grid.494619.7" + ], + "preferred": "grid.494619.7" + }, + { + "type": "isni", + "all": [ + "0000 0001 0456 3087" + ], + "preferred": "0000 0001 0456 3087" + } + ], + "id": "https://ror.org/05ppf7q77", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.latmos.ipsl.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Laboratoire_atmosph%C3%A8res,_milieux,_observations_spatiales" + } + ], + "names": [ + { + "value": "Laboratoire atmosphères, milieux, observations spatiales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Atmospheres Laboratory Environments, Observations Spatiales", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LATMOS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "parent", + "id": "https://ror.org/03mkjjy25" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05r0vyz12.json b/test-relationship-delete-v2/updates/05r0vyz12.json new file mode 100644 index 000000000..594db7c63 --- /dev/null +++ b/test-relationship-delete-v2/updates/05r0vyz12.json @@ -0,0 +1,142 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100004837", + "100014440", + "501100017642" + ], + "preferred": "501100004837" + }, + { + "type": "wikidata", + "all": [ + "Q85874966" + ], + "preferred": "Q85874966" + } + ], + "id": "https://ror.org/05r0vyz12", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciencia.gob.es" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Ministerio_de_Ciencia_e_Innovaci%C3%B3n" + } + ], + "names": [ + { + "value": "Ministerio de Ciencia, Innovación y Universidades", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Science and Information", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Science, Innovation and Universities", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spanish Ministry of Science, Innovation and Universities", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Science, Innovation and Universities, Spain", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministerio de Ciencia, Innovación y Universidades de España", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministerio de Ciencia e Innovación", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministerio de Ciencia e Innovación de España", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MICINN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Agencia Estatal de Investigación", + "type": "child", + "id": "https://ror.org/003x0zc53" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "Instituto de Salud Carlos III", + "type": "child", + "id": "https://ror.org/00ca2c886" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05rbx8m02.json b/test-relationship-delete-v2/updates/05rbx8m02.json new file mode 100644 index 000000000..2692843ce --- /dev/null +++ b/test-relationship-delete-v2/updates/05rbx8m02.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 3173435, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + } + } + ], + "established": 1918, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0707 5492" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100008088" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.417894.7" + ], + "preferred": "grid.417894.7" + } + ], + "id": "https://ror.org/05rbx8m02", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.istituto-besta.it" + } + ], + "names": [ + { + "value": "Fondazione IRCCS Istituto Neurologico Carlo Besta", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IRCCS Istituto Neurologico Carlo Besta", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Istituto Neurologico Carlo Besta", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Carlo Besta Neurological Institute", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Istituti di Ricovero e Cura a Carattere Scientifico", + "type": "parent", + "id": "https://ror.org/04tfzc498" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05sgwan27.json b/test-relationship-delete-v2/updates/05sgwan27.json new file mode 100644 index 000000000..457773e16 --- /dev/null +++ b/test-relationship-delete-v2/updates/05sgwan27.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30256536" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434270.6" + ], + "preferred": "grid.434270.6" + } + ], + "id": "https://ror.org/05sgwan27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://worldgeo.weebly.com/" + } + ], + "names": [ + { + "value": "Ecosystem (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05syd6y78.json b/test-relationship-delete-v2/updates/05syd6y78.json new file mode 100644 index 000000000..2df801316 --- /dev/null +++ b/test-relationship-delete-v2/updates/05syd6y78.json @@ -0,0 +1,97 @@ +{ + "locations": [ + { + "geonames_id": 3464975, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -25.42778, + "lng": -49.27306, + "name": "Curitiba" + } + } + ], + "established": 1912, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1941 472X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100008224", + "501100008223" + ], + "preferred": "501100008223" + }, + { + "type": "wikidata", + "all": [ + "Q1232831" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.20736.30" + ], + "preferred": "grid.20736.30" + } + ], + "id": "https://ror.org/05syd6y78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ufpr.br" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Federal_University_of_Paran%C3%A1" + } + ], + "names": [ + { + "value": "Universidade Federal do Paraná", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Federal University of Paraná", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UFPR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05vm26792.json b/test-relationship-delete-v2/updates/05vm26792.json new file mode 100644 index 000000000..48a9c574f --- /dev/null +++ b/test-relationship-delete-v2/updates/05vm26792.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 1691444, + "geonames_details": { + "country_code": "PH", + "country_name": "Philippines", + "lat": 11.58528, + "lng": 122.75111, + "name": "Roxas City" + } + } + ], + "established": 1981, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0480 6802" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5036027" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.443135.4" + ], + "preferred": "grid.443135.4" + } + ], + "id": "https://ror.org/05vm26792", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.capsu.edu.ph" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Capiz_State_University" + } + ], + "names": [ + { + "value": "Capiz State University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Panay State Polytechnic College", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CAPSU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05wg1m734.json b/test-relationship-delete-v2/updates/05wg1m734.json new file mode 100644 index 000000000..6456ad125 --- /dev/null +++ b/test-relationship-delete-v2/updates/05wg1m734.json @@ -0,0 +1,125 @@ +{ + "locations": [ + { + "geonames_id": 2750053, + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + } + } + ], + "established": 1956, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0444 9382" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006209", + "501100003297" + ], + "preferred": "501100006209" + }, + { + "type": "wikidata", + "all": [ + "Q2594321" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.10417.33" + ], + "preferred": "grid.10417.33" + } + ], + "id": "https://ror.org/05wg1m734", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.radboudumc.nl" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Radboud_University_Nijmegen_Medical_Centre" + } + ], + "names": [ + { + "value": "Radboud University Medical Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Radboud University Nijmegen Medical Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Radboudumc", + "types": [ + "label" + ], + "lang": "nl" + }, + { + "value": "RUNMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Radboud University Nijmegen", + "type": "related", + "id": "https://ror.org/016xsfp80" + }, + { + "label": "Amalia Kinderziekenhuis", + "type": "child", + "id": "https://ror.org/024pk8k39" + }, + { + "label": "ERN eUROGEN", + "type": "related", + "id": "https://ror.org/00y7tet25" + }, + { + "label": "ERN GENTURIS", + "type": "related", + "id": "https://ror.org/03pbpa834" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05wygq130.json b/test-relationship-delete-v2/updates/05wygq130.json new file mode 100644 index 000000000..1573e2218 --- /dev/null +++ b/test-relationship-delete-v2/updates/05wygq130.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3871336, + "geonames_details": { + "country_code": "CL", + "country_name": "Chile", + "lat": -33.45694, + "lng": -70.64827, + "name": "Santiago" + } + } + ], + "established": 1981, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2230 9680" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5515968" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.441822.9" + ], + "preferred": "grid.441822.9" + } + ], + "id": "https://ror.org/05wygq130", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ugm.cl/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Gabriela_Mistral_University" + } + ], + "names": [ + { + "value": "Universidad Gabriela Mistral", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Gabriela Mistral University", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UGM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05wzh1m37.json b/test-relationship-delete-v2/updates/05wzh1m37.json new file mode 100644 index 000000000..abcd3c52c --- /dev/null +++ b/test-relationship-delete-v2/updates/05wzh1m37.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0382 4005" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462047.3" + ], + "preferred": "grid.462047.3" + } + ], + "id": "https://ror.org/05wzh1m37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.icmmo.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ICMMO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05x643e19.json b/test-relationship-delete-v2/updates/05x643e19.json new file mode 100644 index 000000000..2cde80bf0 --- /dev/null +++ b/test-relationship-delete-v2/updates/05x643e19.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 4994358, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.96336, + "lng": -85.66809, + "name": "Grand Rapids" + } + } + ], + "established": 1875, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0450 5989" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5003039" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.413153.1" + ], + "preferred": "grid.413153.1" + } + ], + "id": "https://ror.org/05x643e19", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.spectrumhealth.org/butterworth" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Butterworth_Hospital_(Michigan)" + } + ], + "names": [ + { + "value": "Corewell Health Butterworth Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Butterworth Hospital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Michigan State University", + "type": "related", + "id": "https://ror.org/05hs6h993" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05x9ffc66.json b/test-relationship-delete-v2/updates/05x9ffc66.json new file mode 100644 index 000000000..ac0fc4b18 --- /dev/null +++ b/test-relationship-delete-v2/updates/05x9ffc66.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1908, + "external_ids": [ + { + "all": [ + "0000 0004 0435 2409" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q50376756" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.417120.1" + ], + "preferred": "grid.417120.1", + "type": "grid" + } + ], + "id": "https://ror.org/05x9ffc66", + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/locations/beaumont-hospital-troy" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.60559, + "lng": -83.14993, + "name": "Troy" + }, + "geonames_id": 5012639 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Beaumont Hospital, Troy" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "William Beaumont Hospital, Troy" + } + ], + "relationships": [ + { + "label": "Oakland University", + "type": "related", + "id": "https://ror.org/01ythxj32" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/test-relationship-delete-v2/updates/05xwcq167.json b/test-relationship-delete-v2/updates/05xwcq167.json new file mode 100644 index 000000000..c7ca26c52 --- /dev/null +++ b/test-relationship-delete-v2/updates/05xwcq167.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 3996069, + "geonames_details": { + "country_code": "MX", + "country_name": "Mexico", + "lat": 32.62781, + "lng": -115.45446, + "name": "Mexicali" + } + } + ], + "established": 1957, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2192 0509" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100007228" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q4826824" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.412852.8" + ], + "preferred": "grid.412852.8" + } + ], + "id": "https://ror.org/05xwcq167", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.uabc.mx/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Autonomous_University_of_Baja_California" + } + ], + "names": [ + { + "value": "Universidad Autónoma de Baja California", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Autonomous University of Baja California", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UABC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/test-v2-address-update/00kr50z52.json b/test-v2-address-update/00kr50z52.json new file mode 100644 index 000000000..41d83e204 --- /dev/null +++ b/test-v2-address-update/00kr50z52.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2017, + "external_ids": [], + "id": "https://ror.org/00kr50z52", + "links": [ + { + "type": "website", + "value": "https://ises-europe.org" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + }, + "geonames_id": 2750053 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "ISES Europe" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "International Society of Exposure Science – Europe Chapter" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "ISES Europe Board." + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Europe Regional Chapter of the International Society of Exposure Science" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0007c7s16.json b/test-v2-csv-new/new/0007c7s16.json new file mode 100644 index 000000000..e5eaaa085 --- /dev/null +++ b/test-v2-csv-new/new/0007c7s16.json @@ -0,0 +1,56 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1935, + "external_ids": [ + { + "all": [ + "Q124614513" + ], + "preferred": "Q124614513", + "type": "wikidata" + } + ], + "id": "https://ror.org/0007c7s16", + "links": [ + { + "type": "website", + "value": "https://www.youthscotland.org.uk" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + }, + "geonames_id": 2650225 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Youth Scotland" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/000wyn554.json b/test-v2-csv-new/new/000wyn554.json new file mode 100644 index 000000000..5fae6948b --- /dev/null +++ b/test-v2-csv-new/new/000wyn554.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q52607172" + ], + "preferred": "Q52607172", + "type": "wikidata" + } + ], + "id": "https://ror.org/000wyn554", + "links": [ + { + "type": "website", + "value": "https://lpcn.unicaen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LPCN" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratoire de psychologie Caen Normandie" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00144dd10.json b/test-v2-csv-new/new/00144dd10.json new file mode 100644 index 000000000..88f01116a --- /dev/null +++ b/test-v2-csv-new/new/00144dd10.json @@ -0,0 +1,92 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q124271610" + ], + "preferred": "Q124271610", + "type": "wikidata" + } + ], + "id": "https://ror.org/00144dd10", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/spcmsc" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 27.77086, + "lng": -82.67927, + "name": "St. Petersburg" + }, + "geonames_id": 4171563 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SPCMSC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS SPCMSC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS St. Petersburg Coastal and Marine Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey St. Petersburg Coastal and Marine Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey St. Petersburg Coastal and Marine Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "St. Petersburg Coastal and Marine Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/001fhs780.json b/test-v2-csv-new/new/001fhs780.json new file mode 100644 index 000000000..f3a6f6837 --- /dev/null +++ b/test-v2-csv-new/new/001fhs780.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [], + "id": "https://ror.org/001fhs780", + "links": [ + { + "type": "website", + "value": "https://umr1089.univ-nantes.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 47.21725, + "lng": -1.55336, + "name": "Nantes" + }, + "geonames_id": 2990969 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Thérapie Génique Translationnelle Des Maladies Génétiques" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "TaRGeT" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Translational Research in Gene Therapy" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/002m41n44.json b/test-v2-csv-new/new/002m41n44.json new file mode 100644 index 000000000..5ba5d3a59 --- /dev/null +++ b/test-v2-csv-new/new/002m41n44.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/002m41n44", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/columbia-environmental-research-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.95171, + "lng": -92.33407, + "name": "Columbia" + }, + "geonames_id": 4381982 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CERC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS CERC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Columbia Environmental Research Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Columbia Environmental Research Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Columbia Environmental Research Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Columbia Environmental Research Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/003fhhb24.json b/test-v2-csv-new/new/003fhhb24.json new file mode 100644 index 000000000..ce9c41586 --- /dev/null +++ b/test-v2-csv-new/new/003fhhb24.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/003fhhb24", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/oklahoma-texas-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 30.26715, + "lng": -97.74306, + "name": "Austin" + }, + "geonames_id": 4671654 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Oklahoma-Texas Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Oklahoma-Texas Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Oklahoma-Texas Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Oklahoma-Texas Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0045qpj30.json b/test-v2-csv-new/new/0045qpj30.json new file mode 100644 index 000000000..391cc3c83 --- /dev/null +++ b/test-v2-csv-new/new/0045qpj30.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/0045qpj30", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/forest-and-rangeland-ecosystem-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.56457, + "lng": -123.26204, + "name": "Corvallis" + }, + "geonames_id": 5720727 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "FRESC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS FRESC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Forest and Rangeland Ecosystem Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Forest and Rangeland Ecosystem Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Forest and Rangeland Ecosystem Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Forest and Rangeland Ecosystem Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/004662r84.json b/test-v2-csv-new/new/004662r84.json new file mode 100644 index 000000000..422c6c137 --- /dev/null +++ b/test-v2-csv-new/new/004662r84.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1996, + "external_ids": [], + "id": "https://ror.org/004662r84", + "links": [ + { + "type": "website", + "value": "https://isomer.univ-nantes.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 47.21725, + "lng": -1.55336, + "name": "Nantes" + }, + "geonames_id": 2990969 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "ISOMer" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Institut Des Substances et Organismes de la Mer" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/004fp5381.json b/test-v2-csv-new/new/004fp5381.json new file mode 100644 index 000000000..7afd22758 --- /dev/null +++ b/test-v2-csv-new/new/004fp5381.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q51780144" + ], + "preferred": "Q51780144", + "type": "wikidata" + } + ], + "id": "https://ror.org/004fp5381", + "links": [ + { + "type": "website", + "value": "https://grhvn.univ-rouen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.44313, + "lng": 1.09932, + "name": "Rouen" + }, + "geonames_id": 2982652 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "GRHVN" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Groupe de Recherche sur le Handicap Ventilatoire et Neurologique" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/004tta138.json b/test-v2-csv-new/new/004tta138.json new file mode 100644 index 000000000..b5b30b836 --- /dev/null +++ b/test-v2-csv-new/new/004tta138.json @@ -0,0 +1,91 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/004tta138", + "links": [ + { + "type": "website", + "value": "https://airi.net" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "RU", + "country_name": "Russia", + "lat": 55.75222, + "lng": 37.61556, + "name": "Moscow" + }, + "geonames_id": 524901 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "AIRI" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Artificial Intelligence Research Institute AIRI" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Autonomous Non-Profit Organization “Artificial Intelligence Research Institute”" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "ANO “AI Research Institute”" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Институт искусственного интеллекта AIRI" + }, + { + "lang": "ru", + "types": [ + "label" + ], + "value": "AIRI - научно-исследовательский институт искусственного интеллекта" + }, + { + "lang": null, + "types": [ + "alias", + "ror_display" + ], + "value": "AIRI - Artificial Intelligence Research Institute" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0079mr346.json b/test-v2-csv-new/new/0079mr346.json new file mode 100644 index 000000000..9a27e3cea --- /dev/null +++ b/test-v2-csv-new/new/0079mr346.json @@ -0,0 +1,76 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/0079mr346", + "links": [ + { + "type": "website", + "value": "https://anticipe.eu" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ANTICIPE" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratoire ANTICIPE" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Interdisciplinary Research Unit for Cancer Prevention and Treatment" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Interdisciplinary Research Unit for the Prevention and Treatment of Cancers" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Unité de recherche interdisciplinaire pour la prévention et le traitement des cancers" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0092caf05.json b/test-v2-csv-new/new/0092caf05.json new file mode 100644 index 000000000..97f9bf7a8 --- /dev/null +++ b/test-v2-csv-new/new/0092caf05.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2018, + "external_ids": [ + { + "all": [ + "0000 0004 9154 730X" + ], + "preferred": "0000 0004 9154 730X", + "type": "isni" + } + ], + "id": "https://ror.org/0092caf05", + "links": [ + { + "type": "website", + "value": "https://www.uniq.edu.iq" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IQ", + "country_name": "Iraq", + "lat": 35.56496, + "lng": 45.4329, + "name": "Sulaymaniyah" + }, + "geonames_id": 98463 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "QIU" + }, + { + "lang": "ku", + "types": [ + "label" + ], + "value": "زانکۆی نێودەوڵەتی قەیوان" + }, + { + "lang": "ar", + "types": [ + "label" + ], + "value": "جامعة قيوان الدولية" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Qaiwan International University" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00b6pck10.json b/test-v2-csv-new/new/00b6pck10.json new file mode 100644 index 000000000..d694d88a7 --- /dev/null +++ b/test-v2-csv-new/new/00b6pck10.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2017, + "external_ids": [], + "id": "https://ror.org/00b6pck10", + "links": [ + { + "type": "website", + "value": "https://www.data-futures.org" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.33962, + "lng": 12.37129, + "name": "Leipzig" + }, + "geonames_id": 2879139 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DF" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "datafutures" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Data Futures GmbH" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00cfe8c45.json b/test-v2-csv-new/new/00cfe8c45.json new file mode 100644 index 000000000..bb62ac9ba --- /dev/null +++ b/test-v2-csv-new/new/00cfe8c45.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/00cfe8c45", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/eesc" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.38816, + "lng": -77.88555, + "name": "Kearneysville" + }, + "geonames_id": 4810696 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Eastern Ecological Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Eastern Ecological Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Eastern Ecological Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Eastern Ecological Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00dhrvn59.json b/test-v2-csv-new/new/00dhrvn59.json new file mode 100644 index 000000000..4fcb7d275 --- /dev/null +++ b/test-v2-csv-new/new/00dhrvn59.json @@ -0,0 +1,76 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/00dhrvn59", + "links": [ + { + "type": "website", + "value": "https://jkfenner.com" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 9.919, + "lng": 78.11953, + "name": "Madurai" + }, + "geonames_id": 1264521 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "JKFE" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "JK Fenner" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "JK Fenner India Limited" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "JK Fenner India Ltd." + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "JK Fenner (India)" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00e5tt780.json b/test-v2-csv-new/new/00e5tt780.json new file mode 100644 index 000000000..f94985131 --- /dev/null +++ b/test-v2-csv-new/new/00e5tt780.json @@ -0,0 +1,85 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 9534 4542" + ], + "preferred": "0000 0004 9534 4542", + "type": "isni" + }, + { + "all": [ + "Q97102989" + ], + "preferred": "Q97102989", + "type": "wikidata" + } + ], + "id": "https://ror.org/00e5tt780", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/earthquake-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.41352, + "lng": -122.05404, + "name": "Moffett Federal Airfield" + }, + "geonames_id": 8096494 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Earthquake Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Earthquake Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Earthquake Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Earthquake Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00e5z0c05.json b/test-v2-csv-new/new/00e5z0c05.json new file mode 100644 index 000000000..78fdb330f --- /dev/null +++ b/test-v2-csv-new/new/00e5z0c05.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1997, + "external_ids": [ + { + "all": [ + "Q51784341" + ], + "preferred": "Q51784341", + "type": "wikidata" + } + ], + "id": "https://ror.org/00e5z0c05", + "links": [ + { + "type": "website", + "value": "https://lis.unicaen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LIS" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratoire d'Ingénierie des Systèmes" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00ez8tk96.json b/test-v2-csv-new/new/00ez8tk96.json new file mode 100644 index 000000000..e06338e40 --- /dev/null +++ b/test-v2-csv-new/new/00ez8tk96.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2006, + "external_ids": [ + { + "all": [ + "Q97978929" + ], + "preferred": "Q97978929", + "type": "wikidata" + } + ], + "id": "https://ror.org/00ez8tk96", + "links": [ + { + "type": "website", + "value": "https://icc.ub.edu" + }, + { + "type": "wikipedia", + "value": "https://ca.wikipedia.org/wiki/Institut_de_Ci%C3%A8ncies_del_Cosmos_de_la_Universitat_de_Barcelona" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + }, + "geonames_id": 3128760 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ICCUB" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Institut de Ciències del Cosmos de la Universitat de Barcelona" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Institute of Cosmos Sciences" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Institut de Ciències del Cosmos" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00f6c3733.json b/test-v2-csv-new/new/00f6c3733.json new file mode 100644 index 000000000..622df3d6c --- /dev/null +++ b/test-v2-csv-new/new/00f6c3733.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2005, + "external_ids": [], + "id": "https://ror.org/00f6c3733", + "links": [ + { + "type": "website", + "value": "https://udavinci.edu.mx" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "MX", + "country_name": "Mexico", + "lat": 19.42847, + "lng": -99.12766, + "name": "Mexico City" + }, + "geonames_id": 3530597 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UDV" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Davinci University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "UDAVINCI" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Universidad Da Vinci" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00faawq65.json b/test-v2-csv-new/new/00faawq65.json new file mode 100644 index 000000000..b6fd8434d --- /dev/null +++ b/test-v2-csv-new/new/00faawq65.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/00faawq65", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/arizona-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.22174, + "lng": -110.92648, + "name": "Tucson" + }, + "geonames_id": 5318313 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Arizona Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Arizona Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Arizona Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Arizona Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00gg3f494.json b/test-v2-csv-new/new/00gg3f494.json new file mode 100644 index 000000000..24ecacd04 --- /dev/null +++ b/test-v2-csv-new/new/00gg3f494.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0374 3475" + ], + "preferred": "0000 0004 0374 3475", + "type": "isni" + }, + { + "all": [ + "Q51785098" + ], + "preferred": "Q51785098", + "type": "wikidata" + } + ], + "id": "https://ror.org/00gg3f494", + "links": [ + { + "type": "website", + "value": "https://urcom.univ-lehavre.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.49346, + "lng": 0.10785, + "name": "Le Havre" + }, + "geonames_id": 3003796 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "URCOM" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Unité de Recherche en Chimie Organique et Macromoléculaire" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00hrb9j37.json b/test-v2-csv-new/new/00hrb9j37.json new file mode 100644 index 000000000..ab013f39b --- /dev/null +++ b/test-v2-csv-new/new/00hrb9j37.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/00hrb9j37", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/oregon-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 45.52345, + "lng": -122.67621, + "name": "Portland" + }, + "geonames_id": 5746545 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Oregon Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Oregon Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Oregon Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Oregon Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00j54yz12.json b/test-v2-csv-new/new/00j54yz12.json new file mode 100644 index 000000000..43595b4e8 --- /dev/null +++ b/test-v2-csv-new/new/00j54yz12.json @@ -0,0 +1,92 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0398 0403" + ], + "preferred": "0000 0004 0398 0403", + "type": "isni" + }, + { + "all": [ + "Q49569044" + ], + "preferred": "Q49569044", + "type": "wikidata" + } + ], + "id": "https://ror.org/00j54yz12", + "links": [ + { + "type": "website", + "value": "https://www.zrs-kp.si" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "SI", + "country_name": "Slovenia", + "lat": 45.54694, + "lng": 13.72944, + "name": "Koper" + }, + "geonames_id": 3197753 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "SRC Koper" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "ZRS Koper" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Science and Research Centre of Koper" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Centro di ricerche scientifiche Capodistria" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Znanstveno-raziskovalno središče Koper" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00kr50z52.json b/test-v2-csv-new/new/00kr50z52.json new file mode 100644 index 000000000..41d83e204 --- /dev/null +++ b/test-v2-csv-new/new/00kr50z52.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2017, + "external_ids": [], + "id": "https://ror.org/00kr50z52", + "links": [ + { + "type": "website", + "value": "https://ises-europe.org" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + }, + "geonames_id": 2750053 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "ISES Europe" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "International Society of Exposure Science – Europe Chapter" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "ISES Europe Board." + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Europe Regional Chapter of the International Society of Exposure Science" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00pcrrm15.json b/test-v2-csv-new/new/00pcrrm15.json new file mode 100644 index 000000000..44c63a2f1 --- /dev/null +++ b/test-v2-csv-new/new/00pcrrm15.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q51784827" + ], + "preferred": "Q51784827", + "type": "wikidata" + } + ], + "id": "https://ror.org/00pcrrm15", + "links": [ + { + "type": "website", + "value": "https://recherche.univ-rouen.fr/irseem-institut-de-recherche-en-systemes-electroniques-embarques-ur-4353-683807.kjsp" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.37794, + "lng": 1.10467, + "name": "Saint-Étienne-du-Rouvray" + }, + "geonames_id": 2980236 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IRSEEM" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Institut de Recherche en Systèmes Electroniques Embarqués" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00pzwvf23.json b/test-v2-csv-new/new/00pzwvf23.json new file mode 100644 index 000000000..d749a821e --- /dev/null +++ b/test-v2-csv-new/new/00pzwvf23.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/00pzwvf23", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/florence-bascom-geoscience-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.96872, + "lng": -77.3411, + "name": "Reston" + }, + "geonames_id": 4781530 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Florence Bascom Geoscience Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Florence Bascom Geoscience Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Florence Bascom Geoscience Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Florence Bascom Geoscience Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00qj2fj02.json b/test-v2-csv-new/new/00qj2fj02.json new file mode 100644 index 000000000..09af5dbb8 --- /dev/null +++ b/test-v2-csv-new/new/00qj2fj02.json @@ -0,0 +1,78 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "100013042" + ], + "preferred": "100013042", + "type": "fundref" + } + ], + "id": "https://ror.org/00qj2fj02", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/wyoming-montana-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 45.78329, + "lng": -108.50069, + "name": "Billings" + }, + "geonames_id": 5640350 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Wyoming-Montana Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Wyoming-Montana Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Wyoming-Montana Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Wyoming-Montana Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00qn9mx69.json b/test-v2-csv-new/new/00qn9mx69.json new file mode 100644 index 000000000..c5fd04bb7 --- /dev/null +++ b/test-v2-csv-new/new/00qn9mx69.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/00qn9mx69", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/new-mexico-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 35.08449, + "lng": -106.65114, + "name": "Albuquerque" + }, + "geonames_id": 5454711 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS New Mexico Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey New Mexico Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey New Mexico Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "New Mexico Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00r906158.json b/test-v2-csv-new/new/00r906158.json new file mode 100644 index 000000000..25cdfd750 --- /dev/null +++ b/test-v2-csv-new/new/00r906158.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/00r906158", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/colorado-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.43373, + "lng": -104.89439, + "name": "Denver-Aurora-Lakewood, CO" + }, + "geonames_id": 12213207 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Colorado Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Colorado Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Colorado Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Colorado Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00tjvks52.json b/test-v2-csv-new/new/00tjvks52.json new file mode 100644 index 000000000..54050b622 --- /dev/null +++ b/test-v2-csv-new/new/00tjvks52.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0000 9616 0914" + ], + "preferred": "0000 0000 9616 0914", + "type": "isni" + }, + { + "all": [ + "Q51779943" + ], + "preferred": "Q51779943", + "type": "wikidata" + } + ], + "id": "https://ror.org/00tjvks52", + "links": [ + { + "type": "website", + "value": "https://crisco.unicaen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CRISCO" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Centre de recherche Inter-langues sur la Signification en contexte" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00twnrn29.json b/test-v2-csv-new/new/00twnrn29.json new file mode 100644 index 000000000..f37e50aef --- /dev/null +++ b/test-v2-csv-new/new/00twnrn29.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2008, + "external_ids": [], + "id": "https://ror.org/00twnrn29", + "links": [ + { + "type": "website", + "value": "https://www.celphedia.eu" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.52894, + "lng": 7.71523, + "name": "Illkirch-Graffenstaden" + }, + "geonames_id": 3012834 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Creation, Breeding, Phenotyping, Distribution and Archiving of model organisms" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "CELPHEDIA" + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00v303068.json b/test-v2-csv-new/new/00v303068.json new file mode 100644 index 000000000..fe4ae83ae --- /dev/null +++ b/test-v2-csv-new/new/00v303068.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [ + { + "all": [ + "Q51782384" + ], + "preferred": "Q51782384", + "type": "wikidata" + } + ], + "id": "https://ror.org/00v303068", + "links": [ + { + "type": "website", + "value": "https://curej.univ-rouen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.44313, + "lng": 1.09932, + "name": "Rouen" + }, + "geonames_id": 2982652 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CUREJ" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Centre universitaire rouennais d’études juridiques" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/00vcjbv87.json b/test-v2-csv-new/new/00vcjbv87.json new file mode 100644 index 000000000..4bd709050 --- /dev/null +++ b/test-v2-csv-new/new/00vcjbv87.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [ + { + "all": [ + "Q51781111" + ], + "preferred": "Q51781111", + "type": "wikidata" + } + ], + "id": "https://ror.org/00vcjbv87", + "links": [ + { + "type": "website", + "value": "https://ireena.univ-nantes.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 47.27506, + "lng": -2.2179, + "name": "Saint-Nazaire" + }, + "geonames_id": 2977921 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IREENA" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Nantes Atlantique Electrical Energy Research Institute" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Institut de Recherche en Energie Electrique de Nantes Atlantique" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0102t1w88.json b/test-v2-csv-new/new/0102t1w88.json new file mode 100644 index 000000000..fd0c46047 --- /dev/null +++ b/test-v2-csv-new/new/0102t1w88.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "100017659" + ], + "preferred": "100017659", + "type": "fundref" + }, + { + "all": [ + "0000 0005 0283 0945" + ], + "preferred": "0000 0005 0283 0945", + "type": "isni" + } + ], + "id": "https://ror.org/0102t1w88", + "links": [ + { + "type": "website", + "value": "https://cemlab.cn" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 32.06167, + "lng": 118.77778, + "name": "Nanjing" + }, + "geonames_id": 1799962 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "State Key Lab of High Performance Civil Engineering Materials" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "高性能土木工程材料国家重点实验室" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "State Key Laboratory of High Performance Civil Engineering Materials" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0120qa523.json b/test-v2-csv-new/new/0120qa523.json new file mode 100644 index 000000000..5a4990999 --- /dev/null +++ b/test-v2-csv-new/new/0120qa523.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1997, + "external_ids": [ + { + "all": [ + "0000 0004 8003 6504" + ], + "preferred": "0000 0004 8003 6504", + "type": "isni" + }, + { + "all": [ + "Q52636930" + ], + "preferred": "Q52636930", + "type": "wikidata" + } + ], + "id": "https://ror.org/0120qa523", + "links": [ + { + "type": "website", + "value": "https://iainkendari.ac.id" + }, + { + "type": "wikipedia", + "value": "https://id.wikipedia.org/wiki/Institut_Agama_Islam_Negeri_Kendari" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -3.9778, + "lng": 122.51507, + "name": "Kendari" + }, + "geonames_id": 1640344 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "IAIN Sultan Qaimuddin" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "IAIN Kendari" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Institut Agama Islam Negeri Kendari" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/013fqf738.json b/test-v2-csv-new/new/013fqf738.json new file mode 100644 index 000000000..22ba3532c --- /dev/null +++ b/test-v2-csv-new/new/013fqf738.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1983, + "external_ids": [ + { + "all": [ + "0000 0004 0578 2443" + ], + "preferred": "0000 0004 0578 2443", + "type": "isni" + } + ], + "id": "https://ror.org/013fqf738", + "links": [ + { + "type": "website", + "value": "https://www.circlehealthgroup.co.uk/hospitals/bath-clinic" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.3751, + "lng": -2.36172, + "name": "Bath" + }, + "geonames_id": 2656173 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "BMI Bath Clinic" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Bath Clinic" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/016ggfz33.json b/test-v2-csv-new/new/016ggfz33.json new file mode 100644 index 000000000..f58abc200 --- /dev/null +++ b/test-v2-csv-new/new/016ggfz33.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/016ggfz33", + "links": [ + { + "type": "website", + "value": "https://histeme.unicaen.fr/laboratoire/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "HisTéMé" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Histoire Territoires et Mémoires" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Histoire, Territoires & Mémoires" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01783a128.json b/test-v2-csv-new/new/01783a128.json new file mode 100644 index 000000000..ef9c7190d --- /dev/null +++ b/test-v2-csv-new/new/01783a128.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01783a128", + "links": [ + { + "type": "website", + "value": "https://www.cbsa-lab.com" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.02414, + "lng": 1.15082, + "name": "Évreux" + }, + "geonames_id": 3019265 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CBSA" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratoire CBSA" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Communication Bactérienne et Stratégie Anti-infectieuses" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/019nppa26.json b/test-v2-csv-new/new/019nppa26.json new file mode 100644 index 000000000..789f66feb --- /dev/null +++ b/test-v2-csv-new/new/019nppa26.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2008, + "external_ids": [], + "id": "https://ror.org/019nppa26", + "links": [ + { + "type": "website", + "value": "https://sphere-inserm.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 47.21725, + "lng": -1.55336, + "name": "Nantes" + }, + "geonames_id": 2990969 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SPHERE" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "methodS in Patient-centered outcomes & HEalth ResEarch" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratoire SPHERE" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "methodS in Patient-centered outcomes and HEalth ResEarch" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/019vcf150.json b/test-v2-csv-new/new/019vcf150.json new file mode 100644 index 000000000..8c38ed3b0 --- /dev/null +++ b/test-v2-csv-new/new/019vcf150.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/019vcf150", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/lower-mississippi-gulf-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 36.16589, + "lng": -86.78444, + "name": "Nashville" + }, + "geonames_id": 4644585 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Lower Mississippi-Gulf Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Lower Mississippi-Gulf Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Lower Mississippi-Gulf Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Lower Mississippi-Gulf Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/019ycqa96.json b/test-v2-csv-new/new/019ycqa96.json new file mode 100644 index 000000000..88c3ad086 --- /dev/null +++ b/test-v2-csv-new/new/019ycqa96.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2002, + "external_ids": [], + "id": "https://ror.org/019ycqa96", + "links": [ + { + "type": "website", + "value": "https://schoolsofmission.com" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PH", + "country_name": "Philippines", + "lat": 14.58691, + "lng": 121.0614, + "name": "Pasig" + }, + "geonames_id": 7290466 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SEATS" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "South East Asian Theological Schools" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "South East Asian Theological Schools, Inc." + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01advh828.json b/test-v2-csv-new/new/01advh828.json new file mode 100644 index 000000000..0181f8e22 --- /dev/null +++ b/test-v2-csv-new/new/01advh828.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q124465960" + ], + "preferred": "Q124465960", + "type": "wikidata" + } + ], + "id": "https://ror.org/01advh828", + "links": [ + { + "type": "website", + "value": "https://www.nsw.gov.au/departments-and-agencies/dcceew" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Department_of_Climate_Change%2C_Energy%2C_the_Environment_and_Water_%28New_South_Wales%29" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -33.86785, + "lng": 151.20732, + "name": "Sydney" + }, + "geonames_id": 2147714 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DCCEEW" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NSW DCCEEW" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "New South Wales Department of Climate Change, Energy, the Environment and Water" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "NSW Department of Climate Change, Energy, the Environment and Water" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01agr2x16.json b/test-v2-csv-new/new/01agr2x16.json new file mode 100644 index 000000000..dbc53fa90 --- /dev/null +++ b/test-v2-csv-new/new/01agr2x16.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01agr2x16", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/john-wesley-powell-center-for-analysis-and-synthesis" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.58526, + "lng": -105.08442, + "name": "Fort Collins" + }, + "geonames_id": 5577147 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS John Wesley Powell Center for Analysis and Synthesis" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey John Wesley Powell Center for Analysis and Synthesis" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey John Wesley Powell Center for Analysis and Synthesis" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "John Wesley Powell Center for Analysis and Synthesis" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01c967m28.json b/test-v2-csv-new/new/01c967m28.json new file mode 100644 index 000000000..b77211ae4 --- /dev/null +++ b/test-v2-csv-new/new/01c967m28.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q50379796" + ], + "preferred": "Q50379796", + "type": "wikidata" + } + ], + "id": "https://ror.org/01c967m28", + "links": [ + { + "type": "website", + "value": "https://lexfeim.univ-lehavre.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.49346, + "lng": 0.10785, + "name": "Le Havre" + }, + "geonames_id": 3003796 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "LexFEIM" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratoire LexFEIM" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratoire d’études en droits fondamentaux, des échanges internationaux et de la mer" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01csye757.json b/test-v2-csv-new/new/01csye757.json new file mode 100644 index 000000000..64c44a868 --- /dev/null +++ b/test-v2-csv-new/new/01csye757.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q51785383" + ], + "preferred": "Q51785383", + "type": "wikidata" + } + ], + "id": "https://ror.org/01csye757", + "links": [ + { + "type": "website", + "value": "https://ensa-normandie.fr/recherche/le-laboratoire/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.44533, + "lng": 1.15144, + "name": "Darnétal" + }, + "geonames_id": 3021717 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ATE" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratoire ATE" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "ATE Normandie" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Architecture, Territoire, Environnement" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01eajmn52.json b/test-v2-csv-new/new/01eajmn52.json new file mode 100644 index 000000000..60165781c --- /dev/null +++ b/test-v2-csv-new/new/01eajmn52.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2018, + "external_ids": [], + "id": "https://ror.org/01eajmn52", + "links": [ + { + "type": "website", + "value": "https://cell2cure.com" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 55.84759, + "lng": 12.42791, + "name": "Birkerød" + }, + "geonames_id": 2624112 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "C2C" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Cell2Cure" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Cell2Cure ApS" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01egr5n68.json b/test-v2-csv-new/new/01egr5n68.json new file mode 100644 index 000000000..c9124e0b4 --- /dev/null +++ b/test-v2-csv-new/new/01egr5n68.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01egr5n68", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/washington-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 47.25288, + "lng": -122.44429, + "name": "Tacoma" + }, + "geonames_id": 5812944 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Washington Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Washington Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Washington Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Washington Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01fngvb19.json b/test-v2-csv-new/new/01fngvb19.json new file mode 100644 index 000000000..6cfa1b114 --- /dev/null +++ b/test-v2-csv-new/new/01fngvb19.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01fngvb19", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/cm-water" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.66533, + "lng": -90.37595, + "name": "Olivette" + }, + "geonames_id": 4401938 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Central Midwest Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Central Midwest Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Central Midwest Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Central Midwest Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01jb5vw89.json b/test-v2-csv-new/new/01jb5vw89.json new file mode 100644 index 000000000..015702844 --- /dev/null +++ b/test-v2-csv-new/new/01jb5vw89.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01jb5vw89", + "links": [ + { + "type": "website", + "value": "http://skle.tju.edu.cn" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.14222, + "lng": 117.17667, + "name": "Tianjin" + }, + "geonames_id": 1792947 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "State Key Lab of Internal Combustion Engine" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "内燃机燃烧学国家重点实验室" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "State Key Laboratory of Internal Combustion Engines" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01kdq7m80.json b/test-v2-csv-new/new/01kdq7m80.json new file mode 100644 index 000000000..b81ba5f06 --- /dev/null +++ b/test-v2-csv-new/new/01kdq7m80.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 2109 5609" + ], + "preferred": "0000 0001 2109 5609", + "type": "isni" + }, + { + "all": [ + "Q51780149" + ], + "preferred": "Q51780149", + "type": "wikidata" + } + ], + "id": "https://ror.org/01kdq7m80", + "links": [ + { + "type": "website", + "value": "https://grhis.univ-rouen.fr/grhis/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.46307, + "lng": 1.09364, + "name": "Mont-Saint-Aignan" + }, + "geonames_id": 2992003 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "GRHIS" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratoire GRHIS" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Groupe de recherche d’histoire" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01kkdtr91.json b/test-v2-csv-new/new/01kkdtr91.json new file mode 100644 index 000000000..db3f5de4d --- /dev/null +++ b/test-v2-csv-new/new/01kkdtr91.json @@ -0,0 +1,78 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 9523 5979" + ], + "preferred": "0000 0004 9523 5979", + "type": "isni" + } + ], + "id": "https://ror.org/01kkdtr91", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/new-england-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.31954, + "lng": -71.64118, + "name": "Northborough" + }, + "geonames_id": 4945840 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS New England Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey New England Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey New England Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "New England Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01mdf3h05.json b/test-v2-csv-new/new/01mdf3h05.json new file mode 100644 index 000000000..ff60b27ea --- /dev/null +++ b/test-v2-csv-new/new/01mdf3h05.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01mdf3h05", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/geology-energy-and-minerals-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.96872, + "lng": -77.3411, + "name": "Reston" + }, + "geonames_id": 4781530 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Geology, Energy and Minerals Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Geology, Energy and Minerals Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Geology, Energy and Minerals Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Geology, Energy and Minerals Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01ndk7g25.json b/test-v2-csv-new/new/01ndk7g25.json new file mode 100644 index 000000000..4434fabc1 --- /dev/null +++ b/test-v2-csv-new/new/01ndk7g25.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01ndk7g25", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/national-minerals-information-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.96872, + "lng": -77.3411, + "name": "Reston" + }, + "geonames_id": 4781530 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NMIC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS NMIC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS National Minerals Information Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey National Minerals Information Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey National Minerals Information Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "National Minerals Information Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01q1f4t53.json b/test-v2-csv-new/new/01q1f4t53.json new file mode 100644 index 000000000..ef7532b0d --- /dev/null +++ b/test-v2-csv-new/new/01q1f4t53.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01q1f4t53", + "links": [ + { + "type": "website", + "value": "http://cestri.chnenergy.com.cn/kxjsyjyww/gjjyfpt/202107/faa343f050bc4c0f914c716b639a4483.shtml" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 32.06167, + "lng": 118.77778, + "name": "Nanjing" + }, + "geonames_id": 1799962 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "State Key Lab of Clean and Efficient Coal-Fired Power Generation and Pollution Control" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "清洁高效燃煤发电与污染控制国家重点实验室" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "State Key Laboratory of Clean and Efficient Coal-Fired Power Generation and Pollution Control" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01qsb1132.json b/test-v2-csv-new/new/01qsb1132.json new file mode 100644 index 000000000..ff26d1c90 --- /dev/null +++ b/test-v2-csv-new/new/01qsb1132.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1991, + "external_ids": [], + "id": "https://ror.org/01qsb1132", + "links": [ + { + "type": "website", + "value": "http://unak.org.tr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "TR", + "country_name": "Türkiye", + "lat": 39.91987, + "lng": 32.85427, + "name": "Ankara" + }, + "geonames_id": 323786 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ÜNAK" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University and Research Librarians Association" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Üniversite ve Araştırma Kütüphanecileri Derneği" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01qxsqd03.json b/test-v2-csv-new/new/01qxsqd03.json new file mode 100644 index 000000000..8cd12d335 --- /dev/null +++ b/test-v2-csv-new/new/01qxsqd03.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 2110 4587" + ], + "preferred": "0000 0001 2110 4587", + "type": "isni" + }, + { + "all": [ + "Q2945195" + ], + "preferred": "Q2945195", + "type": "wikidata" + } + ], + "id": "https://ror.org/01qxsqd03", + "links": [ + { + "type": "website", + "value": "https://ceredi.hypotheses.org" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_d%27%C3%A9tudes_et_de_recherche_%C3%A9diter/interpr%C3%A9ter" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.46307, + "lng": 1.09364, + "name": "Mont-Saint-Aignan" + }, + "geonames_id": 2992003 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Centre d’Etude et de recherche Editer Interpréter" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "CÉRÉdI" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Centre d’Etude et de recherche Editer/Interpréter" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01qy8zj88.json b/test-v2-csv-new/new/01qy8zj88.json new file mode 100644 index 000000000..1171a7c31 --- /dev/null +++ b/test-v2-csv-new/new/01qy8zj88.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01qy8zj88", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/geologic-hazards-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.75554, + "lng": -105.2211, + "name": "Golden" + }, + "geonames_id": 5423294 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Geologic Hazards Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Geologic Hazards Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Geologic Hazards Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Geologic Hazards Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01rqjam82.json b/test-v2-csv-new/new/01rqjam82.json new file mode 100644 index 000000000..9cf28ab33 --- /dev/null +++ b/test-v2-csv-new/new/01rqjam82.json @@ -0,0 +1,67 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1991, + "external_ids": [ + { + "all": [ + "0000 0004 0367 2048" + ], + "preferred": "0000 0004 0367 2048", + "type": "isni" + }, + { + "all": [ + "Q3547533" + ], + "preferred": "Q3547533", + "type": "wikidata" + } + ], + "id": "https://ror.org/01rqjam82", + "links": [ + { + "type": "website", + "value": "https://www.apc.edu.ph" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Asia_Pacific_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PH", + "country_name": "Philippines", + "lat": 14.55027, + "lng": 121.03269, + "name": "Makati City" + }, + "geonames_id": 1703417 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Asia Pacific College" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01t9edq29.json b/test-v2-csv-new/new/01t9edq29.json new file mode 100644 index 000000000..fe161cb9c --- /dev/null +++ b/test-v2-csv-new/new/01t9edq29.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1992, + "external_ids": [ + { + "all": [ + "0000 0001 1931 7233" + ], + "preferred": "0000 0001 1931 7233", + "type": "isni" + }, + { + "all": [ + "Q51782305" + ], + "preferred": "Q51782305", + "type": "wikidata" + } + ], + "id": "https://ror.org/01t9edq29", + "links": [ + { + "type": "website", + "value": "https://cdmo.univ-nantes.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 47.21725, + "lng": -1.55336, + "name": "Nantes" + }, + "geonames_id": 2990969 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CDMO" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Maritime And Oceanic Law Centre" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Centre de Droit Maritime et Océanique" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01tatq643.json b/test-v2-csv-new/new/01tatq643.json new file mode 100644 index 000000000..ce64fa107 --- /dev/null +++ b/test-v2-csv-new/new/01tatq643.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2007, + "external_ids": [ + { + "all": [ + "0000 0004 0453 3576" + ], + "preferred": "0000 0004 0453 3576", + "type": "isni" + }, + { + "all": [ + "Q65165405" + ], + "preferred": "Q65165405", + "type": "wikidata" + } + ], + "id": "https://ror.org/01tatq643", + "links": [ + { + "type": "website", + "value": "https://uveg.edu.mx" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Universidad_Virtual_del_Estado_de_Guanajuato" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "MX", + "country_name": "Mexico", + "lat": 20.94704, + "lng": -101.90939, + "name": "Purísima del Rincón" + }, + "geonames_id": 8581919 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UVEG" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Virtual University of Guanajuato" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Universidad Virtual del Estado de Guanajuato" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01wpc8d74.json b/test-v2-csv-new/new/01wpc8d74.json new file mode 100644 index 000000000..3cbb0c9d5 --- /dev/null +++ b/test-v2-csv-new/new/01wpc8d74.json @@ -0,0 +1,76 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01wpc8d74", + "links": [ + { + "type": "website", + "value": "https://iode.org" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 51.21551, + "lng": 2.927, + "name": "Ostend" + }, + "geonames_id": 2789786 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IODE" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNESCO IODE" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNESCO IOC IODE" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "International Oceanographic Data and Information Exchange" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "International Oceanographic Data and Information Exchange (IODE)" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01xgy9p88.json b/test-v2-csv-new/new/01xgy9p88.json new file mode 100644 index 000000000..64bc48666 --- /dev/null +++ b/test-v2-csv-new/new/01xgy9p88.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01xgy9p88", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/new-jersey-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.29733, + "lng": -74.7296, + "name": "Lawrenceville" + }, + "geonames_id": 5100356 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS New Jersey Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey New Jersey Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey New Jersey Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "New Jersey Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01xjk5g52.json b/test-v2-csv-new/new/01xjk5g52.json new file mode 100644 index 000000000..0dbb94fc9 --- /dev/null +++ b/test-v2-csv-new/new/01xjk5g52.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01xjk5g52", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/upper-midwest-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 45.10497, + "lng": -93.20856, + "name": "Mounds View" + }, + "geonames_id": 5038373 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Upper Midwest Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Upper Midwest Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Upper Midwest Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Upper Midwest Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01xqkh964.json b/test-v2-csv-new/new/01xqkh964.json new file mode 100644 index 000000000..7a00dca4e --- /dev/null +++ b/test-v2-csv-new/new/01xqkh964.json @@ -0,0 +1,83 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01xqkh964", + "links": [ + { + "type": "website", + "value": "http://www.sinomatech.com" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + }, + "geonames_id": 1816670 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Sinoma Science & Technology Co., Ltd." + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Sinoma Science and Technology Co., Ltd." + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Sinoma, Sinoma Science & Technology Co." + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Sinoma Science & Technology" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "中材科技" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Sinoma Science & Technology Co., Ltd. (China)" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01xr3te85.json b/test-v2-csv-new/new/01xr3te85.json new file mode 100644 index 000000000..6efbd90f2 --- /dev/null +++ b/test-v2-csv-new/new/01xr3te85.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1999, + "external_ids": [], + "id": "https://ror.org/01xr3te85", + "links": [ + { + "type": "website", + "value": "http://www.sinder.cn" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 36.06488, + "lng": 120.38042, + "name": "Qingdao" + }, + "geonames_id": 1797929 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Shandong Sinder Technology Co." + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Shandong Sinder Technology" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "山东信得科技股份有限公司" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Shandong Sinder Technology Co., Ltd." + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01yyzfv73.json b/test-v2-csv-new/new/01yyzfv73.json new file mode 100644 index 000000000..7cfbe1aa4 --- /dev/null +++ b/test-v2-csv-new/new/01yyzfv73.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01yyzfv73", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/oki-water" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.76838, + "lng": -86.15804, + "name": "Indianapolis" + }, + "geonames_id": 4259418 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Ohio-Kentucky-Indiana Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Ohio-Kentucky-Indiana Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Ohio-Kentucky-Indiana Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Ohio-Kentucky-Indiana Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01z8htt82.json b/test-v2-csv-new/new/01z8htt82.json new file mode 100644 index 000000000..686090468 --- /dev/null +++ b/test-v2-csv-new/new/01z8htt82.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 7878 8280" + ], + "preferred": "0000 0004 7878 8280", + "type": "isni" + } + ], + "id": "https://ror.org/01z8htt82", + "links": [ + { + "type": "website", + "value": "https://www.skler.cn" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 36.33333, + "lng": 118.25, + "name": "Shandong" + }, + "geonames_id": 1796328 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "State Key Lab of Internal Combustion Engine Reliability" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "内燃机可靠性国家重点实验室" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "State Key Laboratory of Internal Combustion Engine Reliability" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/01zc4pn87.json b/test-v2-csv-new/new/01zc4pn87.json new file mode 100644 index 000000000..485502afe --- /dev/null +++ b/test-v2-csv-new/new/01zc4pn87.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/01zc4pn87", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/programs/science-analytics-and-synthesis-sas" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.70471, + "lng": -105.08137, + "name": "Lakewood" + }, + "geonames_id": 5427946 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SAS" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS SAS" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Science Analytics and Synthesis" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Science Analytics and Synthesis" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Science Analytics and Synthesis" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Science Analytics and Synthesis" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/020vet878.json b/test-v2-csv-new/new/020vet878.json new file mode 100644 index 000000000..8e235279e --- /dev/null +++ b/test-v2-csv-new/new/020vet878.json @@ -0,0 +1,78 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 0220 9076" + ], + "preferred": "0000 0001 0220 9076", + "type": "isni" + } + ], + "id": "https://ror.org/020vet878", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/northern-prairie-wildlife-research-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 46.91054, + "lng": -98.70844, + "name": "Jamestown" + }, + "geonames_id": 5059836 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Northern Prairie Wildlife Research Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Northern Prairie Wildlife Research Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Northern Prairie Wildlife Research Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Northern Prairie Wildlife Research Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02299ew02.json b/test-v2-csv-new/new/02299ew02.json new file mode 100644 index 000000000..eaa467ff0 --- /dev/null +++ b/test-v2-csv-new/new/02299ew02.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2022, + "external_ids": [ + { + "all": [ + "0000 0005 1284 1250" + ], + "preferred": "0000 0005 1284 1250", + "type": "isni" + } + ], + "id": "https://ror.org/02299ew02", + "links": [ + { + "type": "website", + "value": "https://incit.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 47.21725, + "lng": -1.55336, + "name": "Nantes" + }, + "geonames_id": 2990969 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "INCIT" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Immunology and New Concepts in Immunotherapy" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Immunologie et Nouveaux Concepts en Immunothérapie" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/023hbsv09.json b/test-v2-csv-new/new/023hbsv09.json new file mode 100644 index 000000000..b46023893 --- /dev/null +++ b/test-v2-csv-new/new/023hbsv09.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2008, + "external_ids": [ + { + "all": [ + "0000 0004 7471 9181" + ], + "preferred": "0000 0004 7471 9181", + "type": "isni" + }, + { + "all": [ + "Q51784108" + ], + "preferred": "Q51784108", + "type": "wikidata" + } + ], + "id": "https://ror.org/023hbsv09", + "links": [ + { + "type": "website", + "value": "https://lusac.unicaen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.63984, + "lng": -1.61636, + "name": "Cherbourg-Octeville" + }, + "geonames_id": 3025466 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LUSAC" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratoire Universitaire des Sciences Appliquées de Cherbourg" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/023v75n31.json b/test-v2-csv-new/new/023v75n31.json new file mode 100644 index 000000000..392c3c634 --- /dev/null +++ b/test-v2-csv-new/new/023v75n31.json @@ -0,0 +1,98 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/023v75n31", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/gggsc" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.70471, + "lng": -105.08137, + "name": "Lakewood" + }, + "geonames_id": 5427946 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "GGGSC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS GGGSC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "G3SC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS G3SC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Geology, Geophysics, and Geochemistry Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Geology, Geophysics, and Geochemistry Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Geology, Geophysics, and Geochemistry Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Geology, Geophysics, and Geochemistry Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0242jj158.json b/test-v2-csv-new/new/0242jj158.json new file mode 100644 index 000000000..79449f2c5 --- /dev/null +++ b/test-v2-csv-new/new/0242jj158.json @@ -0,0 +1,104 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1983, + "external_ids": [], + "id": "https://ror.org/0242jj158", + "links": [ + { + "type": "website", + "value": "https://www.ihobe.eus" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + }, + "geonames_id": 3128026 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IHOBE" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Public Society of Environmental Management of the Basque Government" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Public Society of Environmental Management of the Basque Government IHOBE" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "IHOBE, Sociedad Pública de Gestión Ambiental" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Sociedad Pública De Gestión Ambiental IHOBE" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Ingurumen Jarduketarako Sozietate Publikoa, IHOBE" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "IHOBE, Ingurumen Jarduketarako Sozietate Publikoa" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Sociedad Pública De Gestión Ambiental IHOBE, S.A." + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Ingurumen Jarduketarako Sozietate Publikoa, IHOBE, S.A." + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/024p6st07.json b/test-v2-csv-new/new/024p6st07.json new file mode 100644 index 000000000..2e0ee8ba7 --- /dev/null +++ b/test-v2-csv-new/new/024p6st07.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1770, + "external_ids": [ + { + "all": [ + "0000 0001 2181 7384" + ], + "preferred": "0000 0001 2181 7384", + "type": "isni" + }, + { + "all": [ + "Q2901379" + ], + "preferred": "Q2901379", + "type": "wikidata" + } + ], + "id": "https://ror.org/024p6st07", + "links": [ + { + "type": "website", + "value": "http://www.bis-sorbonne.fr/biu/" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Biblioth%C3%A8que_de_la_Sorbonne" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BIS" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bibliothèque interuniversitaire de la Sorbonne Paris" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Sorbonne Interuniversity Library" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Bibliothèque interuniversitaire de la Sorbonne" + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0256v1045.json b/test-v2-csv-new/new/0256v1045.json new file mode 100644 index 000000000..7b24ec5af --- /dev/null +++ b/test-v2-csv-new/new/0256v1045.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2022, + "external_ids": [ + { + "all": [ + "5.011E+11" + ], + "preferred": "5.011E+11", + "type": "fundref" + }, + { + "all": [ + "Q3858490" + ], + "preferred": "Q3858490", + "type": "wikidata" + } + ], + "id": "https://ror.org/0256v1045", + "links": [ + { + "type": "website", + "value": "https://www.miur.gov.it" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Public_Education_%28Italy%29" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 41.89193, + "lng": 12.51133, + "name": "Rome" + }, + "geonames_id": 3169070 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MIM" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MIUR" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Ministro dell'Istruzione e del Merito" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Ministry of Education and Merit" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Ministero dell'Istruzione e del Merito" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/025r2xm88.json b/test-v2-csv-new/new/025r2xm88.json new file mode 100644 index 000000000..10876ae0a --- /dev/null +++ b/test-v2-csv-new/new/025r2xm88.json @@ -0,0 +1,92 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 7863 3238" + ], + "preferred": "0000 0004 7863 3238", + "type": "isni" + } + ], + "id": "https://ror.org/025r2xm88", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/programs/climate-adaptation-science-centers" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.96872, + "lng": -77.3411, + "name": "Reston" + }, + "geonames_id": 4781530 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CASC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS CASC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Climate Adaptation Science Centers" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Climate Adaptation Science Centers" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Climate Adaptation Science Centers" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Climate Adaptation Science Centers" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/027m9ss41.json b/test-v2-csv-new/new/027m9ss41.json new file mode 100644 index 000000000..b70296f82 --- /dev/null +++ b/test-v2-csv-new/new/027m9ss41.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q51783581" + ], + "preferred": "Q51783581", + "type": "wikidata" + } + ], + "id": "https://ror.org/027m9ss41", + "links": [ + { + "type": "website", + "value": "http://lmi.insa-rouen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.37794, + "lng": 1.10467, + "name": "Saint-Étienne-du-Rouvray" + }, + "geonames_id": 2980236 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LMI" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratoire de Mathématiques de l'INSA de Rouen" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/027mgcd94.json b/test-v2-csv-new/new/027mgcd94.json new file mode 100644 index 000000000..5871b64bf --- /dev/null +++ b/test-v2-csv-new/new/027mgcd94.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/027mgcd94", + "links": [ + { + "type": "website", + "value": "https://aau.edu.ye" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "YE", + "country_name": "Yemen", + "lat": 15.35472, + "lng": 44.20667, + "name": "Sanaa" + }, + "geonames_id": 71137 + } + ], + "names": [ + { + "lang": "ar", + "types": [ + "label" + ], + "value": "جامعة الجيل الجديد" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Aljeel Aljadeed University" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/027v1ht55.json b/test-v2-csv-new/new/027v1ht55.json new file mode 100644 index 000000000..507e52bd0 --- /dev/null +++ b/test-v2-csv-new/new/027v1ht55.json @@ -0,0 +1,76 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/027v1ht55", + "links": [ + { + "type": "website", + "value": "http://lmn.insa-rouen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.37794, + "lng": 1.10467, + "name": "Saint-Étienne-du-Rouvray" + }, + "geonames_id": 2980236 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LMN" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratory of Mechanics of Normandy" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Mechanics Laboratory of Normandy" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Mechanics Laboratory of Rouen" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratoire de Mécanique de Normandie" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/028w63703.json b/test-v2-csv-new/new/028w63703.json new file mode 100644 index 000000000..c6e5ba369 --- /dev/null +++ b/test-v2-csv-new/new/028w63703.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1953, + "external_ids": [ + { + "all": [ + "0000 0004 9292 5616" + ], + "preferred": "0000 0004 9292 5616", + "type": "isni" + } + ], + "id": "https://ror.org/028w63703", + "links": [ + { + "type": "website", + "value": "https://www.rrlalancollege.edu.in" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 23.25397, + "lng": 69.66928, + "name": "Bhuj" + }, + "geonames_id": 1275812 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "RRLC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Shri Ramji Ravji Lalan College" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Shri R. R. Lalan College" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Ramji Ravji Lalan College" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "R. R. Lalan College" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02akr9472.json b/test-v2-csv-new/new/02akr9472.json new file mode 100644 index 000000000..ce7503e5a --- /dev/null +++ b/test-v2-csv-new/new/02akr9472.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02akr9472", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/sawsc" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 33.94121, + "lng": -84.21353, + "name": "Norcross" + }, + "geonames_id": 4212888 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS South Atlantic Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey South Atlantic Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey South Atlantic Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "South Atlantic Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02akx7x58.json b/test-v2-csv-new/new/02akx7x58.json new file mode 100644 index 000000000..1285b4c29 --- /dev/null +++ b/test-v2-csv-new/new/02akx7x58.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 2178 2601" + ], + "preferred": "0000 0001 2178 2601", + "type": "isni" + }, + { + "all": [ + "Q51780408" + ], + "preferred": "Q51780408", + "type": "wikidata" + } + ], + "id": "https://ror.org/02akx7x58", + "links": [ + { + "type": "website", + "value": "https://laslar.unicaen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LASLAR" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratoire LASLAR" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Lettres, arts du spectacle, langues romanes" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02b9ex778.json b/test-v2-csv-new/new/02b9ex778.json new file mode 100644 index 000000000..303ce4f3f --- /dev/null +++ b/test-v2-csv-new/new/02b9ex778.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 2170 7783" + ], + "preferred": "0000 0001 2170 7783", + "type": "isni" + }, + { + "all": [ + "Q51782849" + ], + "preferred": "Q51782849", + "type": "wikidata" + } + ], + "id": "https://ror.org/02b9ex778", + "links": [ + { + "type": "website", + "value": "https://eribia.unicaen.fr/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ERIBIA" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "ERIBIA Research Group" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Equipe de recherche interdisciplinaire sur la Grande Bretagne, l’Irlande et l’Amérique du Nord" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02bkmej83.json b/test-v2-csv-new/new/02bkmej83.json new file mode 100644 index 000000000..418ac0321 --- /dev/null +++ b/test-v2-csv-new/new/02bkmej83.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1969, + "external_ids": [ + { + "all": [ + "Q6863631" + ], + "preferred": "Q6863631", + "type": "wikidata" + } + ], + "id": "https://ror.org/02bkmej83", + "links": [ + { + "type": "website", + "value": "https://msutawi-tawi.edu.ph" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Mindanao_State_University%E2%80%93Tawi-Tawi_College_of_Technology_and_Oceanography" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PH", + "country_name": "Philippines", + "lat": 5.02917, + "lng": 119.77306, + "name": "Bongao" + }, + "geonames_id": 1724088 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MSU TCTO" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Mindanao State University - Tawi-Tawi Campus" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "MSU-Tawi-Tawi College" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "MSU-Tawi-Tawi" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Mindanao State University - Tawi-Tawi College of Technology and Oceanography" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02bq42p54.json b/test-v2-csv-new/new/02bq42p54.json new file mode 100644 index 000000000..2bd402d80 --- /dev/null +++ b/test-v2-csv-new/new/02bq42p54.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02bq42p54", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/nevada-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.1638, + "lng": -119.7674, + "name": "Carson City" + }, + "geonames_id": 5501344 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Nevada Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Nevada Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Nevada Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Nevada Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02bxk3c16.json b/test-v2-csv-new/new/02bxk3c16.json new file mode 100644 index 000000000..832e00fe0 --- /dev/null +++ b/test-v2-csv-new/new/02bxk3c16.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02bxk3c16", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/cfwsc" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 26.06287, + "lng": -80.2331, + "name": "Davie" + }, + "geonames_id": 4152820 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Caribbean-Florida Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Caribbean-Florida Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Caribbean-Florida Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Caribbean-Florida Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02c041v39.json b/test-v2-csv-new/new/02c041v39.json new file mode 100644 index 000000000..b3443dcb1 --- /dev/null +++ b/test-v2-csv-new/new/02c041v39.json @@ -0,0 +1,56 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02c041v39", + "links": [ + { + "type": "website", + "value": "https://sthjt.fujian.gov.cn" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 26.06139, + "lng": 119.30611, + "name": "Fuzhou" + }, + "geonames_id": 1810821 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Fujian Provincial Department of Ecology and Environment" + }, + { + "lang": null, + "types": [ + "alias", + "label" + ], + "value": "福建省生态环境厅" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02c1ffz59.json b/test-v2-csv-new/new/02c1ffz59.json new file mode 100644 index 000000000..336412ee8 --- /dev/null +++ b/test-v2-csv-new/new/02c1ffz59.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02c1ffz59", + "links": [ + { + "type": "website", + "value": "https://scme.edu.ps" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PS", + "country_name": "Palestine", + "lat": 31.52935, + "lng": 35.0938, + "name": "Hebron" + }, + "geonames_id": 285066 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SCME" + }, + { + "lang": "ar", + "types": [ + "label" + ], + "value": "الكلية الذكية للتعليم الحديث" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Smart College for Modern Education" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02c2yv116.json b/test-v2-csv-new/new/02c2yv116.json new file mode 100644 index 000000000..8803ad0e4 --- /dev/null +++ b/test-v2-csv-new/new/02c2yv116.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02c2yv116", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/programs/cooperative-research-units" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.96872, + "lng": -77.3411, + "name": "Reston" + }, + "geonames_id": 4781530 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CRU" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS CRU" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Cooperative Research Units" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Cooperative Research Units" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Cooperative Research Units" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Cooperative Research Units" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02c71re92.json b/test-v2-csv-new/new/02c71re92.json new file mode 100644 index 000000000..cbc324534 --- /dev/null +++ b/test-v2-csv-new/new/02c71re92.json @@ -0,0 +1,102 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2017, + "external_ids": [ + { + "all": [ + "0000 0004 7642 4328" + ], + "preferred": "0000 0004 7642 4328", + "type": "isni" + }, + { + "all": [ + "Q40378878" + ], + "preferred": "Q40378878", + "type": "wikidata" + } + ], + "id": "https://ror.org/02c71re92", + "links": [ + { + "type": "website", + "value": "https://uowa.edu.iq" + }, + { + "type": "wikipedia", + "value": "https://ar.wikipedia.org/wiki/%D8%AC%D8%A7%D9%85%D8%B9%D8%A9_%D9%88%D8%A7%D8%B1%D8%AB_%D8%A7%D9%84%D8%A3%D9%86%D8%A8%D9%8A%D8%A7%D8%A1" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IQ", + "country_name": "Iraq", + "lat": 32.61603, + "lng": 44.02488, + "name": "Karbala" + }, + "geonames_id": 94824 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UoWA" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Warith Al-anbiyaa University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University Of Warith Alanbiyaa" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University Of Warith Al Anbiyaa" + }, + { + "lang": "ar", + "types": [ + "label" + ], + "value": "جامعة وارث الأنبياء" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "University of Warith Al-Anbiyaa" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02cdhww17.json b/test-v2-csv-new/new/02cdhww17.json new file mode 100644 index 000000000..3bdb73080 --- /dev/null +++ b/test-v2-csv-new/new/02cdhww17.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02cdhww17", + "links": [ + { + "type": "website", + "value": "https://www.unicaen.fr/laboratoire/ur-7480-vertige-extreme-vertex/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "VERTEX" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Vertige Extrême" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02cjc0a56.json b/test-v2-csv-new/new/02cjc0a56.json new file mode 100644 index 000000000..356b39553 --- /dev/null +++ b/test-v2-csv-new/new/02cjc0a56.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02cjc0a56", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/md-de-dc-water" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + }, + "geonames_id": 4347778 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Maryland-Delaware-D.C. Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Maryland-Delaware-D.C. Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Maryland-Delaware-D.C. Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Maryland-Delaware-D.C. Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02dtx1366.json b/test-v2-csv-new/new/02dtx1366.json new file mode 100644 index 000000000..1bac6e084 --- /dev/null +++ b/test-v2-csv-new/new/02dtx1366.json @@ -0,0 +1,71 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1978, + "external_ids": [], + "id": "https://ror.org/02dtx1366", + "links": [], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 26.06139, + "lng": 119.30611, + "name": "Fuzhou" + }, + "geonames_id": 1810821 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "FAES" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "福建省排污权储备和技术中心" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Fujian Provincial Emission Control Reserve and Technology Center" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "福建省环境科学研究院" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Fujian Academy of Environmental Sciences" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02e4egq81.json b/test-v2-csv-new/new/02e4egq81.json new file mode 100644 index 000000000..03c88834c --- /dev/null +++ b/test-v2-csv-new/new/02e4egq81.json @@ -0,0 +1,78 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q108853271" + ], + "preferred": "Q108853271", + "type": "wikidata" + } + ], + "id": "https://ror.org/02e4egq81", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/programs/national-cooperative-geologic-mapping-program" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.96872, + "lng": -77.3411, + "name": "Reston" + }, + "geonames_id": 4781530 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS National Cooperative Geologic Mapping Program" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey National Cooperative Geologic Mapping Program" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey National Cooperative Geologic Mapping Program" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "National Cooperative Geologic Mapping Program" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02es7jp26.json b/test-v2-csv-new/new/02es7jp26.json new file mode 100644 index 000000000..297513266 --- /dev/null +++ b/test-v2-csv-new/new/02es7jp26.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2016, + "external_ids": [], + "id": "https://ror.org/02es7jp26", + "links": [ + { + "type": "website", + "value": "https://www.espacioecp.com" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CL", + "country_name": "Chile", + "lat": -40.33494, + "lng": -72.95564, + "name": "Río Bueno" + }, + "geonames_id": 3873145 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Espacio ECP" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Espacio ECP - Núcleo de Estudios y Formación en Terapia Centrada en la Persona" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02fbvzf23.json b/test-v2-csv-new/new/02fbvzf23.json new file mode 100644 index 000000000..06ca3135c --- /dev/null +++ b/test-v2-csv-new/new/02fbvzf23.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1979, + "external_ids": [ + { + "all": [ + "0000 0001 0708 0953" + ], + "preferred": "0000 0001 0708 0953", + "type": "isni" + }, + { + "all": [ + "Q18354913" + ], + "preferred": "Q18354913", + "type": "wikidata" + } + ], + "id": "https://ror.org/02fbvzf23", + "links": [ + { + "type": "website", + "value": "https://federalpolyilaro.edu.ng" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "NG", + "country_name": "Nigeria", + "lat": 6.88901, + "lng": 3.01416, + "name": "Ilaro" + }, + "geonames_id": 2337759 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "FPI" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Federal Polytechnic Ilaro" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "The Federal Polytechnic Ilaro" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02gjqkp28.json b/test-v2-csv-new/new/02gjqkp28.json new file mode 100644 index 000000000..3b9f1bee9 --- /dev/null +++ b/test-v2-csv-new/new/02gjqkp28.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02gjqkp28", + "links": [ + { + "type": "website", + "value": "https://medecine-pharmacie.univ-rouen.fr/cbg-cancer-and-brain-genomics-umr-1245-679263.kjsp" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.44313, + "lng": 1.09932, + "name": "Rouen" + }, + "geonames_id": 2982652 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CBG" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Cancer and Brain Genomics" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Génomique du cancer et du cerveau" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02gmnwp81.json b/test-v2-csv-new/new/02gmnwp81.json new file mode 100644 index 000000000..0f5f94718 --- /dev/null +++ b/test-v2-csv-new/new/02gmnwp81.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2020, + "external_ids": [], + "id": "https://ror.org/02gmnwp81", + "links": [ + { + "type": "website", + "value": "https://datahub.aida.scilifelab.se" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "SE", + "country_name": "Sweden", + "lat": 58.41086, + "lng": 15.62157, + "name": "Linköping" + }, + "geonames_id": 2694762 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "AIDA DH" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "AIDADataHub" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Analytic Imaging Diagnostics Arena Data Hub" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "AIDA Data Hub" + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02hapmk41.json b/test-v2-csv-new/new/02hapmk41.json new file mode 100644 index 000000000..3bdbb1b76 --- /dev/null +++ b/test-v2-csv-new/new/02hapmk41.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02hapmk41", + "links": [ + { + "type": "website", + "value": "https://dylis.univ-rouen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.46307, + "lng": 1.09364, + "name": "Mont-Saint-Aignan" + }, + "geonames_id": 2992003 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DYLIS" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Dynamique du langage in situ - DYLIS" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Dynamique du langage in situ" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02ksmpm71.json b/test-v2-csv-new/new/02ksmpm71.json new file mode 100644 index 000000000..c45661dcc --- /dev/null +++ b/test-v2-csv-new/new/02ksmpm71.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02ksmpm71", + "links": [ + { + "type": "website", + "value": "https://www.lcoe-hv.com" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + }, + "geonames_id": 3117735 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LCOE" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratorio Central Oficial de Electrotecnica" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02m3c9402.json b/test-v2-csv-new/new/02m3c9402.json new file mode 100644 index 000000000..7da73f40f --- /dev/null +++ b/test-v2-csv-new/new/02m3c9402.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 2202 2516" + ], + "preferred": "0000 0001 2202 2516", + "type": "isni" + }, + { + "all": [ + "Q51781297" + ], + "preferred": "Q51781297", + "type": "wikidata" + } + ], + "id": "https://ror.org/02m3c9402", + "links": [ + { + "type": "website", + "value": "https://eriac.univ-rouen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.46307, + "lng": 1.09364, + "name": "Mont-Saint-Aignan" + }, + "geonames_id": 2992003 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ERIAC" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Equipe de recherche interdisciplinaire sur les aires culturelles" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02maexx98.json b/test-v2-csv-new/new/02maexx98.json new file mode 100644 index 000000000..cf1d9c067 --- /dev/null +++ b/test-v2-csv-new/new/02maexx98.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02maexx98", + "links": [ + { + "type": "website", + "value": "https://bioconnect.unicaen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "BioConnect" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Biologie du cartilage, biotechnologie et télémédecine" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02n429603.json b/test-v2-csv-new/new/02n429603.json new file mode 100644 index 000000000..31c044a01 --- /dev/null +++ b/test-v2-csv-new/new/02n429603.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02n429603", + "links": [ + { + "type": "website", + "value": "https://ea4650.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "PSIR" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Physiopathologie et Stratégies d'Imagerie du Remodelage cardiovasculaire" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02nadh705.json b/test-v2-csv-new/new/02nadh705.json new file mode 100644 index 000000000..4f5cce07e --- /dev/null +++ b/test-v2-csv-new/new/02nadh705.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02nadh705", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/western-geographic-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.41352, + "lng": -122.05404, + "name": "Moffett Federal Airfield" + }, + "geonames_id": 8096494 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Western Geographic Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Western Geographic Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Western Geographic Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Western Geographic Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02nnjn687.json b/test-v2-csv-new/new/02nnjn687.json new file mode 100644 index 000000000..790b2c7a5 --- /dev/null +++ b/test-v2-csv-new/new/02nnjn687.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2009, + "external_ids": [ + { + "all": [ + "0000 0004 0408 5013" + ], + "preferred": "0000 0004 0408 5013", + "type": "isni" + }, + { + "all": [ + "Q109919528" + ], + "preferred": "Q109919528", + "type": "wikidata" + } + ], + "id": "https://ror.org/02nnjn687", + "links": [ + { + "type": "website", + "value": "https://stkip-pb.ac.id" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -0.3959, + "lng": 100.39905, + "name": "Kotabaru" + }, + "geonames_id": 1639540 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Sekolah Tinggi Keguruan dan Ilmu Pendidikan Paris Barantai" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "STKIP Paris Barantai" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02pag7h43.json b/test-v2-csv-new/new/02pag7h43.json new file mode 100644 index 000000000..8c8cb90ba --- /dev/null +++ b/test-v2-csv-new/new/02pag7h43.json @@ -0,0 +1,67 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q51781879" + ], + "preferred": "Q51781879", + "type": "wikidata" + } + ], + "id": "https://ror.org/02pag7h43", + "links": [ + { + "type": "website", + "value": "https://cerrev.unicaen.fr" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_de_recherche_risques_et_vuln%C3%A9rabilit%C3%A9s" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CERREV" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Centre de Recherche Risques et Vulnérabilités" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02pedtj82.json b/test-v2-csv-new/new/02pedtj82.json new file mode 100644 index 000000000..75c487ca3 --- /dev/null +++ b/test-v2-csv-new/new/02pedtj82.json @@ -0,0 +1,92 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0522 6332" + ], + "preferred": "0000 0004 0522 6332", + "type": "isni" + } + ], + "id": "https://ror.org/02pedtj82", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/southwest-biological-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 35.19807, + "lng": -111.65127, + "name": "Flagstaff" + }, + "geonames_id": 5294810 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SBSC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS SBSC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Southwest Biological Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Southwest Biological Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Southwest Biological Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Southwest Biological Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02q5fjp10.json b/test-v2-csv-new/new/02q5fjp10.json new file mode 100644 index 000000000..dfdfa1801 --- /dev/null +++ b/test-v2-csv-new/new/02q5fjp10.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q51781324" + ], + "preferred": "Q51781324", + "type": "wikidata" + } + ], + "id": "https://ror.org/02q5fjp10", + "links": [ + { + "type": "website", + "value": "https://edehn.univ-lehavre.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.49346, + "lng": 0.10785, + "name": "Le Havre" + }, + "geonames_id": 3003796 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "EDEHN" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Equipe d’Economie Le Havre Normandie" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02rm2as78.json b/test-v2-csv-new/new/02rm2as78.json new file mode 100644 index 000000000..4ef484504 --- /dev/null +++ b/test-v2-csv-new/new/02rm2as78.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2008, + "external_ids": [], + "id": "https://ror.org/02rm2as78", + "links": [ + { + "type": "website", + "value": "https://mip.univ-nantes.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 47.21725, + "lng": -1.55336, + "name": "Nantes" + }, + "geonames_id": 2990969 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MIP" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Movement, Interactions, Performance" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Movement, Interactions, Performance Laboratory" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratoire Motricité, Interactions, Performance" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02s9cpe25.json b/test-v2-csv-new/new/02s9cpe25.json new file mode 100644 index 000000000..9330b1eda --- /dev/null +++ b/test-v2-csv-new/new/02s9cpe25.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2004, + "external_ids": [ + { + "all": [ + "Q55372530" + ], + "preferred": "Q55372530", + "type": "wikidata" + } + ], + "id": "https://ror.org/02s9cpe25", + "links": [ + { + "type": "website", + "value": "https://museotazzetti.it" + }, + { + "type": "wikipedia", + "value": "https://it.wikipedia.org/wiki/Museo_Civico_Alpino_%22Arnaldo_Tazzetti%22" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.23274, + "lng": 7.21993, + "name": "Usseglio" + }, + "geonames_id": 3165016 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MCAT" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Museo Tazzetti" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Museo Civico Alpino \"Arnaldo Tazzetti\" di Usseglio" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Museo Civico Alpino \"Arnaldo Tazzetti\"" + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02sydz175.json b/test-v2-csv-new/new/02sydz175.json new file mode 100644 index 000000000..18328d457 --- /dev/null +++ b/test-v2-csv-new/new/02sydz175.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q109912911" + ], + "preferred": "Q109912911", + "type": "wikidata" + } + ], + "id": "https://ror.org/02sydz175", + "links": [ + { + "type": "website", + "value": "https://portal.iaincurup.ac.id" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -3.4703, + "lng": 102.5207, + "name": "Curup" + }, + "geonames_id": 1645875 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "IAIN Curup" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Curup State Islamic Religious Institute" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Institut Agama Islam Negeri Curup" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02t89y974.json b/test-v2-csv-new/new/02t89y974.json new file mode 100644 index 000000000..662c35296 --- /dev/null +++ b/test-v2-csv-new/new/02t89y974.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02t89y974", + "links": [ + { + "type": "website", + "value": "https://firat.com.ng" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "RW", + "country_name": "Rwanda", + "lat": -1.94995, + "lng": 30.05885, + "name": "Kigali" + }, + "geonames_id": 202061 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "FIRAT" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Foresight Institute of Research and Translation (FIRAT)" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Foresight Institute of Research and Translation" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02td0y180.json b/test-v2-csv-new/new/02td0y180.json new file mode 100644 index 000000000..64c6d2455 --- /dev/null +++ b/test-v2-csv-new/new/02td0y180.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q105750018" + ], + "preferred": "Q105750018", + "type": "wikidata" + } + ], + "id": "https://ror.org/02td0y180", + "links": [ + { + "type": "website", + "value": "https://hessian.ai" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Hessisches_Zentrum_f%C3%BCr_K%C3%BCnstliche_Intelligenz" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.87167, + "lng": 8.65027, + "name": "Darmstadt" + }, + "geonames_id": 2938913 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "The Hessian Center for Artificial Intelligence" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "The Hessian Center for Artificial Intelligence “hessian.AI”" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "hessian.AI" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Hessische Zentrum für Künstliche Intelligenz" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Hessische Zentrum für Künstliche Intelligenz hessian.AI" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Hessian Center for Artificial Intelligence" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02v40xr88.json b/test-v2-csv-new/new/02v40xr88.json new file mode 100644 index 000000000..9fb549d7d --- /dev/null +++ b/test-v2-csv-new/new/02v40xr88.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/02v40xr88", + "links": [ + { + "type": "website", + "value": "https://cermud.univ-lehavre.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.49346, + "lng": 0.10785, + "name": "Le Havre" + }, + "geonames_id": 3003796 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CERMUD" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "CEntre de Recherche sur les MUtations du Droit et les mutations sociales" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/02vs0kg72.json b/test-v2-csv-new/new/02vs0kg72.json new file mode 100644 index 000000000..d6d1bd27e --- /dev/null +++ b/test-v2-csv-new/new/02vs0kg72.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q52604627" + ], + "preferred": "Q52604627", + "type": "wikidata" + } + ], + "id": "https://ror.org/02vs0kg72", + "links": [ + { + "type": "website", + "value": "http://cirnef.normandie-univ.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CIRNEF" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Centre Interdisciplinaire de Recherche Normand en Education et Formation" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/030c6zk57.json b/test-v2-csv-new/new/030c6zk57.json new file mode 100644 index 000000000..ae3bf7afc --- /dev/null +++ b/test-v2-csv-new/new/030c6zk57.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2000, + "external_ids": [ + { + "all": [ + "Q51785079" + ], + "preferred": "Q51785079", + "type": "wikidata" + } + ], + "id": "https://ror.org/030c6zk57", + "links": [ + { + "type": "website", + "value": "https://greah.univ-lehavre.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.49346, + "lng": 0.10785, + "name": "Le Havre" + }, + "geonames_id": 3003796 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "GREAH" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Groupe de Recherche en Electrotechnique et Automatique du Havre" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/030nf4y92.json b/test-v2-csv-new/new/030nf4y92.json new file mode 100644 index 000000000..a6175bbdd --- /dev/null +++ b/test-v2-csv-new/new/030nf4y92.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/030nf4y92", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/pacific-islands-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 21.30694, + "lng": -157.85833, + "name": "Honolulu" + }, + "geonames_id": 5856195 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "PIWSC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS PIWSC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Pacific Islands Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Pacific Islands Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Pacific Islands Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Pacific Islands Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/032e35937.json b/test-v2-csv-new/new/032e35937.json new file mode 100644 index 000000000..7941e59b0 --- /dev/null +++ b/test-v2-csv-new/new/032e35937.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0459 4520" + ], + "preferred": "0000 0004 0459 4520", + "type": "isni" + } + ], + "id": "https://ror.org/032e35937", + "links": [ + { + "type": "website", + "value": "https://glycomev.univ-rouen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.46307, + "lng": 1.09364, + "name": "Mont-Saint-Aignan" + }, + "geonames_id": 2992003 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Glyco-MEV" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratoire de Glycobiologie et Matrice Extracellulaire Végétale" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0337g3t04.json b/test-v2-csv-new/new/0337g3t04.json new file mode 100644 index 000000000..dd5e7c2da --- /dev/null +++ b/test-v2-csv-new/new/0337g3t04.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/0337g3t04", + "links": [ + { + "type": "website", + "value": "https://nbuc.edu.my" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "MY", + "country_name": "Malaysia", + "lat": 5.9749, + "lng": 116.0724, + "name": "Kota Kinabalu" + }, + "geonames_id": 1733432 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NBUC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Kolej Universiti Borneo Utara" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "North Borneo University College" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/034k0hz24.json b/test-v2-csv-new/new/034k0hz24.json new file mode 100644 index 000000000..6d5f4d5c3 --- /dev/null +++ b/test-v2-csv-new/new/034k0hz24.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1996, + "external_ids": [ + { + "all": [ + "0000 0001 2159 0773" + ], + "preferred": "0000 0001 2159 0773", + "type": "isni" + }, + { + "all": [ + "Q51785495" + ], + "preferred": "Q51785495", + "type": "wikidata" + } + ], + "id": "https://ror.org/034k0hz24", + "links": [ + { + "type": "website", + "value": "https://identite-subjectivite.unicaen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Identité et subjectivité" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0358ddj57.json b/test-v2-csv-new/new/0358ddj57.json new file mode 100644 index 000000000..1f26f18ca --- /dev/null +++ b/test-v2-csv-new/new/0358ddj57.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/0358ddj57", + "links": [ + { + "type": "website", + "value": "https://itesa.ac.id" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -6.99306, + "lng": 110.42083, + "name": "Semarang" + }, + "geonames_id": 1627896 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ITESA" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "ITESA Semarang" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Institut Teknologi Statistika dan Bisnis Muhammadiyah Semarang" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/036gss145.json b/test-v2-csv-new/new/036gss145.json new file mode 100644 index 000000000..c4b2df2f2 --- /dev/null +++ b/test-v2-csv-new/new/036gss145.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1995, + "external_ids": [ + { + "all": [ + "Q4314791" + ], + "preferred": "Q4314791", + "type": "wikidata" + } + ], + "id": "https://ror.org/036gss145", + "links": [ + { + "type": "website", + "value": "https://nadpsu.edu.ua" + }, + { + "type": "wikipedia", + "value": "https://uk.wikipedia.org/wiki/%D0%9D%D0%B0%D1%86%D1%96%D0%BE%D0%BD%D0%B0%D0%BB%D1%8C%D0%BD%D0%B0_%D0%B0%D0%BA%D0%B0%D0%B4%D0%B5%D0%BC%D1%96%D1%8F_%D0%94%D0%B5%D1%80%D0%B6%D0%B0%D0%B2%D0%BD%D0%BE%D1%97_%D0%BF%D1%80%D0%B8%D0%BA%D0%BE%D1%80%D0%B4%D0%BE%D0%BD%D0%BD%D0%BE%D1%97_%D1%81%D0%BB%D1%83%D0%B6%D0%B1%D0%B8_%D0%A3%D0%BA%D1%80%D0%B0%D1%97%D0%BD%D0%B8_%D1%96%D0%BC%D0%B5%D0%BD%D1%96_%D0%91%D0%BE%D0%B3%D0%B4%D0%B0%D0%BD%D0%B0_%D0%A5%D0%BC%D0%B5%D0%BB%D1%8C%D0%BD%D0%B8%D1%86%D1%8C%D0%BA%D0%BE%D0%B3%D0%BE" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "UA", + "country_name": "Ukraine", + "lat": 49.41835, + "lng": 26.97936, + "name": "Khmelnytskyi" + }, + "geonames_id": 706369 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "НАДПСУ" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NASBGSU" + }, + { + "lang": "uk", + "types": [ + "label" + ], + "value": "Національна академія Державної прикордонної служби України імені Богдана Хмельницького" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Bohdan Khmelnytskyi National Academy of the State Border Guard Service of Ukraine" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/037nyks88.json b/test-v2-csv-new/new/037nyks88.json new file mode 100644 index 000000000..de6eff461 --- /dev/null +++ b/test-v2-csv-new/new/037nyks88.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/037nyks88", + "links": [ + { + "type": "website", + "value": "https://dynamicure.normandie-univ.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DYNAMICURE" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Dynamique Microbienne associée aux Infections Urinaires et Respiratoires" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0385xc115.json b/test-v2-csv-new/new/0385xc115.json new file mode 100644 index 000000000..c3c23dd45 --- /dev/null +++ b/test-v2-csv-new/new/0385xc115.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q109912074" + ], + "preferred": "Q109912074", + "type": "wikidata" + } + ], + "id": "https://ror.org/0385xc115", + "links": [ + { + "type": "website", + "value": "https://mdp.ac.id" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -2.91673, + "lng": 104.7458, + "name": "Palembang" + }, + "geonames_id": 1633070 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Universitas MDP" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Universitas Multi Data Palembang" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03a5w2813.json b/test-v2-csv-new/new/03a5w2813.json new file mode 100644 index 000000000..00a689c56 --- /dev/null +++ b/test-v2-csv-new/new/03a5w2813.json @@ -0,0 +1,92 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q68213640" + ], + "preferred": "Q68213640", + "type": "wikidata" + } + ], + "id": "https://ror.org/03a5w2813", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/programs/national-geospatial-program" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.95143, + "lng": -91.77127, + "name": "Rolla" + }, + "geonames_id": 4406282 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NGP" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS NGP" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS National Geospatial Program" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey National Geospatial Program" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey National Geospatial Program" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "National Geospatial Program" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03dad0062.json b/test-v2-csv-new/new/03dad0062.json new file mode 100644 index 000000000..64017dd57 --- /dev/null +++ b/test-v2-csv-new/new/03dad0062.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 2169 7706" + ], + "preferred": "0000 0001 2169 7706", + "type": "isni" + }, + { + "all": [ + "Q51783058" + ], + "preferred": "Q51783058", + "type": "wikidata" + } + ], + "id": "https://ror.org/03dad0062", + "links": [ + { + "type": "website", + "value": "https://cetaps.univ-rouen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.46307, + "lng": 1.09364, + "name": "Mont-Saint-Aignan" + }, + "geonames_id": 2992003 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CETAPS" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Centre d’études des transformations des activités physiques et sportives" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03dssrs41.json b/test-v2-csv-new/new/03dssrs41.json new file mode 100644 index 000000000..4993d2dc4 --- /dev/null +++ b/test-v2-csv-new/new/03dssrs41.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/03dssrs41", + "links": [ + { + "type": "website", + "value": "https://lern.univ-rouen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.44313, + "lng": 1.09932, + "name": "Rouen" + }, + "geonames_id": 2982652 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LERN" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratoire d'économie Rouen Normandie" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03ed6pb68.json b/test-v2-csv-new/new/03ed6pb68.json new file mode 100644 index 000000000..28cab31fa --- /dev/null +++ b/test-v2-csv-new/new/03ed6pb68.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0373 099X" + ], + "preferred": "0000 0004 0373 099X", + "type": "isni" + }, + { + "all": [ + "Q51784119" + ], + "preferred": "Q51784119", + "type": "wikidata" + } + ], + "id": "https://ror.org/03ed6pb68", + "links": [ + { + "type": "website", + "value": "https://cermn.unicaen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CERMN" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Centre d'Etudes et de Recherche sur le Médicament de Normandie" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03eppar45.json b/test-v2-csv-new/new/03eppar45.json new file mode 100644 index 000000000..15bd91a60 --- /dev/null +++ b/test-v2-csv-new/new/03eppar45.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/03eppar45", + "links": [ + { + "type": "website", + "value": "http://www.dndi-systema.lviv.ua" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "UA", + "country_name": "Ukraine", + "lat": 49.83826, + "lng": 24.02324, + "name": "Lviv" + }, + "geonames_id": 702550 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Державне підприємство «Науково-дослідний інститут метрології вимірювальних і управляючих систем»" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "SE \"NDI Systema\"" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "ДП НДІ «Система»" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "State Enterprise \"Scientific and Research Institute for Metrology of Measurement and Control Systems\"" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03f9rbg93.json b/test-v2-csv-new/new/03f9rbg93.json new file mode 100644 index 000000000..e56a9e2ce --- /dev/null +++ b/test-v2-csv-new/new/03f9rbg93.json @@ -0,0 +1,97 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/03f9rbg93", + "links": [ + { + "type": "website", + "value": "https://main.icmr.nic.in/institutes/icmr-nireh-bhopal" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 23.25469, + "lng": 77.40289, + "name": "Bhopal" + }, + "geonames_id": 1275841 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NIREH" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ICMR NIREH" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Indian Council of Medical Research National Institute for Research in Environmental Health" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "ICMR-National Institute for Research in Environmental Health" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "ICMR-National Institute for Research in Environmental Health (NIREH)" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "National Institute for Research in Environmental Health (NIREH)" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "National Institute for Research in Environmental Health" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "ICMR National Institute for Research in Environmental Health" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03fgm5482.json b/test-v2-csv-new/new/03fgm5482.json new file mode 100644 index 000000000..db61378dc --- /dev/null +++ b/test-v2-csv-new/new/03fgm5482.json @@ -0,0 +1,83 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2015, + "external_ids": [], + "id": "https://ror.org/03fgm5482", + "links": [ + { + "type": "website", + "value": "https://culinarymedicine.de" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.05, + "lng": 7.46667, + "name": "Altenberge" + }, + "geonames_id": 2957829 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CMD" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Culinary Medicine Deutschland" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Culinary Medicine Germany" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "CookUOS e.V." + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "CookUOS" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Culinary Medicine Deutschland e.V." + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03h1g1d47.json b/test-v2-csv-new/new/03h1g1d47.json new file mode 100644 index 000000000..582ca54ba --- /dev/null +++ b/test-v2-csv-new/new/03h1g1d47.json @@ -0,0 +1,76 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2023, + "external_ids": [], + "id": "https://ror.org/03h1g1d47", + "links": [ + { + "type": "website", + "value": "https://polteksci.ac.id" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -6.7063, + "lng": 108.557, + "name": "Cirebon" + }, + "geonames_id": 1646170 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Poltek SCI - Siber Cerdika Internasional" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Politeknik SCI" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Poltek SCI" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Cerdika International Cyber Polytechnic" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Politeknik Siber Cerdika Internasional" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03h692d94.json b/test-v2-csv-new/new/03h692d94.json new file mode 100644 index 000000000..565f58e5d --- /dev/null +++ b/test-v2-csv-new/new/03h692d94.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/03h692d94", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/geosciences-and-environmental-change-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.73915, + "lng": -104.9847, + "name": "Denver" + }, + "geonames_id": 5419384 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "GECSC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS GECSC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Geosciences and Environmental Change Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Geosciences and Environmental Change Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Geosciences and Environmental Change Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Geosciences and Environmental Change Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03h7vhf54.json b/test-v2-csv-new/new/03h7vhf54.json new file mode 100644 index 000000000..17d7bc989 --- /dev/null +++ b/test-v2-csv-new/new/03h7vhf54.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/03h7vhf54", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/national-geospatial-technical-operations-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.95143, + "lng": -91.77127, + "name": "Rolla" + }, + "geonames_id": 4406282 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NGTOC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS NGTOC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS National Geospatial Technical Operations Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey National Geospatial Technical Operations Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey National Geospatial Technical Operations Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "National Geospatial Technical Operations Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03k0kp016.json b/test-v2-csv-new/new/03k0kp016.json new file mode 100644 index 000000000..a3b2d2648 --- /dev/null +++ b/test-v2-csv-new/new/03k0kp016.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/03k0kp016", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/programs/science-and-decisions-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.96872, + "lng": -77.3411, + "name": "Reston" + }, + "geonames_id": 4781530 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SDC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS SDC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Science and Decisions Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Science and Decisions Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Science and Decisions Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Science and Decisions Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03k92hw63.json b/test-v2-csv-new/new/03k92hw63.json new file mode 100644 index 000000000..27c8e073c --- /dev/null +++ b/test-v2-csv-new/new/03k92hw63.json @@ -0,0 +1,78 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q116212763" + ], + "preferred": "Q116212763", + "type": "wikidata" + } + ], + "id": "https://ror.org/03k92hw63", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/pcmsc" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 36.97412, + "lng": -122.0308, + "name": "Santa Cruz" + }, + "geonames_id": 5393052 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Pacific Coastal and Marine Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Pacific Coastal and Marine Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Pacific Coastal and Marine Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Pacific Coastal and Marine Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03p4bcn43.json b/test-v2-csv-new/new/03p4bcn43.json new file mode 100644 index 000000000..a400fe1c6 --- /dev/null +++ b/test-v2-csv-new/new/03p4bcn43.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0005 0315 8660" + ], + "preferred": "0000 0005 0315 8660", + "type": "isni" + }, + { + "all": [ + "Q109913872" + ], + "preferred": "Q109913872", + "type": "wikidata" + } + ], + "id": "https://ror.org/03p4bcn43", + "links": [ + { + "type": "website", + "value": "https://pmb.harapan.ac.id" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": 3.58333, + "lng": 98.66667, + "name": "Medan" + }, + "geonames_id": 1214520 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNHAR MEDAN" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Harapan Medan University" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Universitas Harapan Medan" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03ptq1s40.json b/test-v2-csv-new/new/03ptq1s40.json new file mode 100644 index 000000000..de21c2a1c --- /dev/null +++ b/test-v2-csv-new/new/03ptq1s40.json @@ -0,0 +1,76 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1926, + "external_ids": [], + "id": "https://ror.org/03ptq1s40", + "links": [ + { + "type": "website", + "value": "https://nivs.rs" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "RS", + "country_name": "Serbia", + "lat": 44.80401, + "lng": 20.46513, + "name": "Belgrade" + }, + "geonames_id": 792680 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NIVS" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Scientific Veterinary Institute of Serbia" + }, + { + "lang": "sr", + "types": [ + "label" + ], + "value": "Naučni institut za veterinarstvo Srbije" + }, + { + "lang": "sr", + "types": [ + "label" + ], + "value": "Научни институт за ветеринарство Србије" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Scientific Institute for Veterinary Medicine of Serbia" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03q1tm220.json b/test-v2-csv-new/new/03q1tm220.json new file mode 100644 index 000000000..947c4bb6b --- /dev/null +++ b/test-v2-csv-new/new/03q1tm220.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0385 7501" + ], + "preferred": "0000 0004 0385 7501", + "type": "isni" + }, + { + "all": [ + "Q50040735" + ], + "preferred": "Q50040735", + "type": "wikidata" + } + ], + "id": "https://ror.org/03q1tm220", + "links": [ + { + "type": "website", + "value": "https://www.istct.cyceron.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ISTCT" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Imagerie et Stratégies Thérapeutiques pour les Cancers et Tissus cérébraux" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03qsn7v98.json b/test-v2-csv-new/new/03qsn7v98.json new file mode 100644 index 000000000..921397261 --- /dev/null +++ b/test-v2-csv-new/new/03qsn7v98.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/03qsn7v98", + "links": [ + { + "type": "website", + "value": "https://www.health-and-medical-university.de" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.9787, + "lng": 11.03283, + "name": "Erfurt" + }, + "geonames_id": 2929670 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "HMU Health and Medical University Erfurt" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "HMU Erfurt" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "HMU Erfurt - Health and Medical University Erfurt" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03r89mk76.json b/test-v2-csv-new/new/03r89mk76.json new file mode 100644 index 000000000..aae3d633e --- /dev/null +++ b/test-v2-csv-new/new/03r89mk76.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 2370 2847" + ], + "preferred": "0000 0001 2370 2847", + "type": "isni" + }, + { + "all": [ + "Q51784784" + ], + "preferred": "Q51784784", + "type": "wikidata" + } + ], + "id": "https://ror.org/03r89mk76", + "links": [ + { + "type": "website", + "value": "https://gric.univ-lehavre.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.49346, + "lng": 0.10785, + "name": "Le Havre" + }, + "geonames_id": 3003796 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "GRIC" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Groupe de recherche Identités et Cultures" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03sp4f997.json b/test-v2-csv-new/new/03sp4f997.json new file mode 100644 index 000000000..010a0f23a --- /dev/null +++ b/test-v2-csv-new/new/03sp4f997.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2022, + "external_ids": [], + "id": "https://ror.org/03sp4f997", + "links": [ + { + "type": "website", + "value": "https://institutocrg.cl" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CL", + "country_name": "Chile", + "lat": -33.45694, + "lng": -70.64827, + "name": "Santiago" + }, + "geonames_id": 3871336 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MI CGR" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Instituto Milenio CRG" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "CGR Millenium Institute" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Millenium Institute Center for Genome Regulation" + }, + { + "lang": null, + "types": [ + "alias", + "label" + ], + "value": "Instituto Milenio Centro de Regulación del Genoma" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03sv71f43.json b/test-v2-csv-new/new/03sv71f43.json new file mode 100644 index 000000000..63ae404d8 --- /dev/null +++ b/test-v2-csv-new/new/03sv71f43.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/03sv71f43", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/upper-midwest-environmental-sciences-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.80136, + "lng": -91.23958, + "name": "La Crosse" + }, + "geonames_id": 5258957 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UMESC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS UMESC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Upper Midwest Environmental Sciences Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Upper Midwest Environmental Sciences Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Upper Midwest Environmental Sciences Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Upper Midwest Environmental Sciences Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03w8byy45.json b/test-v2-csv-new/new/03w8byy45.json new file mode 100644 index 000000000..a343370f9 --- /dev/null +++ b/test-v2-csv-new/new/03w8byy45.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2013, + "external_ids": [], + "id": "https://ror.org/03w8byy45", + "links": [ + { + "type": "website", + "value": "https://humandx.org" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.71427, + "lng": -74.00597, + "name": "New York" + }, + "geonames_id": 5128581 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Human Diagnosis Project" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Human Dx" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "The Human Diagnosis Project" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03wdb1764.json b/test-v2-csv-new/new/03wdb1764.json new file mode 100644 index 000000000..dc9eed0d2 --- /dev/null +++ b/test-v2-csv-new/new/03wdb1764.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/03wdb1764", + "links": [ + { + "type": "website", + "value": "https://icrej.unicaen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ICREJ" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Institut Caennais de Recherche Juridique" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03wfp7m06.json b/test-v2-csv-new/new/03wfp7m06.json new file mode 100644 index 000000000..3910590e8 --- /dev/null +++ b/test-v2-csv-new/new/03wfp7m06.json @@ -0,0 +1,72 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "5.011E+11" + ], + "preferred": "5.011E+11", + "type": "fundref" + }, + { + "all": [ + "0000 0004 7885 9130" + ], + "preferred": "0000 0004 7885 9130", + "type": "isni" + } + ], + "id": "https://ror.org/03wfp7m06", + "links": [], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.86389, + "lng": 117.28083, + "name": "Hefei" + }, + "geonames_id": 1808722 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "State Key Lab of Pulsed Power Laser Technology" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "脉冲功率激光技术国家重点实验室" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "State Key Laboratory of Pulsed Power Laser Technology" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03wr39w56.json b/test-v2-csv-new/new/03wr39w56.json new file mode 100644 index 000000000..abd69c865 --- /dev/null +++ b/test-v2-csv-new/new/03wr39w56.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/03wr39w56", + "links": [ + { + "type": "website", + "value": "https://campus-sante-rouen.fr/unite-de-recherche-inserm-1239/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.44313, + "lng": 1.09932, + "name": "Rouen" + }, + "geonames_id": 2982652 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NORDIC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "NorDic - Neuroendocrine, Endocrine and Germinal Differentiation Communication" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Neuroendocrine, Endocrine and Germinal Differentiation Communication" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/03x6cmx41.json b/test-v2-csv-new/new/03x6cmx41.json new file mode 100644 index 000000000..80856bf1c --- /dev/null +++ b/test-v2-csv-new/new/03x6cmx41.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/03x6cmx41", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/programs/national-geological-and-geophysical-data-preservation-program/national-geological-and" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.70471, + "lng": -105.08137, + "name": "Lakewood" + }, + "geonames_id": 5427946 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NGGDPP" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS NGGDPP" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS National Geological and Geophysical Data Preservation Program" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey National Geological and Geophysical Data Preservation Program" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey National Geological and Geophysical Data Preservation Program" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "National Geological and Geophysical Data Preservation Program" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/040hpp893.json b/test-v2-csv-new/new/040hpp893.json new file mode 100644 index 000000000..f6f66a5b7 --- /dev/null +++ b/test-v2-csv-new/new/040hpp893.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/040hpp893", + "links": [ + { + "type": "website", + "value": "https://dysolab.hypotheses.org" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.46307, + "lng": 1.09364, + "name": "Mont-Saint-Aignan" + }, + "geonames_id": 2992003 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Social Dynamics Laboratory" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratoire des dynamiques sociales (Dysolab)" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "DySoLab" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratoire des dynamiques sociales" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0419ntr52.json b/test-v2-csv-new/new/0419ntr52.json new file mode 100644 index 000000000..906430f79 --- /dev/null +++ b/test-v2-csv-new/new/0419ntr52.json @@ -0,0 +1,99 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0000 9155 2759" + ], + "preferred": "0000 0000 9155 2759", + "type": "isni" + }, + { + "all": [ + "Q116040261" + ], + "preferred": "Q116040261", + "type": "wikidata" + } + ], + "id": "https://ror.org/0419ntr52", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/great-lakes-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.27756, + "lng": -83.74088, + "name": "Ann Arbor" + }, + "geonames_id": 4984247 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "GLSC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS GLSC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Great Lakes Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Great Lakes Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Great Lakes Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Great Lakes Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/041k87p66.json b/test-v2-csv-new/new/041k87p66.json new file mode 100644 index 000000000..2712f71db --- /dev/null +++ b/test-v2-csv-new/new/041k87p66.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/041k87p66", + "links": [ + { + "type": "website", + "value": "https://portiaweb.org.uk" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Portia Ltd." + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Portia" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/045pkkd62.json b/test-v2-csv-new/new/045pkkd62.json new file mode 100644 index 000000000..7d0b010cb --- /dev/null +++ b/test-v2-csv-new/new/045pkkd62.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/045pkkd62", + "links": [ + { + "type": "website", + "value": "https://www.univ-reims.fr/universite/organisation/epidemiosurveillance-de-protozooses-a-transmission-alimentaire-et-vectorielle-escape,7741,18258.html?args=mKxhJ4V_KsnxihRGymyHQq403qtwr8Ey9mvVg6zjFUzzSfGm26p2S60eZNYuZXvzxbbeh%252A%252AfhBweFYMoMMSUrA" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.26526, + "lng": 4.02853, + "name": "Reims" + }, + "geonames_id": 2984114 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ESCAPE" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Epidémiosurveillance et circulation des parasites dans les environnements" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/045q9z720.json b/test-v2-csv-new/new/045q9z720.json new file mode 100644 index 000000000..b61237718 --- /dev/null +++ b/test-v2-csv-new/new/045q9z720.json @@ -0,0 +1,76 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2018, + "external_ids": [], + "id": "https://ror.org/045q9z720", + "links": [ + { + "type": "website", + "value": "http://www.rettungsrobotik.de" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.51494, + "lng": 7.466, + "name": "Dortmund" + }, + "geonames_id": 2935517 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DRZ" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Deutsches Rettungsrobotik-Zentrum (DRZ)" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Deutsches Rettungsrobotik-Zentrum e.V." + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "German Rescue Robotics Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Deutsches Rettungsrobotik-Zentrum" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0483sy194.json b/test-v2-csv-new/new/0483sy194.json new file mode 100644 index 000000000..948190510 --- /dev/null +++ b/test-v2-csv-new/new/0483sy194.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/0483sy194", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/central-energy-resources-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.43373, + "lng": -104.89439, + "name": "Denver-Aurora-Lakewood, CO" + }, + "geonames_id": 12213207 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CERSC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS CERSC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Central Energy Resources Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Central Energy Resources Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Central Energy Resources Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Central Energy Resources Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/048x5zq17.json b/test-v2-csv-new/new/048x5zq17.json new file mode 100644 index 000000000..d14e812c2 --- /dev/null +++ b/test-v2-csv-new/new/048x5zq17.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2003, + "external_ids": [], + "id": "https://ror.org/048x5zq17", + "links": [ + { + "type": "website", + "value": "https://www.anzca.edu.au/research/anzca-clinical-trials-network" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -37.814, + "lng": 144.96332, + "name": "Melbourne" + }, + "geonames_id": 2158177 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ANZCA CTN" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Australian and New Zealand College of Anaesthetists Clinical Trials Network" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "ANZCA Clinical Trials Network" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04dgxjs71.json b/test-v2-csv-new/new/04dgxjs71.json new file mode 100644 index 000000000..3173b4788 --- /dev/null +++ b/test-v2-csv-new/new/04dgxjs71.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/04dgxjs71", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/utah-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.69161, + "lng": -112.00105, + "name": "West Valley City" + }, + "geonames_id": 5784607 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Utah Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Utah Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Utah Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Utah Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04e27v035.json b/test-v2-csv-new/new/04e27v035.json new file mode 100644 index 000000000..c1d346fc3 --- /dev/null +++ b/test-v2-csv-new/new/04e27v035.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q3538046" + ], + "preferred": "Q3538046", + "type": "wikidata" + } + ], + "id": "https://ror.org/04e27v035", + "links": [ + { + "type": "website", + "value": "https://www.trapil.com" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Trapil" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.93333, + "lng": 2.3, + "name": "Gennevilliers" + }, + "geonames_id": 3016321 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "TRAPIL" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Société des Transports Pétroliers par Pipeline" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Société TRAPIL" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "TRAPIL (France)" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04fezsb40.json b/test-v2-csv-new/new/04fezsb40.json new file mode 100644 index 000000000..851c4a7ae --- /dev/null +++ b/test-v2-csv-new/new/04fezsb40.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 7434 4965" + ], + "preferred": "0000 0004 7434 4965", + "type": "isni" + } + ], + "id": "https://ror.org/04fezsb40", + "links": [ + { + "type": "website", + "value": "https://lomc.univ-lehavre.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.49346, + "lng": 0.10785, + "name": "Le Havre" + }, + "geonames_id": 3003796 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LOMC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratory of Waves and Complex Media" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "LOMC Laboratoire Ondes et Milieux Complexes" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratoire Ondes et Milieux Complexes" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04fx2f042.json b/test-v2-csv-new/new/04fx2f042.json new file mode 100644 index 000000000..eba0ec906 --- /dev/null +++ b/test-v2-csv-new/new/04fx2f042.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/04fx2f042", + "links": [ + { + "type": "website", + "value": "http://ir.bas.bg" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BG", + "country_name": "Bulgaria", + "lat": 42.69751, + "lng": 23.32415, + "name": "Sofia" + }, + "geonames_id": 727011 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IR-BAS" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bulgarian Academy of Sciences Institute of Robotics" + }, + { + "lang": "bg", + "types": [ + "label" + ], + "value": "Институт по роботика" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Institute of Robotics" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04h4ym721.json b/test-v2-csv-new/new/04h4ym721.json new file mode 100644 index 000000000..9154f2d75 --- /dev/null +++ b/test-v2-csv-new/new/04h4ym721.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1992, + "external_ids": [], + "id": "https://ror.org/04h4ym721", + "links": [ + { + "type": "website", + "value": "https://irdp.univ-nantes.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 47.21725, + "lng": -1.55336, + "name": "Nantes" + }, + "geonames_id": 2990969 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IRDP" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Institut de recherche en droit privé" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04hmhwb77.json b/test-v2-csv-new/new/04hmhwb77.json new file mode 100644 index 000000000..4b6894013 --- /dev/null +++ b/test-v2-csv-new/new/04hmhwb77.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 2170 7783" + ], + "preferred": "0000 0001 2170 7783", + "type": "isni" + }, + { + "all": [ + "Q51780404" + ], + "preferred": "Q51780404", + "type": "wikidata" + } + ], + "id": "https://ror.org/04hmhwb77", + "links": [ + { + "type": "website", + "value": "https://erlis.unicaen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ERLIS" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Equipe de recherche sur les littératures, les imaginaires et les sociétés" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04hpb2k40.json b/test-v2-csv-new/new/04hpb2k40.json new file mode 100644 index 000000000..61bfa9f0b --- /dev/null +++ b/test-v2-csv-new/new/04hpb2k40.json @@ -0,0 +1,82 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2019, + "external_ids": [ + { + "all": [ + "Q72342707" + ], + "preferred": "Q72342707", + "type": "wikidata" + } + ], + "id": "https://ror.org/04hpb2k40", + "links": [ + { + "type": "website", + "value": "https://jbnuu.uz" + }, + { + "type": "wikipedia", + "value": "https://uz.wikipedia.org/wiki/O%CA%BBzbekiston_milliy_universitetining_Jizzax_filiali" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "UZ", + "country_name": "Uzbekistan", + "lat": 40.12341, + "lng": 67.82842, + "name": "Jizzakh" + }, + "geonames_id": 1513886 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Jizzakh branch of the National University of Uzbekistan" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Джизакский филиал Национального университета Узбекистана имени Мирзо Улугбека" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Jizzakh branch of the National University of Uzbekistan named after Mirzo Ulugbek" + }, + { + "lang": null, + "types": [ + "alias", + "label" + ], + "value": "Mirzo Ulug`bek nomidagi O`zbekiston milliy universiteti Jizzax filiali" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04j7rnh41.json b/test-v2-csv-new/new/04j7rnh41.json new file mode 100644 index 000000000..66f9cffa3 --- /dev/null +++ b/test-v2-csv-new/new/04j7rnh41.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/04j7rnh41", + "links": [ + { + "type": "website", + "value": "http://jozacpublishers.com" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ZA", + "country_name": "South Africa", + "lat": -25.86522, + "lng": 25.64421, + "name": "Mafikeng" + }, + "geonames_id": 980595 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "JP" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Jozac Publishers" + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04k0t7j80.json b/test-v2-csv-new/new/04k0t7j80.json new file mode 100644 index 000000000..428826521 --- /dev/null +++ b/test-v2-csv-new/new/04k0t7j80.json @@ -0,0 +1,106 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q60197321" + ], + "preferred": "Q60197321", + "type": "wikidata" + } + ], + "id": "https://ror.org/04k0t7j80", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/gmeg" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.41352, + "lng": -122.05404, + "name": "Moffett Federal Airfield" + }, + "geonames_id": 8096494 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "GMEG" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS GMEG" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "GMEGSC" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS GMEGSC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Geology, Minerals, Energy, and Geophysics Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Geology, Minerals, Energy, and Geophysics Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Geology, Minerals, Energy, and Geophysics Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Geology, Minerals, Energy, and Geophysics Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04kmcx012.json b/test-v2-csv-new/new/04kmcx012.json new file mode 100644 index 000000000..29dda07aa --- /dev/null +++ b/test-v2-csv-new/new/04kmcx012.json @@ -0,0 +1,57 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/04kmcx012", + "links": [], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 28.19874, + "lng": 112.97087, + "name": "Changsha" + }, + "geonames_id": 1815577 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "State Key Lab of Medical Genomics" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "医学遗传学国家重点实验室" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "State Key Laboratory of Medical Genomics" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04n4bxg02.json b/test-v2-csv-new/new/04n4bxg02.json new file mode 100644 index 000000000..d3ecf872d --- /dev/null +++ b/test-v2-csv-new/new/04n4bxg02.json @@ -0,0 +1,78 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 0041 6530" + ], + "preferred": "0000 0001 0041 6530", + "type": "isni" + } + ], + "id": "https://ror.org/04n4bxg02", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/kansas-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.97167, + "lng": -95.23525, + "name": "Lawrence" + }, + "geonames_id": 4274277 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Kansas Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Kansas Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Kansas Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Kansas Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04nrzc395.json b/test-v2-csv-new/new/04nrzc395.json new file mode 100644 index 000000000..dea83e229 --- /dev/null +++ b/test-v2-csv-new/new/04nrzc395.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1955, + "external_ids": [ + { + "all": [ + "0000 0001 1940 0926" + ], + "preferred": "0000 0001 1940 0926", + "type": "isni" + }, + { + "all": [ + "Q8963091" + ], + "preferred": "Q8963091", + "type": "wikidata" + } + ], + "id": "https://ror.org/04nrzc395", + "links": [ + { + "type": "website", + "value": "https://www.sanchoelsabio.eus" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Fundaci%C3%B3n_Sancho_el_Sabio" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.84998, + "lng": -2.67268, + "name": "Vitoria-Gasteiz" + }, + "geonames_id": 3104499 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "FSS" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Fundación Sancho el Sabio" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Sancho el Sabio Fundazioa" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Sancho el Sabio Foundation" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Fundación Sancho el Sabio Fundazioa" + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04p8fmp10.json b/test-v2-csv-new/new/04p8fmp10.json new file mode 100644 index 000000000..105d6d955 --- /dev/null +++ b/test-v2-csv-new/new/04p8fmp10.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2021, + "external_ids": [ + { + "all": [ + "0000 0005 0358 7246" + ], + "preferred": "0000 0005 0358 7246", + "type": "isni" + } + ], + "id": "https://ror.org/04p8fmp10", + "links": [ + { + "type": "website", + "value": "https://iuk.edu.kw" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "KW", + "country_name": "Kuwait", + "lat": 29.36972, + "lng": 47.97833, + "name": "Kuwait City" + }, + "geonames_id": 285787 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IUK" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "International University of Science and Technology in Kuwait" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04qt8na98.json b/test-v2-csv-new/new/04qt8na98.json new file mode 100644 index 000000000..df25608f9 --- /dev/null +++ b/test-v2-csv-new/new/04qt8na98.json @@ -0,0 +1,92 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q112181324" + ], + "preferred": "Q112181324", + "type": "wikidata" + } + ], + "id": "https://ror.org/04qt8na98", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/norock" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 45.67965, + "lng": -111.03856, + "name": "Bozeman" + }, + "geonames_id": 5641727 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NOROCK" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS NOROCK" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Northern Rocky Mountain Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Northern Rocky Mountain Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Northern Rocky Mountain Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Northern Rocky Mountain Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04rfz4c05.json b/test-v2-csv-new/new/04rfz4c05.json new file mode 100644 index 000000000..aa7479787 --- /dev/null +++ b/test-v2-csv-new/new/04rfz4c05.json @@ -0,0 +1,57 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/04rfz4c05", + "links": [], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.22222, + "lng": 121.45806, + "name": "Shanghai" + }, + "geonames_id": 1796236 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "State Key Lab of Medical Genomics" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "医学基因组学国家重点实验室" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "State Key Laboratory of Medical Genomics" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04wz1mj29.json b/test-v2-csv-new/new/04wz1mj29.json new file mode 100644 index 000000000..92e0cd160 --- /dev/null +++ b/test-v2-csv-new/new/04wz1mj29.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2000, + "external_ids": [ + { + "all": [ + "0000 0005 1235 7290" + ], + "preferred": "0000 0005 1235 7290", + "type": "isni" + } + ], + "id": "https://ror.org/04wz1mj29", + "links": [ + { + "type": "website", + "value": "https://uohs.edu.so" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "SO", + "country_name": "Somalia", + "lat": 11.28421, + "lng": 49.18158, + "name": "Bosaso" + }, + "geonames_id": 64013 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UOHS" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Health Sciences Somalia" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "University of Health Sciences" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04x6w0335.json b/test-v2-csv-new/new/04x6w0335.json new file mode 100644 index 000000000..0cbfc8733 --- /dev/null +++ b/test-v2-csv-new/new/04x6w0335.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/04x6w0335", + "links": [ + { + "type": "website", + "value": "http://www.araeb.org.sy" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "SY", + "country_name": "Syria", + "lat": 33.5102, + "lng": 36.29128, + "name": "Damascus" + }, + "geonames_id": 170654 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ARAEB" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "الاكاديمية العربية للأعمال الالكترونية" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Arab Academy For E-Business" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04z1gnc18.json b/test-v2-csv-new/new/04z1gnc18.json new file mode 100644 index 000000000..33fa3d0b2 --- /dev/null +++ b/test-v2-csv-new/new/04z1gnc18.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 4902 6842" + ], + "preferred": "0000 0004 4902 6842", + "type": "isni" + }, + { + "all": [ + "Q105615808" + ], + "preferred": "Q105615808", + "type": "wikidata" + } + ], + "id": "https://ror.org/04z1gnc18", + "links": [ + { + "type": "website", + "value": "https://labsms.univ-rouen.fr" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Laboratoire_Sciences_et_M%C3%A9thodes_S%C3%A9paratives" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.44313, + "lng": 1.09932, + "name": "Rouen" + }, + "geonames_id": 2982652 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SMS" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratoire SMS" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratoire Sciences et Méthodes Séparatives" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04zchf383.json b/test-v2-csv-new/new/04zchf383.json new file mode 100644 index 000000000..eb3aab19e --- /dev/null +++ b/test-v2-csv-new/new/04zchf383.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [ + { + "all": [ + "0000 0004 4655 0366" + ], + "preferred": "0000 0004 4655 0366", + "type": "isni" + }, + { + "all": [ + "Q55721694" + ], + "preferred": "Q55721694", + "type": "wikidata" + } + ], + "id": "https://ror.org/04zchf383", + "links": [ + { + "type": "website", + "value": "https://univ-constantine3.dz" + }, + { + "type": "wikipedia", + "value": "https://ar.wikipedia.org/wiki/%D8%AC%D8%A7%D9%85%D8%B9%D8%A9_%D9%82%D8%B3%D9%86%D8%B7%D9%8A%D9%86%D8%A9_3_-%D8%B5%D8%A7%D9%84%D8%AD_%D8%A8%D9%88%D8%A8%D9%86%D9%8A%D8%AF%D8%B1" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DZ", + "country_name": "Algeria", + "lat": 36.2459, + "lng": 6.5671, + "name": "Ali Mendjeli" + }, + "geonames_id": 11204500 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Constantine 3 Salah Boubnider" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Université de Constantine 3 Salah Boubnider" + }, + { + "lang": "ar", + "types": [ + "label" + ], + "value": "جامعة قسنظينة 3" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Constantine 3" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "University of Constantine 3" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04zckqf22.json b/test-v2-csv-new/new/04zckqf22.json new file mode 100644 index 000000000..dd13a866c --- /dev/null +++ b/test-v2-csv-new/new/04zckqf22.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2022, + "external_ids": [ + { + "all": [ + "0000 0005 1373 9768" + ], + "preferred": "0000 0005 1373 9768", + "type": "isni" + }, + { + "all": [ + "Q124415276" + ], + "preferred": "Q124415276", + "type": "wikidata" + } + ], + "id": "https://ror.org/04zckqf22", + "links": [ + { + "type": "website", + "value": "https://digitechuniversity.ac.id" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -6.92222, + "lng": 107.60694, + "name": "Bandung" + }, + "geonames_id": 1650357 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DIGITECH" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Digitech University" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Universitas Teknologi Digital" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04zgxg014.json b/test-v2-csv-new/new/04zgxg014.json new file mode 100644 index 000000000..0c57563bb --- /dev/null +++ b/test-v2-csv-new/new/04zgxg014.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/04zgxg014", + "links": [ + { + "type": "website", + "value": "https://www.health-and-medical-university.de" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.39886, + "lng": 13.06566, + "name": "Potsdam" + }, + "geonames_id": 2852458 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "HMU Health and Medical University Potsdam" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "HMU Potsdam" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "HMU Potsdam – Health and Medical University Potsdam" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/04zqgy378.json b/test-v2-csv-new/new/04zqgy378.json new file mode 100644 index 000000000..28aca1107 --- /dev/null +++ b/test-v2-csv-new/new/04zqgy378.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2014, + "external_ids": [], + "id": "https://ror.org/04zqgy378", + "links": [ + { + "type": "website", + "value": "https://skyfox.co" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 10.78523, + "lng": 79.13909, + "name": "Thanjavur" + }, + "geonames_id": 1254649 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Skyfox" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Skyfox Research Foundation" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Skyfox Publishing Group" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/052vfr793.json b/test-v2-csv-new/new/052vfr793.json new file mode 100644 index 000000000..9e12c21c5 --- /dev/null +++ b/test-v2-csv-new/new/052vfr793.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/052vfr793", + "links": [ + { + "type": "website", + "value": "https://gr2if.univ-rouen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.44313, + "lng": 1.09932, + "name": "Rouen" + }, + "geonames_id": 2982652 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "GR2IF" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Groupe de recherche Rouennais en Informatique FOndamentale" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0533s0y73.json b/test-v2-csv-new/new/0533s0y73.json new file mode 100644 index 000000000..be16a34cd --- /dev/null +++ b/test-v2-csv-new/new/0533s0y73.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/0533s0y73", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/volcano-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 61.21806, + "lng": -149.90028, + "name": "Anchorage" + }, + "geonames_id": 5879400 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Volcano Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Volcano Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Volcano Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Volcano Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/0559z5f21.json b/test-v2-csv-new/new/0559z5f21.json new file mode 100644 index 000000000..daf6a0ea0 --- /dev/null +++ b/test-v2-csv-new/new/0559z5f21.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "5.011E+11" + ], + "preferred": "5.011E+11", + "type": "fundref" + } + ], + "id": "https://ror.org/0559z5f21", + "links": [ + { + "type": "website", + "value": "https://ofcl.pku.edu.cn/sysgk1/sysjj.htm" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31, + "lng": 112.25, + "name": "Hubei" + }, + "geonames_id": 1806949 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "State Key Lab of Advanced Optical Communication Systems and Networks" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "光纤通信技术和网络国家重点实验室" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "State Key Laboratory of Advanced Optical Communication Systems and Networks" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/055rvze53.json b/test-v2-csv-new/new/055rvze53.json new file mode 100644 index 000000000..c11887df2 --- /dev/null +++ b/test-v2-csv-new/new/055rvze53.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/055rvze53", + "links": [ + { + "type": "website", + "value": "https://www.nsw.gov.au/departments-and-agencies/department-of-planning-housing-and-infrastructure" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -33.8178, + "lng": 151.00348, + "name": "Parramatta" + }, + "geonames_id": 7281840 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DPHI" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NSW DPHI" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "New South Wales Department of Planning, Housing and Infrastructure" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "NSW Department of Planning, Housing and Infrastructure" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/058dw8g87.json b/test-v2-csv-new/new/058dw8g87.json new file mode 100644 index 000000000..36274575c --- /dev/null +++ b/test-v2-csv-new/new/058dw8g87.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/058dw8g87", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/pennsylvania-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.23231, + "lng": -76.8847, + "name": "New Cumberland" + }, + "geonames_id": 5203164 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Pennsylvania Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Pennsylvania Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Pennsylvania Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Pennsylvania Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/058shsj06.json b/test-v2-csv-new/new/058shsj06.json new file mode 100644 index 000000000..3bbcb5d62 --- /dev/null +++ b/test-v2-csv-new/new/058shsj06.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2008, + "external_ids": [], + "id": "https://ror.org/058shsj06", + "links": [ + { + "type": "website", + "value": "https://iuce.usal.es" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.96882, + "lng": -5.66388, + "name": "Salamanca" + }, + "geonames_id": 3111108 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IUCE" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Research Institute for Educational Sciences" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Instituto Universitario de Ciencias de la Educación" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/059e1bd47.json b/test-v2-csv-new/new/059e1bd47.json new file mode 100644 index 000000000..562aa5c1c --- /dev/null +++ b/test-v2-csv-new/new/059e1bd47.json @@ -0,0 +1,66 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2008, + "external_ids": [], + "id": "https://ror.org/059e1bd47", + "links": [ + { + "type": "website", + "value": "https://programminghistorian.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Programming_Historian" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.82838, + "lng": -0.13947, + "name": "Brighton" + }, + "geonames_id": 2654710 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "ProgHist" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Programming Historian" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "ProgHist Ltd." + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05cbswh22.json b/test-v2-csv-new/new/05cbswh22.json new file mode 100644 index 000000000..d8f966a25 --- /dev/null +++ b/test-v2-csv-new/new/05cbswh22.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2022, + "external_ids": [ + { + "all": [ + "Q115681745" + ], + "preferred": "Q115681745", + "type": "wikidata" + } + ], + "id": "https://ror.org/05cbswh22", + "links": [ + { + "type": "website", + "value": "https://thoth.pub" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.2, + "lng": 0.11667, + "name": "Cambridge" + }, + "geonames_id": 2653941 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Thoth" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Thoth Open Metadata" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05cx7sg30.json b/test-v2-csv-new/new/05cx7sg30.json new file mode 100644 index 000000000..584ba88f6 --- /dev/null +++ b/test-v2-csv-new/new/05cx7sg30.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/05cx7sg30", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/nebraska-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.8, + "lng": -96.66696, + "name": "Lincoln" + }, + "geonames_id": 5072006 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Nebraska Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Nebraska Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Nebraska Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Nebraska Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05djy4m24.json b/test-v2-csv-new/new/05djy4m24.json new file mode 100644 index 000000000..d6c2f7f9d --- /dev/null +++ b/test-v2-csv-new/new/05djy4m24.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/05djy4m24", + "links": [ + { + "type": "website", + "value": "https://ecodiv.univ-rouen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.46307, + "lng": 1.09364, + "name": "Mont-Saint-Aignan" + }, + "geonames_id": 2992003 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ECODIV" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Etude et Compréhension de la biodiversité" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05dy6qa50.json b/test-v2-csv-new/new/05dy6qa50.json new file mode 100644 index 000000000..f2ede4ca4 --- /dev/null +++ b/test-v2-csv-new/new/05dy6qa50.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1946, + "external_ids": [ + { + "all": [ + "0000 0001 0943 6810" + ], + "preferred": "0000 0001 0943 6810", + "type": "isni" + }, + { + "all": [ + "Q2515136" + ], + "preferred": "Q2515136", + "type": "wikidata" + } + ], + "id": "https://ror.org/05dy6qa50", + "links": [ + { + "type": "website", + "value": "https://voeb-b.at" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Vereinigung_%C3%96sterreichischer_Bibliothekarinnen_und_Bibliothekare" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.20849, + "lng": 16.37208, + "name": "Vienna" + }, + "geonames_id": 2761369 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "VÖB" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Association of Austrian Librarians" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Vereinigung Österreichischer Bibliothekarinnen und Bibliothekare" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05ekydy39.json b/test-v2-csv-new/new/05ekydy39.json new file mode 100644 index 000000000..be8d4d6d5 --- /dev/null +++ b/test-v2-csv-new/new/05ekydy39.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1996, + "external_ids": [ + { + "all": [ + "0000 0001 0738 1393" + ], + "preferred": "0000 0001 0738 1393", + "type": "isni" + }, + { + "all": [ + "Q24943800" + ], + "preferred": "Q24943800", + "type": "wikidata" + } + ], + "id": "https://ror.org/05ekydy39", + "links": [ + { + "type": "website", + "value": "https://www.larramendi.es/fundacion/inicio/" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Fundaci%C3%B3n_Ignacio_Larramendi" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + }, + "geonames_id": 3117735 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "FIL" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Fundación Larramendi" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Ignacio Larramendi Foundation" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Fundación Ignacio Larramendi" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05fghfs42.json b/test-v2-csv-new/new/05fghfs42.json new file mode 100644 index 000000000..a000f43f3 --- /dev/null +++ b/test-v2-csv-new/new/05fghfs42.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2017, + "external_ids": [ + { + "all": [ + "Q50970689" + ], + "preferred": "Q50970689", + "type": "wikidata" + } + ], + "id": "https://ror.org/05fghfs42", + "links": [ + { + "type": "website", + "value": "https://www.aade.gr" + }, + { + "type": "wikipedia", + "value": "https://el.wikipedia.org/wiki/%CE%91%CE%BD%CE%B5%CE%BE%CE%AC%CF%81%CF%84%CE%B7%CF%84%CE%B7_%CE%91%CF%81%CF%87%CE%AE_%CE%94%CE%B7%CE%BC%CE%BF%CF%83%CE%AF%CF%89%CE%BD_%CE%95%CF%83%CF%8C%CE%B4%CF%89%CE%BD" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GR", + "country_name": "Greece", + "lat": 37.98376, + "lng": 23.72784, + "name": "Athens" + }, + "geonames_id": 264371 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IAPR" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ΑΑΔΕ" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Ανεξάρτητη Αρχή Δημοσίων Εσόδω" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Independent Authority for Public Revenue" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05j15q332.json b/test-v2-csv-new/new/05j15q332.json new file mode 100644 index 000000000..f4bb01060 --- /dev/null +++ b/test-v2-csv-new/new/05j15q332.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "5.011E+11" + ], + "preferred": "5.011E+11", + "type": "fundref" + } + ], + "id": "https://ror.org/05j15q332", + "links": [ + { + "type": "website", + "value": "https://sklnst.bupt.edu.cn" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + }, + "geonames_id": 1816670 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "State Key Lab of Networking and Switching Technology" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "网络与交换技术国家重点实验室" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "State Key Laboratory of Networking and Switching Technology" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05jas8k28.json b/test-v2-csv-new/new/05jas8k28.json new file mode 100644 index 000000000..c159b7a8d --- /dev/null +++ b/test-v2-csv-new/new/05jas8k28.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/05jas8k28", + "links": [ + { + "type": "website", + "value": "https://loct.sjtu.edu.cn" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.22222, + "lng": 121.45806, + "name": "Shanghai" + }, + "geonames_id": 1796236 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "State Key Lab of Advanced Optical Communication Systems and Networks" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "区域光纤通信网与新型光通信系统国家重点实验室" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "State Key Laboratory of Advanced Optical Communication Systems and Networks" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05jjhqh31.json b/test-v2-csv-new/new/05jjhqh31.json new file mode 100644 index 000000000..2fe480ad5 --- /dev/null +++ b/test-v2-csv-new/new/05jjhqh31.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2013, + "external_ids": [], + "id": "https://ror.org/05jjhqh31", + "links": [ + { + "type": "website", + "value": "https://tplondon.com" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.42519, + "lng": -2.32443, + "name": "Sale" + }, + "geonames_id": 2638678 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "TPL" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "TP London" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Transnational Press London" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05jtjzq97.json b/test-v2-csv-new/new/05jtjzq97.json new file mode 100644 index 000000000..dc2ea2267 --- /dev/null +++ b/test-v2-csv-new/new/05jtjzq97.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "5.011E+11" + ], + "preferred": "5.011E+11", + "type": "fundref" + } + ], + "id": "https://ror.org/05jtjzq97", + "links": [ + { + "type": "website", + "value": "http://skltgb.caf.ac.cn" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + }, + "geonames_id": 1816670 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "State Key Lab of Tree Genetics and Breeding" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "林木遗传育种国家重点实验室" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "State Key Laboratory of Tree Genetics and Breeding" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05kcxmr49.json b/test-v2-csv-new/new/05kcxmr49.json new file mode 100644 index 000000000..2fbb3ea3b --- /dev/null +++ b/test-v2-csv-new/new/05kcxmr49.json @@ -0,0 +1,55 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/05kcxmr49", + "links": [ + { + "type": "website", + "value": "https://lasta.univ-rouen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.44313, + "lng": 1.09932, + "name": "Rouen" + }, + "geonames_id": 2982652 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LASTA" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratoire d'Analyse des Sociétés, Transformations et Adaptations" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05m1xz005.json b/test-v2-csv-new/new/05m1xz005.json new file mode 100644 index 000000000..1322630f7 --- /dev/null +++ b/test-v2-csv-new/new/05m1xz005.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/05m1xz005", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/virginia-and-west-virginia-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.55376, + "lng": -77.46026, + "name": "Richmond" + }, + "geonames_id": 4781708 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Virginia and West Virginia Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Virginia and West Virginia Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Virginia and West Virginia Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Virginia and West Virginia Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05m241684.json b/test-v2-csv-new/new/05m241684.json new file mode 100644 index 000000000..0f559413c --- /dev/null +++ b/test-v2-csv-new/new/05m241684.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1997, + "external_ids": [], + "id": "https://ror.org/05m241684", + "links": [ + { + "type": "website", + "value": "https://www.globusetlocus.org" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + }, + "geonames_id": 3173435 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "GL" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Association Globus et Locus" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Globus et Locus" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05m9pwy23.json b/test-v2-csv-new/new/05m9pwy23.json new file mode 100644 index 000000000..74a562194 --- /dev/null +++ b/test-v2-csv-new/new/05m9pwy23.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [], + "id": "https://ror.org/05m9pwy23", + "links": [ + { + "type": "website", + "value": "https://cr2ti.univ-nantes.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 47.21725, + "lng": -1.55336, + "name": "Nantes" + }, + "geonames_id": 2990969 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CR2TI" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratoire CR2TI" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Centre de Recherche en Transplantation et Immunologie" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Center for Research in Transplantation and Translational Immunology" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05mawn158.json b/test-v2-csv-new/new/05mawn158.json new file mode 100644 index 000000000..865c80f2c --- /dev/null +++ b/test-v2-csv-new/new/05mawn158.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/05mawn158", + "links": [ + { + "type": "website", + "value": "https://ageu.edu.kz" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "KZ", + "country_name": "Kazakhstan", + "lat": 43.25, + "lng": 76.91667, + "name": "Almaty" + }, + "geonames_id": 1526384 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "AHEU" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "АГЭУ" + }, + { + "lang": "ru", + "types": [ + "label" + ], + "value": "Алматинский гуманитарно-экономический университет" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Almaty Humanitarian-Economic University" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05nrxe824.json b/test-v2-csv-new/new/05nrxe824.json new file mode 100644 index 000000000..add50aa27 --- /dev/null +++ b/test-v2-csv-new/new/05nrxe824.json @@ -0,0 +1,72 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1981, + "external_ids": [ + { + "all": [ + "5.011E+11" + ], + "preferred": "5.011E+11", + "type": "fundref" + }, + { + "all": [ + "0000 0001 0680 3929" + ], + "preferred": "0000 0001 0680 3929", + "type": "isni" + } + ], + "id": "https://ror.org/05nrxe824", + "links": [], + "locations": [ + { + "geonames_details": { + "country_code": "LK", + "country_name": "Sri Lanka", + "lat": 6.93548, + "lng": 79.84868, + "name": "Colombo" + }, + "geonames_id": 1248991 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NARESA" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Natural Resources, Energy & Science Authority of Sri Lanka" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Natural Resources, Energy and Science Authority of Sri Lanka" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05rjry011.json b/test-v2-csv-new/new/05rjry011.json new file mode 100644 index 000000000..40ef4c888 --- /dev/null +++ b/test-v2-csv-new/new/05rjry011.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/05rjry011", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/western-fisheries-research-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 47.60621, + "lng": -122.33207, + "name": "Seattle" + }, + "geonames_id": 5809844 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Western Fisheries Research Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Western Fisheries Research Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Western Fisheries Research Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Western Fisheries Research Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05tnnr520.json b/test-v2-csv-new/new/05tnnr520.json new file mode 100644 index 000000000..3705aa241 --- /dev/null +++ b/test-v2-csv-new/new/05tnnr520.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1969, + "external_ids": [ + { + "all": [ + "0000 0004 7772 6184" + ], + "preferred": "0000 0004 7772 6184", + "type": "isni" + }, + { + "all": [ + "Q115626711" + ], + "preferred": "Q115626711", + "type": "wikidata" + } + ], + "id": "https://ror.org/05tnnr520", + "links": [ + { + "type": "website", + "value": "https://www.bilnas.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/British_Institute_for_Libyan_and_Northern_African_Studies" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BILNAS" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Society for Libyan Studies" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "British Institute for Libyan and Northern African Studies" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05vxke666.json b/test-v2-csv-new/new/05vxke666.json new file mode 100644 index 000000000..c08424933 --- /dev/null +++ b/test-v2-csv-new/new/05vxke666.json @@ -0,0 +1,78 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0512 4010" + ], + "preferred": "0000 0004 0512 4010", + "type": "isni" + } + ], + "id": "https://ror.org/05vxke666", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/new-york-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.72841, + "lng": -73.69179, + "name": "Troy" + }, + "geonames_id": 5141502 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS New York Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey New York Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey New York Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "New York Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05w25hv22.json b/test-v2-csv-new/new/05w25hv22.json new file mode 100644 index 000000000..224b02307 --- /dev/null +++ b/test-v2-csv-new/new/05w25hv22.json @@ -0,0 +1,62 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/05w25hv22", + "links": [ + { + "type": "website", + "value": "https://biotargen.unicaen.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.18585, + "lng": -0.35912, + "name": "Caen" + }, + "geonames_id": 3029241 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "BioTARGen" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratoire BioTARGen" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Biologie, Génétique et Thérapies ostéoArticulaires et Respiratoires" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05w521w69.json b/test-v2-csv-new/new/05w521w69.json new file mode 100644 index 000000000..b28c4fa45 --- /dev/null +++ b/test-v2-csv-new/new/05w521w69.json @@ -0,0 +1,91 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "Q51781830" + ], + "preferred": "Q51781830", + "type": "wikidata" + } + ], + "id": "https://ror.org/05w521w69", + "links": [ + { + "type": "website", + "value": "https://lmah.univ-lehavre.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.49346, + "lng": 0.10785, + "name": "Le Havre" + }, + "geonames_id": 3003796 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LMAH" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Applied Mathematics Laboratory of Le Havre" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratory of Applied Mathematics of Le Havre" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "LMAH Le Havre" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Laboratoire LMAH" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Laboratoire de Mathématiques Appliquées du Havre" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05wapsx30.json b/test-v2-csv-new/new/05wapsx30.json new file mode 100644 index 000000000..b2cf8687f --- /dev/null +++ b/test-v2-csv-new/new/05wapsx30.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [], + "id": "https://ror.org/05wapsx30", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/idaho-water-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.6135, + "lng": -116.20345, + "name": "Boise" + }, + "geonames_id": 5586437 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Idaho Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Idaho Water Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Idaho Water Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Idaho Water Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/test-v2-csv-new/new/05ypjx508.json b/test-v2-csv-new/new/05ypjx508.json new file mode 100644 index 000000000..99b5e0c5f --- /dev/null +++ b/test-v2-csv-new/new/05ypjx508.json @@ -0,0 +1,92 @@ +{ + "admin": { + "created": { + "date": "2024-03-06", + "schema_version": "2.0" + }, + "last_modified": { + "date": "2024-03-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 2234 5518" + ], + "preferred": "0000 0001 2234 5518", + "type": "isni" + } + ], + "id": "https://ror.org/05ypjx508", + "links": [ + { + "type": "website", + "value": "https://www.usgs.gov/centers/fort-collins-science-center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.58526, + "lng": -105.08442, + "name": "Fort Collins" + }, + "geonames_id": 5577147 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "FORT" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USGS FORT" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "USGS Fort Collins Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Geological Survey Fort Collins Science Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Geological Survey Fort Collins Science Center" + }, + { + "lang": null, + "types": [ + "ror_display" + ], + "value": "Fort Collins Science Center" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government", + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/0000n5x09.json b/v1.43/0000n5x09.json new file mode 100644 index 000000000..01b0ec315 --- /dev/null +++ b/v1.43/0000n5x09.json @@ -0,0 +1,99 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0373 6662" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "grid.463886.7" + ], + "preferred": "grid.463886.7", + "type": "grid" + } + ], + "id": "https://ror.org/0000n5x09", + "links": [ + { + "type": "website", + "value": "http://umr-iate.cirad.fr/en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Agropolymerpolymer Engineering and Emerging Technologies" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Ingénierie des Agropolymères et Technologies Emergentes" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IATE" + } + ], + "relationships": [ + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "parent", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/0008vp155.json b/v1.43/0008vp155.json new file mode 100644 index 000000000..9ddf91f88 --- /dev/null +++ b/v1.43/0008vp155.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2624019, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 56.37797, + "lng": 9.66065, + "name": "Bjerringbro" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0272 5010" + ], + "preferred": "0000 0005 0272 5010" + }, + { + "type": "wikidata", + "all": [ + "Q123026777" + ], + "preferred": "Q123026777" + }, + { + "type": "fundref", + "all": [ + "501100018870" + ], + "preferred": "501100018870" + } + ], + "id": "https://ror.org/0008vp155", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pdjf.dk" + } + ], + "names": [ + { + "value": "Grundfos Fond", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Poul Due Jensen Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Poul Due Jensen Fond", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Grundfos Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Grundfos (Denmark)", + "type": "child", + "id": "https://ror.org/05rdv5n40" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0009eea46.json b/v1.43/0009eea46.json new file mode 100644 index 000000000..383563774 --- /dev/null +++ b/v1.43/0009eea46.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011160" + ], + "preferred": "501100011160" + } + ], + "id": "https://ror.org/0009eea46", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://vrlab.buaa.edu.cn" + } + ], + "names": [ + { + "value": "State Key Laboratory of Virtual Reality Technology and Systems", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Virtual Reality Technology and Systems", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "虚拟现实技术国家重点实验室", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "虚拟现实技术与系统国家重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "Beihang University", + "type": "parent", + "id": "https://ror.org/00wk2mp56" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/000e0be47.json b/v1.43/000e0be47.json new file mode 100644 index 000000000..c8b61c819 --- /dev/null +++ b/v1.43/000e0be47.json @@ -0,0 +1,153 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1851, + "external_ids": [ + { + "all": [ + "100007059", + "100008250", + "100011249", + "100013826" + ], + "preferred": "100007059", + "type": "fundref" + }, + { + "all": [ + "grid.16753.36" + ], + "preferred": "grid.16753.36", + "type": "grid" + }, + { + "all": [ + "0000 0001 2299 3507" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q309350" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/000e0be47", + "links": [ + { + "type": "website", + "value": "http://www.northwestern.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Northwestern_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.04114, + "lng": -87.69006, + "name": "Evanston" + }, + "geonames_id": 4891382 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Northwestern University" + } + ], + "relationships": [ + { + "label": "Center for Light Energy Activated Redox Processes", + "type": "child", + "id": "https://ror.org/004x7d471" + }, + { + "label": "International Institute for Nanotechnology", + "type": "child", + "id": "https://ror.org/00rncr820" + }, + { + "label": "Central DuPage Hospital", + "type": "related", + "id": "https://ror.org/00g1rc256" + }, + { + "label": "Jesse Brown VA Medical Center", + "type": "related", + "id": "https://ror.org/049qtwc86" + }, + { + "label": "John H. Stroger, Jr. Hospital of Cook County", + "type": "related", + "id": "https://ror.org/05626m728" + }, + { + "label": "Lurie Children's Hospital", + "type": "related", + "id": "https://ror.org/03a6zw892" + }, + { + "label": "Northwestern Medicine Lake Forest Hospital", + "type": "related", + "id": "https://ror.org/03fhrtz10" + }, + { + "label": "Northwestern Memorial Hospital", + "type": "related", + "id": "https://ror.org/009543z50" + }, + { + "label": "Shirley Ryan AbilityLab", + "type": "related", + "id": "https://ror.org/02ja0m249" + }, + { + "label": "Northwestern University in Qatar", + "type": "related", + "id": "https://ror.org/006m74d95" + }, + { + "label": "Northwestern Medicine", + "type": "related", + "id": "https://ror.org/04fzwnh64" + }, + { + "label": "Robert H. Lurie Comprehensive Cancer Center of Northwestern University", + "type": "related", + "id": "https://ror.org/02p4far57" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/000ph9k36.json b/v1.43/000ph9k36.json new file mode 100644 index 000000000..872966e65 --- /dev/null +++ b/v1.43/000ph9k36.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1840, + "external_ids": [ + { + "all": [ + "0000 0004 0490 6520" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q43896576" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.488568.f" + ], + "preferred": "grid.488568.f", + "type": "grid" + } + ], + "id": "https://ror.org/000ph9k36", + "links": [ + { + "type": "website", + "value": "https://www.ukw.de/kinderklinik/schwerpunkte/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.79391, + "lng": 9.95121, + "name": "Würzburg" + }, + "geonames_id": 2805615 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Universitäts-Kinderklinik Würzburg" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UKW" + } + ], + "relationships": [ + { + "label": "Universitätsklinikum Würzburg", + "type": "parent", + "id": "https://ror.org/03pvr2g57" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/0015ws592.json b/v1.43/0015ws592.json new file mode 100644 index 000000000..04fc174ff --- /dev/null +++ b/v1.43/0015ws592.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 3012834, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.52894, + "lng": 7.71523, + "name": "Illkirch-Graffenstaden" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0638 2716" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.420255.4" + ], + "preferred": "grid.420255.4" + } + ], + "id": "https://ror.org/0015ws592", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.igbmc.fr" + } + ], + "names": [ + { + "value": "Institute of Genetics and Molecular and Cellular Biology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "institut de génétique et de biologie moléculaire et cellulaire", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "Centre Européen de Recherche en Biologie et en Médecine", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "IGBMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/001d55x84.json b/v1.43/001d55x84.json new file mode 100644 index 000000000..8db5693eb --- /dev/null +++ b/v1.43/001d55x84.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 4348599, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.98067, + "lng": -77.10026, + "name": "Bethesda" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8306 5685" + ], + "preferred": "0000 0004 8306 5685" + }, + { + "type": "wikidata", + "all": [ + "Q16932298" + ], + "preferred": "Q16932298" + }, + { + "type": "fundref", + "all": [ + "100015326" + ], + "preferred": "100015326" + } + ], + "id": "https://ror.org/001d55x84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://commonfund.nih.gov" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/National_Institutes_of_Health_Common_Fund" + } + ], + "names": [ + { + "value": "NIH Common Fund", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institutes of Health Common Fund", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Division of Program Coordination Planning and Strategic Initiatives", + "type": "parent", + "id": "https://ror.org/02e3wq066" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/001p3jz28.json b/v1.43/001p3jz28.json new file mode 100644 index 000000000..cbe11a5da --- /dev/null +++ b/v1.43/001p3jz28.json @@ -0,0 +1,147 @@ +{ + "locations": [ + { + "geonames_id": 1259693, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 28.36725, + "lng": 75.60352, + "name": "Pilāni" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1015 3164" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006464" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2648311" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418391.6" + ], + "preferred": "grid.418391.6" + } + ], + "id": "https://ror.org/001p3jz28", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.bits-pilani.ac.in/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Birla_Institute_of_Technology_and_Science" + } + ], + "names": [ + { + "value": "Birla Institute of Technology and Science, Pilani", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BITS Pilani", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "बिरला प्रौद्योगिकी एवं विज्ञान संस्थान", + "types": [ + "label" + ], + "lang": "hi" + }, + { + "value": "ബിർള ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് ടെക്നോളജി ആന്റ് സയൻസ്", + "types": [ + "label" + ], + "lang": "ml" + }, + { + "value": "बिर्ला इन्स्टिट्यूट ऑफ टेक्नोलॉजी अँड सायन्स", + "types": [ + "label" + ], + "lang": "mr" + }, + { + "value": "ਬਿਰਲਾ ਤਕਨਾਲੋਜੀ ਅਤੇ ਵਿਗਿਆਨ ਸੰਸਥਾ", + "types": [ + "label" + ], + "lang": "pa" + }, + { + "value": "பிர்லா தொழில்நுட்பம் மற்றும் அறிவியல் கழகம்", + "types": [ + "label" + ], + "lang": "ta" + }, + { + "value": "బిట్స్ పిలానీ", + "types": [ + "label" + ], + "lang": "te" + } + ], + "relationships": [ + { + "label": "Birla Institute of Technology and Science - Hyderabad Campus", + "type": "child", + "id": "https://ror.org/014ctt859" + }, + { + "label": "Birla Institute of Technology and Science, Pilani - Dubai Campus", + "type": "child", + "id": "https://ror.org/05jnbme07" + }, + { + "label": "Birla Institute of Technology and Science, Pilani - Goa Campus", + "type": "child", + "id": "https://ror.org/046sh6j17" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/001sezm06.json b/v1.43/001sezm06.json new file mode 100644 index 000000000..c29de83e2 --- /dev/null +++ b/v1.43/001sezm06.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 4751935, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89428, + "lng": -77.4311, + "name": "Chantilly" + } + } + ], + "established": 1944, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0421 9542" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3896512" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.456154.7" + ], + "preferred": "grid.456154.7" + } + ], + "id": "https://ror.org/001sezm06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.parsons.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Parsons_Corporation" + } + ], + "names": [ + { + "value": "Parsons (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/001w7jn25.json b/v1.43/001w7jn25.json new file mode 100644 index 000000000..2c780a796 --- /dev/null +++ b/v1.43/001w7jn25.json @@ -0,0 +1,140 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1710, + "external_ids": [ + { + "all": [ + "501100002839" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.6363.0" + ], + "preferred": "grid.6363.0", + "type": "grid" + }, + { + "all": [ + "0000 0001 2218 4662" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q162684" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/001w7jn25", + "links": [ + { + "type": "website", + "value": "https://www.charite.de/en/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Charit%C3%A9" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + }, + "geonames_id": 2950159 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Charité" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Charité - Universitätsmedizin Berlin" + } + ], + "relationships": [ + { + "label": "Berlin Institute of Health at Charité - Universitätsmedizin Berlin", + "type": "child", + "id": "https://ror.org/0493xsw21" + }, + { + "label": "Centre Virchow-Villermé", + "type": "child", + "id": "https://ror.org/03vkhr254" + }, + { + "label": "Einstein Center Digital Future", + "type": "child", + "id": "https://ror.org/0086bb350" + }, + { + "label": "Deutsches Herzzentrum der Charité", + "type": "child", + "id": "https://ror.org/01mmady97" + }, + { + "label": "Carl-Thiem-Klinikum Cottbus", + "type": "related", + "id": "https://ror.org/044fhy270" + }, + { + "label": "Freie Universität Berlin", + "type": "related", + "id": "https://ror.org/046ak2485" + }, + { + "label": "Humboldt-Universität zu Berlin", + "type": "related", + "id": "https://ror.org/01hcx6992" + }, + { + "label": "Waldkrankenhaus Protestant Hospital", + "type": "related", + "id": "https://ror.org/03afbx254" + }, + { + "label": "Wyss Institute for Biologically Inspired Engineering", + "type": "related", + "id": "https://ror.org/008cfmj78" + }, + { + "label": "Stiftung Charité", + "type": "child", + "id": "https://ror.org/016rf0n60" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/00235nr42.json b/v1.43/00235nr42.json new file mode 100644 index 000000000..297ee8b2d --- /dev/null +++ b/v1.43/00235nr42.json @@ -0,0 +1,111 @@ +{ + "locations": [ + { + "geonames_id": 3460834, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -22.42556, + "lng": -45.45278, + "name": "Itajubá" + } + } + ], + "established": 1913, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8992 4656" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006241", + "501100005673" + ], + "preferred": "501100006241" + }, + { + "type": "wikidata", + "all": [ + "Q7894372" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.440561.2" + ], + "preferred": "grid.440561.2" + } + ], + "id": "https://ror.org/00235nr42", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://unifei.edu.br" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Federal_University_of_Itajub%C3%A1" + } + ], + "names": [ + { + "value": "Universidade Federal de Itajubá", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Escola Federal de Engenharia de Itajubá", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Federal University of Itajubá", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UNIFEI", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "EFEI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/002c90p59.json b/v1.43/002c90p59.json new file mode 100644 index 000000000..c2707733c --- /dev/null +++ b/v1.43/002c90p59.json @@ -0,0 +1,72 @@ +{ + "locations": [ + { + "geonames_id": 1786657, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 38.46806, + "lng": 106.27306, + "name": "Yinchuan" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/002c90p59", + "domains": [], + "links": [], + "names": [ + { + "value": "Ningxia Forestry Research Institute Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ningxia Forestry Research Institute Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ningxia Forestry Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ningxia Forestry Research Institute Company Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "宁夏林业研究院股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/002kg1049.json b/v1.43/002kg1049.json new file mode 100644 index 000000000..148366a08 --- /dev/null +++ b/v1.43/002kg1049.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3617763, + "geonames_details": { + "country_code": "NI", + "country_name": "Nicaragua", + "lat": 12.13282, + "lng": -86.2504, + "name": "Managua" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6465 5145" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30293812" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.441310.3" + ], + "preferred": "grid.441310.3" + } + ], + "id": "https://ror.org/002kg1049", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ulam.edu.ni" + } + ], + "names": [ + { + "value": "Universidad de las Américas", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ULAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/002ty1h48.json b/v1.43/002ty1h48.json new file mode 100644 index 000000000..967be3756 --- /dev/null +++ b/v1.43/002ty1h48.json @@ -0,0 +1,106 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1960, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9029 5703" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3214506" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463726.2" + ], + "preferred": "grid.463726.2" + } + ], + "id": "https://ror.org/002ty1h48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://luli.ip-paris.fr" + } + ], + "names": [ + { + "value": "Laboratoire pour l'utilisation des lasers intenses", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory for the User of Intense Lasers", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LULI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Atomic Energy and Alternative Energies Commission", + "type": "parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "École Polytechnique", + "type": "parent", + "id": "https://ror.org/05hy3tk52" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/002v40q27.json b/v1.43/002v40q27.json new file mode 100644 index 000000000..2e3644f89 --- /dev/null +++ b/v1.43/002v40q27.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2982043, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.7326, + "lng": 2.16923, + "name": "Saclay" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30261478" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.465540.6" + ], + "preferred": "grid.465540.6" + } + ], + "id": "https://ror.org/002v40q27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://neuropsi.cnrs.fr" + } + ], + "names": [ + { + "value": "Institut des Neurosciences Paris-Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut des Neurosciences Paris Saclay", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "Paris-Saclay Institute of Neuroscience", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Neuro-PSI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/002zc3t08.json b/v1.43/002zc3t08.json new file mode 100644 index 000000000..dfa7e1f18 --- /dev/null +++ b/v1.43/002zc3t08.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0672 5780" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3152052" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462516.2" + ], + "preferred": "grid.462516.2" + } + ], + "id": "https://ror.org/002zc3t08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.imcce.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Institut_de_m%C3%A9canique_c%C3%A9leste_et_de_calcul_des_%C3%A9ph%C3%A9m%C3%A9rides" + } + ], + "names": [ + { + "value": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IMCCE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Observatoire de Paris", + "type": "parent", + "id": "https://ror.org/029nkcm90" + }, + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "University of Lille", + "type": "parent", + "id": "https://ror.org/02kzqn938" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/003vg9w96.json b/v1.43/003vg9w96.json new file mode 100644 index 000000000..42156304e --- /dev/null +++ b/v1.43/003vg9w96.json @@ -0,0 +1,766 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100022077" + ], + "preferred": "501100022077" + }, + { + "type": "wikidata", + "all": [ + "Q70571774" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.507621.7" + ], + "preferred": "grid.507621.7" + } + ], + "id": "https://ror.org/003vg9w96", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.inrae.fr/" + } + ], + "names": [ + { + "value": "National Research Institute for Agriculture, Food and Environment", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "INRAE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroResonance Platform", + "type": "child", + "id": "https://ror.org/01wzg9f04" + }, + { + "label": "Agroecology", + "type": "child", + "id": "https://ror.org/00mkad321" + }, + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Biologie Fonctionnelle Insectes et Interactions", + "type": "child", + "id": "https://ror.org/03d1jma17" + }, + { + "label": "Biologie des Oiseaux et Aviculture", + "type": "child", + "id": "https://ror.org/02y3mfk39" + }, + { + "label": "Carnot Institute Qualiment", + "type": "child", + "id": "https://ror.org/032k75171" + }, + { + "label": "Centre Bourgogne-Franche-Comté", + "type": "child", + "id": "https://ror.org/002jby155" + }, + { + "label": "Centre Bretagne-Normandie", + "type": "child", + "id": "https://ror.org/01v6wmk25" + }, + { + "label": "Centre Clermont-Auvergne-Rhône-Alpes", + "type": "child", + "id": "https://ror.org/04aqtsh50" + }, + { + "label": "Centre INRAE Grand-Est - Colmar", + "type": "child", + "id": "https://ror.org/00zg31r41" + }, + { + "label": "Centre Nouvelle Aquitaine-Bordeaux", + "type": "child", + "id": "https://ror.org/00tebkv94" + }, + { + "label": "Centre Occitanie-Montpellier", + "type": "child", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Centre Occitanie-Toulouse", + "type": "child", + "id": "https://ror.org/02sxjwh33" + }, + { + "label": "Centre Pays de la Loire", + "type": "child", + "id": "https://ror.org/020jynt45" + }, + { + "label": "Centre Provence-Alpes-Côte d'Azur", + "type": "child", + "id": "https://ror.org/03qbdej90" + }, + { + "label": "Centre Régional d’Innovation et de Transferts Technologiques des Industries du Bois", + "type": "child", + "id": "https://ror.org/016crzw98" + }, + { + "label": "Centre Val de Loire", + "type": "child", + "id": "https://ror.org/03ntmtb29" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biochimie Structurale", + "type": "child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Centre de Corse", + "type": "child", + "id": "https://ror.org/04hrbdg71" + }, + { + "label": "Centre de Recherche en Nutrition Humaine d'Auvergne", + "type": "child", + "id": "https://ror.org/03rzyjb72" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Centre Île-de-France - Jouy-en-Josas - Antony", + "type": "child", + "id": "https://ror.org/00gtg0p11" + }, + { + "label": "Centre Île-de-France - Versailles-Grignon", + "type": "child", + "id": "https://ror.org/02cbapb21" + }, + { + "label": "Dynamique des Génomes et Adaptation Microbienne", + "type": "child", + "id": "https://ror.org/01gbppd30" + }, + { + "label": "Département Alimentation Humaine", + "type": "child", + "id": "https://ror.org/00pgyqh43" + }, + { + "label": "Département Biologie et Amélioration des Plantes", + "type": "child", + "id": "https://ror.org/05r63mf91" + }, + { + "label": "Département Environnement et Agronomie", + "type": "child", + "id": "https://ror.org/01e7wth34" + }, + { + "label": "Département Mathématiques et Informatique Appliquées", + "type": "child", + "id": "https://ror.org/011emb038" + }, + { + "label": "Département Microbiologie et Chaîne Alimentaire", + "type": "child", + "id": "https://ror.org/03n4vkw74" + }, + { + "label": "Département Physiologie Animale et Systèmes d’Élevage", + "type": "child", + "id": "https://ror.org/03tpcfk14" + }, + { + "label": "Département Santé Animale", + "type": "child", + "id": "https://ror.org/024409k12" + }, + { + "label": "Département Santé des Plantes et Environnement", + "type": "child", + "id": "https://ror.org/0455v8x20" + }, + { + "label": "Département Sciences pour l’Action et le Développement", + "type": "child", + "id": "https://ror.org/03vxmn596" + }, + { + "label": "Département Sciences sociales, agriculture et alimentation, espace et environnement", + "type": "child", + "id": "https://ror.org/012221e05" + }, + { + "label": "Département Génétique Animale", + "type": "child", + "id": "https://ror.org/029xmsm82" + }, + { + "label": "Département Écologie des Forêts, Prairies et Milieux Aquatiques", + "type": "child", + "id": "https://ror.org/00yv4p972" + }, + { + "label": "Ecology of Guianan Forests", + "type": "child", + "id": "https://ror.org/04q9vef57" + }, + { + "label": "Field Observatory in Urban Hydrology", + "type": "child", + "id": "https://ror.org/05v3w8223" + }, + { + "label": "Fish Physiology and Genomics Institute", + "type": "child", + "id": "https://ror.org/04xtaw673" + }, + { + "label": "Fractionnation of AgroResources and Environment", + "type": "child", + "id": "https://ror.org/00136g547" + }, + { + "label": "Genomics and Biotechnology of the Fruits Laboratory", + "type": "child", + "id": "https://ror.org/01z0xsq42" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Grenoble Applied Economics Lab", + "type": "child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Groupe de Recherche en Droit, Économie, Gestion", + "type": "child", + "id": "https://ror.org/00rfccx09" + }, + { + "label": "Génétique Animale et Biologie Intégrative", + "type": "child", + "id": "https://ror.org/03rkgeb39" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Human Nutrition Unit", + "type": "child", + "id": "https://ror.org/003qhrc72" + }, + { + "label": "Infectiologie Animale et Santé Publique", + "type": "child", + "id": "https://ror.org/0454zjr22" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Institut Jean-Pierre Bourgin", + "type": "child", + "id": "https://ror.org/01wqd6v19" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institute for Genetics, Environment and Plant Protection", + "type": "child", + "id": "https://ror.org/038kxsm48" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institute of Mechanics and Engineering", + "type": "child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire CarMeN", + "type": "child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Biologiques et des Procédés", + "type": "child", + "id": "https://ror.org/01yypjb30" + }, + { + "label": "Laboratoire de Biotechnologie de l'Environnement", + "type": "child", + "id": "https://ror.org/022m8c549" + }, + { + "label": "Laboratoire de Génétique Cellulaire", + "type": "child", + "id": "https://ror.org/05k317v03" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire des Interactions Plantes Micro-Organismes", + "type": "child", + "id": "https://ror.org/02gwt2810" + }, + { + "label": "Laboratoire des Symbioses Tropicales et Méditerranéennes", + "type": "child", + "id": "https://ror.org/05q94pf14" + }, + { + "label": "Laboratoire Écologie Fonctionnelle et Environnement", + "type": "child", + "id": "https://ror.org/027rbaq21" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Microbial Ecology", + "type": "child", + "id": "https://ror.org/053vv7851" + }, + { + "label": "Nutrition Obesity & Risk of Thrombosis", + "type": "child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Observatoire Aquitain des Sciences de l'Univers", + "type": "child", + "id": "https://ror.org/03qma7a12" + }, + { + "label": "PhysioPathologie des Adaptations Nutritionnelles", + "type": "child", + "id": "https://ror.org/05vb5nm66" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Soil Agro and Hydrosystems Spatialization", + "type": "child", + "id": "https://ror.org/03k4s1p46" + }, + { + "label": "Stem-Cell and Brain Research Institute", + "type": "child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Stress Abiotiques et Différenciation des Végétaux Cultivés", + "type": "child", + "id": "https://ror.org/03wzth680" + }, + { + "label": "TRANSFORM", + "type": "child", + "id": "https://ror.org/00sxj6k90" + }, + { + "label": "Tropical and Mediterranean Cropping System Functioning and Management", + "type": "child", + "id": "https://ror.org/033x0mt18" + }, + { + "label": "UMR BIOdiversity, GEnes & Communities", + "type": "child", + "id": "https://ror.org/033ebya06" + }, + { + "label": "UMR Territoires", + "type": "child", + "id": "https://ror.org/026tc4g97" + }, + { + "label": "Unité Matériaux et Transformations", + "type": "child", + "id": "https://ror.org/03q99v794" + }, + { + "label": "Unité Mixte de Recherche sur les Herbivores", + "type": "child", + "id": "https://ror.org/03yvemy54" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "child", + "id": "https://ror.org/02g6y2720" + }, + { + "label": "Unité de Recherche Pluridisciplinaire Prairies et Plantes Fourragères", + "type": "child", + "id": "https://ror.org/04247y265" + }, + { + "label": "Zone Atelier Moselle", + "type": "child", + "id": "https://ror.org/016vxbe23" + }, + { + "label": "UMR Transfrontalière BioEcoAgro", + "type": "child", + "id": "https://ror.org/032v67m28" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Unité Mixte de Recherche sur les Fromages", + "type": "child", + "id": "https://ror.org/01xbd2h58" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Agri Obtentions (France)", + "type": "child", + "id": "https://ror.org/04db8q179" + }, + { + "label": "Agronomie", + "type": "child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Centre Alpin sur les Réseaux Trophiques et Ecosystèmes Lacustre", + "type": "child", + "id": "https://ror.org/037vdeb02" + }, + { + "label": "Laboratoire d'Etude des Interactions entre Sol-Agrosystème-Hydrosystème", + "type": "child", + "id": "https://ror.org/05deqk823" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "PAnTher - Physiopathologie Animale et bioThérapie du muscle et du système nerveux", + "type": "child", + "id": "https://ror.org/05vex5m10" + }, + { + "label": "Biomécanique et Pathologie Locomotrice du Cheval", + "type": "child", + "id": "https://ror.org/001rmv394" + }, + { + "label": "Infections Virales et Pathologie Comparée", + "type": "child", + "id": "https://ror.org/015a85k79" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Dynamique Musculaire et Métabolisme", + "type": "child", + "id": "https://ror.org/00xffm983" + }, + { + "label": "EMMAH - Environnement Méditerranéen et Modélisation des Agro-Hydrosystèmes", + "type": "child", + "id": "https://ror.org/048bnmc64" + }, + { + "label": "GESTE - Gestion Territoriale de l'Eau et de l'Environnement", + "type": "child", + "id": "https://ror.org/00pz29t13" + }, + { + "label": "Laboratoire d'Ecophysiologie Végétale, Agronomie & nutritions N.C.S", + "type": "child", + "id": "https://ror.org/01s4cye48" + }, + { + "label": "Laboratoire Agronomie et Environnement", + "type": "child", + "id": "https://ror.org/01dg9a450" + }, + { + "label": "Virologie", + "type": "child", + "id": "https://ror.org/0318tzh81" + }, + { + "label": "ITAP - Technologies et Méthodes pour les Agricultures de demain", + "type": "child", + "id": "https://ror.org/00ftatp57" + }, + { + "label": "Ecologie Comportementale et Biologie des Populations de Poissons", + "type": "child", + "id": "https://ror.org/02brsbg31" + }, + { + "label": "Dynamiques et écologie des paysages agriforestiers", + "type": "child", + "id": "https://ror.org/04wa4se75" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Biologie Epidémiologie et Analyse de Risque en santé animale", + "type": "child", + "id": "https://ror.org/059h64789" + }, + { + "label": "Structures et Marchés Agricoles, Ressources et Territoires", + "type": "child", + "id": "https://ror.org/04fa3ke77" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "child", + "id": "https://ror.org/00780az30" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "France Génomique", + "type": "child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "Épidémiologie des maladies Animales et zoonotiques", + "type": "child", + "id": "https://ror.org/03e04sg66" + }, + { + "label": "Unité Mixte de Recherche sur l'Ecosystème Prairial", + "type": "child", + "id": "https://ror.org/02c3c9255" + }, + { + "label": "Biodiversité, Agroécologie et Aménagement du Paysage", + "type": "child", + "id": "https://ror.org/04byv8g40" + }, + { + "label": "Biologie intégrée pour la valorisation de la diversité des arbres et de la forêt", + "type": "child", + "id": "https://ror.org/04f6qd925" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Innovations thérapeutiques et résistances", + "type": "child", + "id": "https://ror.org/01shz5j60" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Laboratoire d'Excellence TULIP", + "type": "child", + "id": "https://ror.org/03j65n394" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Unité de Recherche Agrosystèmes tropicaux", + "type": "child", + "id": "https://ror.org/00vxck708" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Paris School of Economics", + "type": "child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Etude et Compréhension de la biodiversité", + "type": "child", + "id": "https://ror.org/042w6m452" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "child", + "id": "https://ror.org/01225hq90" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/003x0zc53.json b/v1.43/003x0zc53.json new file mode 100644 index 000000000..80915532d --- /dev/null +++ b/v1.43/003x0zc53.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2023-03-30", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-03-30", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2015, + "external_ids": [ + { + "all": [ + "Q32826443" + ], + "preferred": "Q32826443", + "type": "wikidata" + }, + { + "all": [ + "501100011033" + ], + "preferred": "501100011033", + "type": "fundref" + } + ], + "id": "https://ror.org/003x0zc53", + "links": [ + { + "type": "website", + "value": "https://www.aei.gob.es/" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Agencia_Estatal_de_Investigaci%C3%B3n" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + }, + "geonames_id": 3117735 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Agencia Estatal de Investigación" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "AEI" + } + ], + "relationships": [ + { + "label": "Ministerio de Ciencia, Innovación y Universidades", + "type": "parent", + "id": "https://ror.org/05r0vyz12" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/0040z4m89.json b/v1.43/0040z4m89.json new file mode 100644 index 000000000..16a82b48d --- /dev/null +++ b/v1.43/0040z4m89.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0508 2314" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30257014" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434904.e" + ], + "preferred": "grid.434904.e" + } + ], + "id": "https://ror.org/0040z4m89", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.geocisa.com/" + } + ], + "names": [ + { + "value": "Geocisa (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "DRACE GEOCISA S.A. (Spain)", + "type": "successor", + "id": "https://ror.org/03gf4dx13" + } + ], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0048jxt15.json b/v1.43/0048jxt15.json new file mode 100644 index 000000000..fd033d446 --- /dev/null +++ b/v1.43/0048jxt15.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 3171728, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.40797, + "lng": 11.88586, + "name": "Padua" + } + } + ], + "established": 2000, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.428736.c" + ], + "preferred": "grid.428736.c" + }, + { + "type": "wikidata", + "all": [ + "Q30287361" + ], + "preferred": "Q30287361" + }, + { + "type": "isni", + "all": [ + "0000 0005 0370 449X" + ], + "preferred": "0000 0005 0370 449X" + } + ], + "id": "https://ror.org/0048jxt15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vimm.it" + } + ], + "names": [ + { + "value": "Veneto Institute of Molecular Medicine Home", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "VIMM - Veneto Institute of Molecular Medicine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Venetian Institute of Molecular Medicine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "VIMM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Fondazione Ricerca Biomedica Avanzata Onlus - VIMM", + "type": "related", + "id": "https://ror.org/03q5e6q66" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/004majf41.json b/v1.43/004majf41.json new file mode 100644 index 000000000..e05751984 --- /dev/null +++ b/v1.43/004majf41.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1818, + "external_ids": [ + { + "all": [ + "grid.257037.4" + ], + "preferred": "grid.257037.4", + "type": "grid" + }, + { + "all": [ + "Q4119316" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/004majf41", + "links": [ + { + "type": "website", + "value": "http://www2.hws.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Hobart_and_William_Smith_Colleges" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.86896, + "lng": -76.97774, + "name": "Geneva" + }, + "geonames_id": 5118398 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "HWS" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hobart and William Smith Colleges" + } + ], + "relationships": [ + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/0050cbz19.json b/v1.43/0050cbz19.json new file mode 100644 index 000000000..32fd53ded --- /dev/null +++ b/v1.43/0050cbz19.json @@ -0,0 +1,87 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1975, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51785610" + ], + "preferred": "Q51785610" + } + ], + "id": "https://ror.org/0050cbz19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www6.jouy.inrae.fr/mosar" + } + ], + "names": [ + { + "value": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Modelisation Systemique Appliquee aux Ruminants", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MoSAR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0051rme32.json b/v1.43/0051rme32.json new file mode 100644 index 000000000..40b75f5e0 --- /dev/null +++ b/v1.43/0051rme32.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 1787458, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 34.27173, + "lng": 108.07891, + "name": "Yangling" + } + } + ], + "established": 1934, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1760 4150" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100007548" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q985808" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.144022.1" + ], + "preferred": "grid.144022.1" + } + ], + "id": "https://ror.org/0051rme32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nwsuaf.edu.cn" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Northwest_A%26F_University" + } + ], + "names": [ + { + "value": "Northwest A&F University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Xīběi Nónglín Kējì Dàxué", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "西北农林科技大学", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "NWAFU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00559m198.json b/v1.43/00559m198.json new file mode 100644 index 000000000..0eb8e6cd8 --- /dev/null +++ b/v1.43/00559m198.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3113236, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.54664, + "lng": -6.59619, + "name": "Ponferrada" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424790.c" + ], + "preferred": "grid.424790.c" + } + ], + "id": "https://ror.org/00559m198", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ciuden.es" + } + ], + "names": [ + { + "value": "Fundación Ciudad de la Energía", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUDEN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/005a3p084.json b/v1.43/005a3p084.json new file mode 100644 index 000000000..cd7b259eb --- /dev/null +++ b/v1.43/005a3p084.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1966, + "external_ids": [ + { + "all": [ + "grid.411331.5" + ], + "preferred": "grid.411331.5", + "type": "grid" + }, + { + "all": [ + "0000 0004 1771 1220" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5908637" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/005a3p084", + "links": [ + { + "type": "website", + "value": "http://www.uihunsc.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Hospital_Universitario_Nuestra_Se%C3%B1ora_de_Candelaria" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 28.46824, + "lng": -16.25462, + "name": "Tenerife" + }, + "geonames_id": 2511174 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "HUNSC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hospital Universitario Nuestra Señora de Candelaria" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "University Hospital of the Nuestra Señora de Candelaria" + } + ], + "relationships": [ + { + "label": "Universidad de La Laguna", + "type": "related", + "id": "https://ror.org/01r9z8p25" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/005aghs32.json b/v1.43/005aghs32.json new file mode 100644 index 000000000..870ac9374 --- /dev/null +++ b/v1.43/005aghs32.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1846, + "external_ids": [ + { + "all": [ + "grid.264622.6" + ], + "preferred": "grid.264622.6", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 9449" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7690168" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/005aghs32", + "links": [ + { + "type": "website", + "value": "http://www.taylor.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Taylor_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.4756, + "lng": -85.49442, + "name": "Upland" + }, + "geonames_id": 4927510 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "TU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Taylor University" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/005ta0471.json b/v1.43/005ta0471.json new file mode 100644 index 000000000..471d5b284 --- /dev/null +++ b/v1.43/005ta0471.json @@ -0,0 +1,258 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1951, + "external_ids": [ + { + "all": [ + "501100004007", + "501100013168" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.6045.7" + ], + "preferred": "grid.6045.7", + "type": "grid" + }, + { + "all": [ + "0000 0004 1757 5281" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1674876" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/005ta0471", + "links": [ + { + "type": "website", + "value": "https://home.infn.it" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Istituto_Nazionale_di_Fisica_Nucleare" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 41.89193, + "lng": 12.51133, + "name": "Rome" + }, + "geonames_id": 3169070 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "INFN" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Istituto Nazionale di Fisica Nucleare" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "National Institute for Nuclear Physics" + } + ], + "relationships": [ + { + "label": "Centro Siciliano di Fisica Nucleare e di Struttura della Materia", + "type": "child", + "id": "https://ror.org/02wdzfm91" + }, + { + "label": "Galileo Galilei Institute for Theoretical Physics", + "type": "child", + "id": "https://ror.org/030ws5c69" + }, + { + "label": "Gran Sasso National Laboratory", + "type": "child", + "id": "https://ror.org/02s8k0k61" + }, + { + "label": "Gran Sasso Science Institute", + "type": "child", + "id": "https://ror.org/043qcb444" + }, + { + "label": "INFN Sezione di Bari", + "type": "child", + "id": "https://ror.org/022hq6c49" + }, + { + "label": "INFN Sezione di Bologna", + "type": "child", + "id": "https://ror.org/04j0x0h93" + }, + { + "label": "INFN Sezione di Cagliari", + "type": "child", + "id": "https://ror.org/03paz5966" + }, + { + "label": "INFN Sezione di Catania", + "type": "child", + "id": "https://ror.org/02pq29p90" + }, + { + "label": "INFN Sezione di Ferrara", + "type": "child", + "id": "https://ror.org/00zs3y046" + }, + { + "label": "INFN Sezione di Firenze", + "type": "child", + "id": "https://ror.org/02vv5y108" + }, + { + "label": "INFN Sezione di Genova", + "type": "child", + "id": "https://ror.org/02v89pq06" + }, + { + "label": "INFN Sezione di Lecce", + "type": "child", + "id": "https://ror.org/00qrf6g60" + }, + { + "label": "INFN Sezione di Milano", + "type": "child", + "id": "https://ror.org/04w4m6z96" + }, + { + "label": "INFN Sezione di Milano Bicocca", + "type": "child", + "id": "https://ror.org/03xejxm22" + }, + { + "label": "INFN Sezione di Napoli", + "type": "child", + "id": "https://ror.org/015kcdd40" + }, + { + "label": "INFN Sezione di Padova", + "type": "child", + "id": "https://ror.org/00z34yn88" + }, + { + "label": "INFN Sezione di Pavia", + "type": "child", + "id": "https://ror.org/01st30669" + }, + { + "label": "INFN Sezione di Perugia", + "type": "child", + "id": "https://ror.org/05478fx36" + }, + { + "label": "INFN Sezione di Pisa", + "type": "child", + "id": "https://ror.org/05symbg58" + }, + { + "label": "INFN Sezione di Roma I", + "type": "child", + "id": "https://ror.org/05eva6s33" + }, + { + "label": "INFN Sezione di Roma II", + "type": "child", + "id": "https://ror.org/025rrx658" + }, + { + "label": "INFN Sezione di Roma III", + "type": "child", + "id": "https://ror.org/009wnjh50" + }, + { + "label": "INFN Sezione di Torino", + "type": "child", + "id": "https://ror.org/01vj6ck58" + }, + { + "label": "INFN Sezione di Trieste", + "type": "child", + "id": "https://ror.org/05j3snm48" + }, + { + "label": "Laboratori Nazionali del Sud", + "type": "child", + "id": "https://ror.org/02k1zhm92" + }, + { + "label": "Legnaro National Laboratories", + "type": "child", + "id": "https://ror.org/025e3ct30" + }, + { + "label": "National Center for Frame Analysis", + "type": "child", + "id": "https://ror.org/001d5wc61" + }, + { + "label": "National Laboratory of Frascati", + "type": "child", + "id": "https://ror.org/049jf1a25" + }, + { + "label": "Trento Institute for Fundamental Physics and Applications", + "type": "child", + "id": "https://ror.org/00nhs3j29" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + }, + { + "label": "INFN Gruppo Collegato di Cosenza", + "type": "child", + "id": "https://ror.org/039epzh36" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/00675rp98.json b/v1.43/00675rp98.json new file mode 100644 index 000000000..87e555e06 --- /dev/null +++ b/v1.43/00675rp98.json @@ -0,0 +1,106 @@ +{ + "locations": [ + { + "geonames_id": 2538475, + "geonames_details": { + "country_code": "MA", + "country_name": "Morocco", + "lat": 34.01325, + "lng": -6.83255, + "name": "Rabat" + } + } + ], + "established": 1975, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0441 6417" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006319" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423788.2" + ], + "preferred": "grid.423788.2" + }, + { + "type": "wikidata", + "all": [ + "Q30284534" + ], + "preferred": "Q30284534" + } + ], + "id": "https://ror.org/00675rp98", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cnrst.ma" + } + ], + "names": [ + { + "value": "Centre National pour la Recherche Scientifique et Technique (CNRST)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre National pour la Recherche Scientifique et Technique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Center for Scientific and Technical Research (CNRST)", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "المركز الوطني للبحث العلمي والتقني", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "CNRST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/006e5kg04.json b/v1.43/006e5kg04.json new file mode 100644 index 000000000..ddc4dc680 --- /dev/null +++ b/v1.43/006e5kg04.json @@ -0,0 +1,130 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1834, + "external_ids": [ + { + "all": [ + "501100004418" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.8767.e" + ], + "preferred": "grid.8767.e", + "type": "grid" + }, + { + "all": [ + "0000 0001 2290 8069" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q612665" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/006e5kg04", + "links": [ + { + "type": "website", + "value": "http://www.vub.ac.be/en/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Vrije_Universiteit_Brussel" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + }, + "geonames_id": 2800866 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "VUB" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Vrije Universiteit Brussel" + } + ], + "relationships": [ + { + "label": "Interuniversity Institute for High Energies", + "type": "child", + "id": "https://ror.org/040w2dm02" + }, + { + "label": "VIB-VUB Center for Structural Biology", + "type": "child", + "id": "https://ror.org/03e84cm85" + }, + { + "label": "VIB-VUB Laboratory Myeloid Cell Immunology", + "type": "child", + "id": "https://ror.org/05y4fay10" + }, + { + "label": "Brussels School of International Studies", + "type": "related", + "id": "https://ror.org/002kn6n54" + }, + { + "label": "Centre Hospitalier Universitaire de Saint-Pierre", + "type": "related", + "id": "https://ror.org/05cmp5q80" + }, + { + "label": "Queen Fabiola Children's University Hospital", + "type": "related", + "id": "https://ror.org/01t5yh786" + }, + { + "label": "Universitair Ziekenhuis Brussel", + "type": "related", + "id": "https://ror.org/038f7y939" + }, + { + "label": "European Association for Education Law and Policy", + "type": "related", + "id": "https://ror.org/016782g02" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/006m74d95.json b/v1.43/006m74d95.json new file mode 100644 index 000000000..6d65e7aef --- /dev/null +++ b/v1.43/006m74d95.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 290030, + "geonames_details": { + "country_code": "QA", + "country_name": "Qatar", + "lat": 25.28545, + "lng": 51.53096, + "name": "Doha" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0548 1261", + "0000 0004 9474 7403" + ], + "preferred": "0000 0004 0548 1261" + }, + { + "type": "wikidata", + "all": [ + "Q890759" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.452115.6" + ], + "preferred": "grid.452115.6" + } + ], + "id": "https://ror.org/006m74d95", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.qatar.northwestern.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Northwestern_University_in_Qatar" + } + ], + "names": [ + { + "value": "Northwestern University in Qatar", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidad del noroeste", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "NU-Q", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Northwestern University", + "type": "related", + "id": "https://ror.org/000e0be47" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/007bytg49.json b/v1.43/007bytg49.json new file mode 100644 index 000000000..1102f8fb2 --- /dev/null +++ b/v1.43/007bytg49.json @@ -0,0 +1,76 @@ +{ + "locations": [ + { + "geonames_id": 683506, + "geonames_details": { + "country_code": "RO", + "country_name": "Romania", + "lat": 44.43225, + "lng": 26.10626, + "name": "Bucharest" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/007bytg49", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.acadsudest.ro" + } + ], + "names": [ + { + "value": "Institutul de Studii Sud-Est Europene", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institutul de Studii Sud-Est Europene al Academiei Române", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "The Romanian Academy’s Institute for South-East European Studies", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institute for South-East European Studies", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Romanian Academy", + "type": "parent", + "id": "https://ror.org/0561n6946" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/007sts724.json b/v1.43/007sts724.json new file mode 100644 index 000000000..fad467bc6 --- /dev/null +++ b/v1.43/007sts724.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 5454627, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.89953, + "lng": -105.96027, + "name": "Alamogordo" + } + } + ], + "established": 1958, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4650 5039" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q7010288" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.449449.0" + ], + "preferred": "grid.449449.0" + } + ], + "id": "https://ror.org/007sts724", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://alamogordo.nmsu.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/New_Mexico_State_University_Alamogordo" + } + ], + "names": [ + { + "value": "New Mexico State University Alamogordo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NMSU Alamogordo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NMSU-A", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "New Mexico State University", + "type": "parent", + "id": "https://ror.org/00hpz7z43" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/007x3c094.json b/v1.43/007x3c094.json new file mode 100644 index 000000000..71546acab --- /dev/null +++ b/v1.43/007x3c094.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1990, + "external_ids": [ + { + "all": [ + "grid.457096.9" + ], + "preferred": "grid.457096.9", + "type": "grid" + } + ], + "id": "https://ror.org/007x3c094", + "links": [ + { + "type": "website", + "value": "http://www.dr1.cnrs.fr/spip.php?article118" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.76496, + "lng": 2.3961, + "name": "Thiais" + }, + "geonames_id": 2972893 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Délégation Paris-Villejuif-03" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "DR03" + } + ], + "relationships": [ + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/007xgfy35.json b/v1.43/007xgfy35.json new file mode 100644 index 000000000..b2190d11a --- /dev/null +++ b/v1.43/007xgfy35.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 1815456, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.77359, + "lng": 119.95401, + "name": "Changzhou" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/007xgfy35", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.trinasolar.com" + } + ], + "names": [ + { + "value": "TrinaSolar Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "TrinaSolar Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TrinaSolar Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TrinaSolar", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "天合光能股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0083c5602.json b/v1.43/0083c5602.json new file mode 100644 index 000000000..1b2d4f9cd --- /dev/null +++ b/v1.43/0083c5602.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2891122, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 54.32133, + "lng": 10.13489, + "name": "Kiel" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8308 2557" + ], + "preferred": "0000 0004 8308 2557" + }, + { + "type": "fundref", + "all": [ + "501100013859" + ], + "preferred": "501100013859" + } + ], + "id": "https://ror.org/0083c5602", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.damp-stiftung.de" + } + ], + "names": [ + { + "value": "Damp Stiftung", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Damp Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Damp-Stiftung", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/008j47576.json b/v1.43/008j47576.json new file mode 100644 index 000000000..70f13aa5a --- /dev/null +++ b/v1.43/008j47576.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 202061, + "geonames_details": { + "country_code": "RW", + "country_name": "Rwanda", + "lat": -1.94995, + "lng": 30.05885, + "name": "Kigali" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q119702803" + ], + "preferred": "Q119702803" + } + ], + "id": "https://ror.org/008j47576", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mkur.ac.rw" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Mount_Kigali_University" + } + ], + "names": [ + { + "value": "Mount Kigali University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Mount Kenya University Rwanda", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MKUR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/008jep717.json b/v1.43/008jep717.json new file mode 100644 index 000000000..bb749bdb6 --- /dev/null +++ b/v1.43/008jep717.json @@ -0,0 +1,59 @@ +{ + "locations": [ + { + "geonames_id": 1049261, + "geonames_details": { + "country_code": "MZ", + "country_name": "Mozambique", + "lat": -19.11639, + "lng": 33.48333, + "name": "Chimoio" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8751 5410" + ], + "preferred": "0000 0000 8751 5410" + }, + { + "type": "wikidata", + "all": [ + "Q21485207" + ], + "preferred": "Q21485207" + } + ], + "id": "https://ror.org/008jep717", + "domains": [], + "links": [], + "names": [ + { + "value": "Instituto Agrário de Chimoio", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/008kn4z11.json b/v1.43/008kn4z11.json new file mode 100644 index 000000000..7e47ab594 --- /dev/null +++ b/v1.43/008kn4z11.json @@ -0,0 +1,115 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.457095.a" + ], + "preferred": "grid.457095.a" + } + ], + "id": "https://ror.org/008kn4z11", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iledefrance-villejuif.cnrs.fr/" + } + ], + "names": [ + { + "value": "Délégation Ile-de-France Villejuif", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DR01", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "parent", + "id": "https://ror.org/03yz3tz18" + }, + { + "label": "Architecture Urbanisme Société : Savoirs, Enseignement, Recherche", + "type": "child", + "id": "https://ror.org/0157t2j08" + }, + { + "label": "Centre de Recherche de l'Institut de Démographie de l'Université Paris 1", + "type": "child", + "id": "https://ror.org/02rv1bf67" + }, + { + "label": "Centre de Sociologie Européenne", + "type": "child", + "id": "https://ror.org/05qn0z879" + }, + { + "label": "Institut Carnot ARTS", + "type": "child", + "id": "https://ror.org/04zr5ey71" + }, + { + "label": "International College of Territorial Sciences", + "type": "child", + "id": "https://ror.org/002t9r032" + }, + { + "label": "Laboratoire d'Économie Mathématique et de Microéconomie Appliquée", + "type": "child", + "id": "https://ror.org/003ckn545" + }, + { + "label": "Population and Development Center", + "type": "child", + "id": "https://ror.org/002yg6s88" + }, + { + "label": "Research Institute on the Foundations of Computer Science", + "type": "child", + "id": "https://ror.org/02krdtz55" + }, + { + "label": "Équipe de Recherche sur l’Utilisation des Données Individuelles en Lien avec la Théorie Économique", + "type": "child", + "id": "https://ror.org/047egvh76" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/008rmbt77.json b/v1.43/008rmbt77.json new file mode 100644 index 000000000..4941c92c7 --- /dev/null +++ b/v1.43/008rmbt77.json @@ -0,0 +1,121 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1946, + "external_ids": [ + { + "all": [ + "100008451" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.264260.4" + ], + "preferred": "grid.264260.4", + "type": "grid" + }, + { + "all": [ + "0000 0001 2164 4508" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q863813" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/008rmbt77", + "links": [ + { + "type": "website", + "value": "https://www.binghamton.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Binghamton_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.09869, + "lng": -75.91797, + "name": "Binghamton" + }, + "geonames_id": 5109177 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Binghamton University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "SUNY Binghamton" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "State University of New York, Binghamton" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de Binghamton" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/008rywf59.json b/v1.43/008rywf59.json new file mode 100644 index 000000000..f6f1b3ee2 --- /dev/null +++ b/v1.43/008rywf59.json @@ -0,0 +1,114 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1961, + "external_ids": [ + { + "all": [ + "0000 0001 2169 1275" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q30255991" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.433534.6" + ], + "preferred": "grid.433534.6", + "type": "grid" + } + ], + "id": "https://ror.org/008rywf59", + "links": [ + { + "type": "website", + "value": "http://www.cefe.cnrs.fr/fr/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Centre d'Écologie Fonctionnelle et Évolutive" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CEFE" + } + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Écologie et Environnement", + "type": "parent", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Université Paul-Valéry Montpellier", + "type": "parent", + "id": "https://ror.org/00qhdy563" + }, + { + "label": "École Pratique des Hautes Études", + "type": "parent", + "id": "https://ror.org/046b3cj80" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/0090gef29.json b/v1.43/0090gef29.json new file mode 100644 index 000000000..3ed6a9e85 --- /dev/null +++ b/v1.43/0090gef29.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2016, + "external_ids": [], + "id": "https://ror.org/0090gef29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aelinfedema.org" + } + ], + "names": [ + { + "value": "Asociación Española de Linfedema", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spanish Association of Lymphedema", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "AEL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0090zs177.json b/v1.43/0090zs177.json new file mode 100644 index 000000000..3a380d5a4 --- /dev/null +++ b/v1.43/0090zs177.json @@ -0,0 +1,124 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1895, + "external_ids": [ + { + "all": [ + "100011326" + ], + "preferred": "100011326", + "type": "fundref" + }, + { + "all": [ + "grid.13063.37" + ], + "preferred": "grid.13063.37", + "type": "grid" + }, + { + "all": [ + "0000 0001 0789 5319" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q174570" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/0090zs177", + "links": [ + { + "type": "website", + "value": "http://www.lse.ac.uk/home.aspx" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/London_School_of_Economics" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LSE" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "London School of Economics" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "London School of Economics and Political Science" + }, + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Ysgol Economeg a Gwyddor Gwleidyddiaeth Llundain" + } + ], + "relationships": [ + { + "label": "Systemic Risk Centre", + "type": "child", + "id": "https://ror.org/05d88z031" + }, + { + "label": "International Growth Centre", + "type": "child", + "id": "https://ror.org/01zgm7d48" + }, + { + "label": "University of London", + "type": "parent", + "id": "https://ror.org/04cw6st05" + }, + { + "label": "Centre for Climate Change Economics and Policy", + "type": "child", + "id": "https://ror.org/03tsg3y65" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/009avj582.json b/v1.43/009avj582.json new file mode 100644 index 000000000..1b966faff --- /dev/null +++ b/v1.43/009avj582.json @@ -0,0 +1,152 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1974, + "external_ids": [ + { + "all": [ + "100006668", + "100006667", + "100007804", + "100007269" + ], + "preferred": "100006668", + "type": "fundref" + }, + { + "all": [ + "grid.5288.7" + ], + "preferred": "grid.5288.7", + "type": "grid" + }, + { + "all": [ + "0000 0000 9758 5690" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q282097" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/009avj582", + "links": [ + { + "type": "website", + "value": "http://www.ohsu.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Oregon_Health_%26_Science_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 45.52345, + "lng": -122.67621, + "name": "Portland" + }, + "geonames_id": 5746545 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "OHSU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Oregon Health & Science University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Oregon Health Sciences University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Oregon Health Sciences Center" + } + ], + "relationships": [ + { + "label": "OHSU Knight Cancer Institute", + "type": "child", + "id": "https://ror.org/002shna07" + }, + { + "label": "Doernbecher Children's Hospital", + "type": "related", + "id": "https://ror.org/049w1th24" + }, + { + "label": "Oregon Health and Science University Hospital", + "type": "related", + "id": "https://ror.org/0488bnd65" + }, + { + "label": "Oregon National Primate Research Center", + "type": "related", + "id": "https://ror.org/05fcfqq67" + }, + { + "label": "Portland VA Medical Center", + "type": "related", + "id": "https://ror.org/02v3txv81" + }, + { + "label": "Salem Hospital", + "type": "related", + "id": "https://ror.org/00rfgpg89" + }, + { + "label": "Shriners Hospitals for Children - Portland", + "type": "related", + "id": "https://ror.org/00snwj435" + }, + { + "label": "Vollum Institute", + "type": "related", + "id": "https://ror.org/054hm6j14" + }, + { + "label": "Vaccine and Gene Therapy Institute", + "type": "child", + "id": "https://ror.org/00d4pqn65" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/009q0jm69.json b/v1.43/009q0jm69.json new file mode 100644 index 000000000..b591152e8 --- /dev/null +++ b/v1.43/009q0jm69.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 5475352, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.31232, + "lng": -106.77834, + "name": "Las Cruces" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q45133446" + ], + "preferred": "Q45133446" + }, + { + "type": "fundref", + "all": [ + "100011499" + ], + "preferred": "100011499" + } + ], + "id": "https://ror.org/009q0jm69", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aes.nmsu.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/New_Mexico_State_University_Agricultural_Experiment_Station" + } + ], + "names": [ + { + "value": "Agricultural Experiment Station", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Agricultural Experiment Station, New Mexico State University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "New Mexico State University Agricultural Experiment Station", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "AES NMSU", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "NMSU AES", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "New Mexico State University", + "type": "parent", + "id": "https://ror.org/00hpz7z43" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/009xdmc59.json b/v1.43/009xdmc59.json new file mode 100644 index 000000000..97b6d0975 --- /dev/null +++ b/v1.43/009xdmc59.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 3128026, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + } + } + ], + "established": 1948, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0617 3682" + ], + "preferred": "0000 0004 0617 3682" + }, + { + "type": "wikidata", + "all": [ + "Q124670480" + ], + "preferred": "Q124670480" + } + ], + "id": "https://ror.org/009xdmc59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bam.edu.es" + } + ], + "names": [ + { + "value": "Escuela Universitaria de Magisterio Begoñako Andra Mari", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Begoñako Andra Mari Irakasleen Unibertsitate Eskola", + "types": [ + "label" + ], + "lang": "eu" + }, + { + "value": "Begoñako Andra Mari Teacher Training University College", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "BAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Universidad de Deusto", + "type": "related", + "id": "https://ror.org/00ne6sr39" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00a7bnr15.json b/v1.43/00a7bnr15.json new file mode 100644 index 000000000..7f48897e4 --- /dev/null +++ b/v1.43/00a7bnr15.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0614 8604" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434278.e" + ], + "preferred": "grid.434278.e" + } + ], + "id": "https://ror.org/00a7bnr15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fundae.es" + } + ], + "names": [ + { + "value": "Fundación Tripartita para la Formación en el Empleo", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00ae7jd04.json b/v1.43/00ae7jd04.json new file mode 100644 index 000000000..58e8e7d4a --- /dev/null +++ b/v1.43/00ae7jd04.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1944, + "external_ids": [ + { + "all": [ + "100004421" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.431778.e" + ], + "preferred": "grid.431778.e", + "type": "grid" + }, + { + "all": [ + "0000 0004 0482 9086" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7164" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00ae7jd04", + "links": [ + { + "type": "website", + "value": "http://www.worldbank.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/World_Bank" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + }, + "geonames_id": 4140963 + } + ], + "names": [ + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Banque Mondiale" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "World Bank" + } + ], + "relationships": [ + { + "label": "World Bank Group", + "type": "parent", + "id": "https://ror.org/02md09461" + }, + { + "label": "Special Programme for Research and Training in Tropical Diseases", + "type": "child", + "id": "https://ror.org/046j7pv84" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/v1.43/00ajjta07.json b/v1.43/00ajjta07.json new file mode 100644 index 000000000..8b51e2cc6 --- /dev/null +++ b/v1.43/00ajjta07.json @@ -0,0 +1,111 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51784779" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503243.3" + ], + "preferred": "grid.503243.3" + } + ], + "id": "https://ror.org/00ajjta07", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ips2.u-psud.fr" + } + ], + "names": [ + { + "value": "Institut des Sciences des Plantes de Paris Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Paris Saclay Institute of Plant Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institute of Plant Sciences of Paris Saclay", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IPS2", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Université Paris Cité", + "type": "parent", + "id": "https://ror.org/05f82e368" + }, + { + "label": "University of Évry Val d'Essonne", + "type": "parent", + "id": "https://ror.org/00e96v939" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00ayhx656.json b/v1.43/00ayhx656.json new file mode 100644 index 000000000..46e846a75 --- /dev/null +++ b/v1.43/00ayhx656.json @@ -0,0 +1,120 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-04-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1961, + "external_ids": [ + { + "all": [ + "501100000838" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.12082.39" + ], + "preferred": "grid.12082.39", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 7590" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1161297" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00ayhx656", + "links": [ + { + "type": "website", + "value": "http://www.sussex.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Sussex" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.82838, + "lng": -0.13947, + "name": "Brighton" + }, + "geonames_id": 2654710 + } + ], + "names": [ + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Prifysgol Sussex" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Sussex" + } + ], + "relationships": [ + { + "label": "Brighton and Sussex Medical School", + "type": "child", + "id": "https://ror.org/01qz7fr76" + }, + { + "label": "Brighton General Hospital", + "type": "related", + "id": "https://ror.org/04dns5t03" + }, + { + "label": "Institute of Development Studies", + "type": "related", + "id": "https://ror.org/0288jxv49" + }, + { + "label": "Princess Royal Hospital", + "type": "related", + "id": "https://ror.org/0573ts924" + }, + { + "label": "Royal Sussex County Hospital", + "type": "related", + "id": "https://ror.org/05fe2n505" + }, + { + "label": "Centre on Innovation and Energy Demand", + "type": "child", + "id": "https://ror.org/00g1jn849" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00b67z867.json b/v1.43/00b67z867.json new file mode 100644 index 000000000..3b9b4cc96 --- /dev/null +++ b/v1.43/00b67z867.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2038180, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 43.88, + "lng": 125.32278, + "name": "Changchun" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011234" + ], + "preferred": "501100011234" + } + ], + "id": "https://ror.org/00b67z867", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ascl.jlu.edu.cn" + } + ], + "names": [ + { + "value": "State Key Laboratory of Automotive Simulation and Control", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Automotive Simulation and Control", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Laboratory of Automobile Simulation and Control", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Lab of Automobile Simulation and Control", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "汽车动态模拟国家重点实验室", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "汽车仿真与控制国家重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "Jilin University", + "type": "parent", + "id": "https://ror.org/00js3aw79" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00b80ez59.json b/v1.43/00b80ez59.json new file mode 100644 index 000000000..5c99dceac --- /dev/null +++ b/v1.43/00b80ez59.json @@ -0,0 +1,97 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.503166.7" + ], + "preferred": "grid.503166.7", + "type": "grid" + } + ], + "id": "https://ror.org/00b80ez59", + "links": [ + { + "type": "website", + "value": "http://www.umr-ecosols.fr/en/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Functional Ecology and Biogeochemistry of Soils and Agrosystems" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Eco & Sols" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes" + } + ], + "relationships": [ + { + "label": "Centre Occitanie-Montpellier", + "type": "parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/00b88za07.json b/v1.43/00b88za07.json new file mode 100644 index 000000000..9a05beb17 --- /dev/null +++ b/v1.43/00b88za07.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0823 8812" + ], + "preferred": "0000 0001 0823 8812" + } + ], + "id": "https://ror.org/00b88za07", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iris-recherche.qc.ca" + } + ], + "names": [ + { + "value": "Institut de recherche et d’informations socioéconomiques", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IRIS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00bb4nn95.json b/v1.43/00bb4nn95.json new file mode 100644 index 000000000..b91c63591 --- /dev/null +++ b/v1.43/00bb4nn95.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": 2021, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q108542422" + ], + "preferred": "Q108542422" + } + ], + "id": "https://ror.org/00bb4nn95", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nfdi4datascience.de" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/NFDI4DataScience" + } + ], + "names": [ + { + "value": "NFDI4DS", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NFDI4DataScience", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NFDI for Data Science and Artificial Intelligence", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "parent", + "id": "https://ror.org/05qj6w324" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00bep5t26.json b/v1.43/00bep5t26.json new file mode 100644 index 000000000..97e5b0e8f --- /dev/null +++ b/v1.43/00bep5t26.json @@ -0,0 +1,110 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1907, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2291 9040" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1200925" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462577.5" + ], + "preferred": "grid.462577.5" + } + ], + "id": "https://ror.org/00bep5t26", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bnc.cat" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/National_Library_of_Catalonia" + } + ], + "names": [ + { + "value": "National Library of Catalonia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Bibliotèca de Catalonha", + "types": [ + "label" + ], + "lang": "oc" + }, + { + "value": "Biblioteca de Catalunya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Kataluniako Liburutegia", + "types": [ + "label" + ], + "lang": "eu" + }, + { + "value": "Biblioteca de Catalunya", + "types": [ + "label" + ], + "lang": "gl" + }, + { + "value": "Biblioteca de Cataluña", + "types": [ + "label" + ], + "lang": "es" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00bgk9508.json b/v1.43/00bgk9508.json new file mode 100644 index 000000000..5fc81e868 --- /dev/null +++ b/v1.43/00bgk9508.json @@ -0,0 +1,107 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1859, + "external_ids": [ + { + "all": [ + "100013000" + ], + "preferred": "100013000", + "type": "fundref" + }, + { + "all": [ + "grid.4800.c" + ], + "preferred": "grid.4800.c", + "type": "grid" + }, + { + "all": [ + "0000 0004 1937 0343" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q392897" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00bgk9508", + "links": [ + { + "type": "website", + "value": "http://www.polito.it/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Polytechnic_University_of_Turin" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.07049, + "lng": 7.68682, + "name": "Turin" + }, + "geonames_id": 3165524 + } + ], + "names": [ + { + "lang": "it", + "types": [ + "label" + ], + "value": "Politecnico di Torino" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Polytechnic University of Turin" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "École Polytechnique de Turin" + } + ], + "relationships": [ + { + "label": "Institute for Complex Systems", + "type": "related", + "id": "https://ror.org/05rcgef49" + }, + { + "label": "NODES S.c.a.r.l", + "type": "related", + "id": "https://ror.org/04hp1ky92" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00brnhb09.json b/v1.43/00brnhb09.json new file mode 100644 index 000000000..e850e54a3 --- /dev/null +++ b/v1.43/00brnhb09.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5889745, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 49.21679, + "lng": -68.14894, + "name": "Baie-Comeau" + } + } + ], + "established": 1946, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8062 3186" + ], + "preferred": "0000 0004 8062 3186" + } + ], + "id": "https://ror.org/00brnhb09", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cisss-cotenord.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de la Côte-Nord", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de la Côte-Nord", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00bsxeq86.json b/v1.43/00bsxeq86.json new file mode 100644 index 000000000..f9bace96a --- /dev/null +++ b/v1.43/00bsxeq86.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 3054643, + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 47.49835, + "lng": 19.04045, + "name": "Budapest" + } + } + ], + "established": 2008, + "external_ids": [], + "id": "https://ror.org/00bsxeq86", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://syreon.eu" + } + ], + "names": [ + { + "value": "Syreon Research Institute (Hungary)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Syreon Research Institute", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00bv2aa44.json b/v1.43/00bv2aa44.json new file mode 100644 index 000000000..09102f04d --- /dev/null +++ b/v1.43/00bv2aa44.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 4355843, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.14344, + "lng": -77.20137, + "name": "Gaithersburg" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011016" + ], + "preferred": "501100011016" + }, + { + "type": "grid", + "all": [ + "grid.511415.5" + ], + "preferred": "grid.511415.5" + } + ], + "id": "https://ror.org/00bv2aa44", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.stcube.com/" + } + ], + "names": [ + { + "value": "STCube (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "STCube Pharmaceuticals", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "STCube Pharmaceuticals, Inc.", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00by1q217.json b/v1.43/00by1q217.json new file mode 100644 index 000000000..db68ef38a --- /dev/null +++ b/v1.43/00by1q217.json @@ -0,0 +1,266 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-08-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1896, + "external_ids": [ + { + "all": [ + "100004337", + "100007013" + ], + "preferred": "100004337", + "type": "fundref" + }, + { + "all": [ + "grid.417570.0" + ], + "preferred": "grid.417570.0", + "type": "grid" + }, + { + "all": [ + "0000 0004 0374 1269" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q212646" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00by1q217", + "links": [ + { + "type": "website", + "value": "http://www.roche.ch/en/index.htm" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Hoffmann-La_Roche" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 47.55839, + "lng": 7.57327, + "name": "Basel" + }, + "geonames_id": 2661604 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Hoffmann-La Roche" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Roche (Switzerland)" + } + ], + "relationships": [ + { + "label": "Roche (Austria)", + "type": "child", + "id": "https://ror.org/03cwbzb16" + }, + { + "label": "Roche (Belgium)", + "type": "child", + "id": "https://ror.org/00e65d634" + }, + { + "label": "Roche (Bolivia)", + "type": "child", + "id": "https://ror.org/05c66m157" + }, + { + "label": "Roche (Bosnia-Herzegovina)", + "type": "child", + "id": "https://ror.org/04gbzz966" + }, + { + "label": "Roche (Canada)", + "type": "child", + "id": "https://ror.org/006hrz834" + }, + { + "label": "Roche (Chile)", + "type": "child", + "id": "https://ror.org/050q8cm26" + }, + { + "label": "Roche (China)", + "type": "child", + "id": "https://ror.org/02hv5e369" + }, + { + "label": "Roche (Czechia)", + "type": "child", + "id": "https://ror.org/01hyc1n91" + }, + { + "label": "Roche (Denmark)", + "type": "child", + "id": "https://ror.org/04seaqh41" + }, + { + "label": "Roche (Ecuador)", + "type": "child", + "id": "https://ror.org/03836m928" + }, + { + "label": "Roche (Estonia)", + "type": "child", + "id": "https://ror.org/013js5t03" + }, + { + "label": "Roche (Finland)", + "type": "child", + "id": "https://ror.org/00awvt671" + }, + { + "label": "Roche (France)", + "type": "child", + "id": "https://ror.org/01mqmer16" + }, + { + "label": "Roche Pharma AG (Germany)", + "type": "child", + "id": "https://ror.org/00sh68184" + }, + { + "label": "Roche (Greece)", + "type": "child", + "id": "https://ror.org/0392c7938" + }, + { + "label": "Roche (Hungary)", + "type": "child", + "id": "https://ror.org/02ta1jp69" + }, + { + "label": "Roche (India)", + "type": "child", + "id": "https://ror.org/005bzjd21" + }, + { + "label": "Roche (Ireland)", + "type": "child", + "id": "https://ror.org/0152gf261" + }, + { + "label": "Roche (Israel)", + "type": "child", + "id": "https://ror.org/05sy11p04" + }, + { + "label": "Roche (Italy)", + "type": "child", + "id": "https://ror.org/01x544h30" + }, + { + "label": "Roche (Japan)", + "type": "child", + "id": "https://ror.org/01vepzj85" + }, + { + "label": "Roche (Lebanon)", + "type": "child", + "id": "https://ror.org/05cpg6260" + }, + { + "label": "Roche (Netherlands)", + "type": "child", + "id": "https://ror.org/01gcg9888" + }, + { + "label": "Roche (Nicaragua)", + "type": "child", + "id": "https://ror.org/03jg7pr54" + }, + { + "label": "Roche (Norway)", + "type": "child", + "id": "https://ror.org/05v9ym429" + }, + { + "label": "Roche (Portugal)", + "type": "child", + "id": "https://ror.org/04zt79h83" + }, + { + "label": "Roche (Romania)", + "type": "child", + "id": "https://ror.org/04qr62034" + }, + { + "label": "Roche (South Korea)", + "type": "child", + "id": "https://ror.org/030nky627" + }, + { + "label": "Roche (Spain)", + "type": "child", + "id": "https://ror.org/04b8zcj45" + }, + { + "label": "Roche (Sweden)", + "type": "child", + "id": "https://ror.org/055rf7657" + }, + { + "label": "Roche (Tunisia)", + "type": "child", + "id": "https://ror.org/02tnr6p29" + }, + { + "label": "Roche (Turkey)", + "type": "child", + "id": "https://ror.org/05h9m3b45" + }, + { + "label": "Roche (United Kingdom)", + "type": "child", + "id": "https://ror.org/024tgbv41" + }, + { + "label": "Roche (United States)", + "type": "child", + "id": "https://ror.org/011qkaj49" + }, + { + "label": "Foundation Medicine (United States)", + "type": "child", + "id": "https://ror.org/02ackr434" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/00c746491.json b/v1.43/00c746491.json new file mode 100644 index 000000000..4d39f9e71 --- /dev/null +++ b/v1.43/00c746491.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 1684308, + "geonames_details": { + "country_code": "PH", + "country_name": "Philippines", + "lat": 14.5243, + "lng": 121.0792, + "name": "Taguig" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7777 4717" + ], + "preferred": "0000 0004 7777 4717" + }, + { + "type": "wikidata", + "all": [ + "Q114556703" + ], + "preferred": "Q114556703" + }, + { + "type": "fundref", + "all": [ + "501100010217" + ], + "preferred": "501100010217" + } + ], + "id": "https://ror.org/00c746491", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://nrcp.dost.gov.ph" + } + ], + "names": [ + { + "value": "National Research Council of the Philippines", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Philippines National Research Council", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DOST-NRCP", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "NRCP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Department of Science and Technology", + "type": "parent", + "id": "https://ror.org/05tgxx705" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00ca2c886.json b/v1.43/00ca2c886.json new file mode 100644 index 000000000..3fb9e58e1 --- /dev/null +++ b/v1.43/00ca2c886.json @@ -0,0 +1,204 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1986, + "external_ids": [ + { + "all": [ + "0000 0000 9314 1427" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100004587" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q5918335" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.413448.e" + ], + "preferred": "grid.413448.e", + "type": "grid" + } + ], + "id": "https://ror.org/00ca2c886", + "links": [ + { + "type": "website", + "value": "http://www.isciii.es/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Carlos_III_Health_Institute" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + }, + "geonames_id": 3117735 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Instituto de Salud Carlos III" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Carlos III Health Institute" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Institute of Health Carlos III" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ISCIII" + } + ], + "relationships": [ + { + "label": "Agencia de Evaluación de Tecnologías Sanitarias", + "type": "child", + "id": "https://ror.org/05qs5k564" + }, + { + "label": "Biblioteca Nacional de Ciencias de la Salud", + "type": "child", + "id": "https://ror.org/05s16e423" + }, + { + "label": "Centro Nacional de Epidemiología", + "type": "child", + "id": "https://ror.org/01dd3fd62" + }, + { + "label": "Centro Nacional de Medicina Tropical", + "type": "child", + "id": "https://ror.org/00w603503" + }, + { + "label": "Centro Nacional de Microbiologia", + "type": "child", + "id": "https://ror.org/019ytz097" + }, + { + "label": "Centro Nacional de Sanidad Ambiental", + "type": "child", + "id": "https://ror.org/01rd4et50" + }, + { + "label": "Centro de Investigación Biomédica en Red", + "type": "child", + "id": "https://ror.org/02g87qh62" + }, + { + "label": "Centro de Investigación Biomédica en Red Diabetes y Enfermedades Metabólicas Asociadas", + "type": "child", + "id": "https://ror.org/00dwgct76" + }, + { + "label": "Centro de Investigación Biomédica en Red de Salud Mental", + "type": "child", + "id": "https://ror.org/009byq155" + }, + { + "label": "Escuela Nacional de Medicina del Trabajo", + "type": "child", + "id": "https://ror.org/00g86hk06" + }, + { + "label": "Escuela Nacional de Sanidad", + "type": "child", + "id": "https://ror.org/003xj6z62" + }, + { + "label": "Museo Nacional de Sanidad", + "type": "child", + "id": "https://ror.org/04zbc6m03" + }, + { + "label": "Red de Investigación en Sida", + "type": "child", + "id": "https://ror.org/00c77q313" + }, + { + "label": "Red de Laboratorios de Alertas Biológicas", + "type": "child", + "id": "https://ror.org/03gtv5v80" + }, + { + "label": "Spanish Clinical Research Network", + "type": "child", + "id": "https://ror.org/01yc8eq25" + }, + { + "label": "Unidad de Investigación en cuidados y servicios de salud (Investén-isciii)", + "type": "child", + "id": "https://ror.org/01qmm0x62" + }, + { + "label": "Unidad de Investigación en Salud Digital", + "type": "child", + "id": "https://ror.org/05gqmbr12" + }, + { + "label": "Unidades Centrales Científico-Técnicas", + "type": "child", + "id": "https://ror.org/01wdt4y78" + }, + { + "label": "​Unidad Funcional de Investigación de Enfermedades Crónicas", + "type": "child", + "id": "https://ror.org/04hpbsh69" + }, + { + "label": "Ministerio de Ciencia, Innovación y Universidades", + "type": "parent", + "id": "https://ror.org/05r0vyz12" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/v1.43/00carf720.json b/v1.43/00carf720.json new file mode 100644 index 000000000..7066a873f --- /dev/null +++ b/v1.43/00carf720.json @@ -0,0 +1,105 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1841, + "external_ids": [ + { + "all": [ + "501100004267" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.416075.1" + ], + "preferred": "grid.416075.1", + "type": "grid" + }, + { + "all": [ + "0000 0004 0367 1221" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7373582" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00carf720", + "links": [ + { + "type": "website", + "value": "http://www.rah.sa.gov.au/homepage.php" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Royal_Adelaide_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -34.92866, + "lng": 138.59863, + "name": "Adelaide" + }, + "geonames_id": 2078025 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "RAH" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Royal Adelaide Hospital" + } + ], + "relationships": [ + { + "label": "Hanson Institute", + "type": "related", + "id": "https://ror.org/047kx5j58" + }, + { + "label": "University of Adelaide", + "type": "related", + "id": "https://ror.org/00892tw58" + }, + { + "label": "Central Adelaide Local Health Network", + "type": "parent", + "id": "https://ror.org/02r40rn49" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/00cy6xh23.json b/v1.43/00cy6xh23.json new file mode 100644 index 000000000..94cb970a0 --- /dev/null +++ b/v1.43/00cy6xh23.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2519752, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.98567, + "lng": -0.04935, + "name": "Castellon" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q61931981" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.502340.0" + ], + "preferred": "grid.502340.0" + } + ], + "id": "https://ror.org/00cy6xh23", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.conservatorisuperiorcastello.com/" + } + ], + "names": [ + { + "value": "Conservatori Superior de Música de Castelló", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Conservatorio Superior de Música de Castellón", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CSMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00d0nc645.json b/v1.43/00d0nc645.json new file mode 100644 index 000000000..4e92b6a39 --- /dev/null +++ b/v1.43/00d0nc645.json @@ -0,0 +1,192 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-04-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1975, + "external_ids": [ + { + "all": [ + "100004318", + "100006112" + ], + "preferred": "100004318", + "type": "fundref" + }, + { + "all": [ + "grid.419815.0" + ], + "preferred": "grid.419815.0", + "type": "grid" + }, + { + "all": [ + "0000 0001 2181 3404" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2283", + "Q47462228" + ], + "preferred": "Q2283", + "type": "wikidata" + } + ], + "id": "https://ror.org/00d0nc645", + "links": [ + { + "type": "website", + "value": "https://www.microsoft.com/en-us" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Microsoft" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 47.67399, + "lng": -122.12151, + "name": "Redmond" + }, + "geonames_id": 5808079 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Microsoft (United States)" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Microsoft Corporation" + } + ], + "relationships": [ + { + "label": "LinkedIn (United States)", + "type": "child", + "id": "https://ror.org/02fyxhe35" + }, + { + "label": "Microsoft (Belgium)", + "type": "child", + "id": "https://ror.org/05168yk81" + }, + { + "label": "Microsoft (Brazil)", + "type": "child", + "id": "https://ror.org/00hc2mf91" + }, + { + "label": "Microsoft (Canada)", + "type": "child", + "id": "https://ror.org/04xhxg104" + }, + { + "label": "Microsoft (Denmark)", + "type": "child", + "id": "https://ror.org/015drfm81" + }, + { + "label": "Microsoft (Finland)", + "type": "child", + "id": "https://ror.org/01nehjf29" + }, + { + "label": "Microsoft (France)", + "type": "child", + "id": "https://ror.org/0521n7n83" + }, + { + "label": "Microsoft (Germany)", + "type": "child", + "id": "https://ror.org/001dd4s60" + }, + { + "label": "Microsoft (India)", + "type": "child", + "id": "https://ror.org/04ww0w091" + }, + { + "label": "Microsoft (Ireland)", + "type": "child", + "id": "https://ror.org/017fqk185" + }, + { + "label": "Microsoft (Israel)", + "type": "child", + "id": "https://ror.org/03819cc96" + }, + { + "label": "Microsoft (Netherlands)", + "type": "child", + "id": "https://ror.org/01x21tj82" + }, + { + "label": "Microsoft (Norway)", + "type": "child", + "id": "https://ror.org/03jtz4s80" + }, + { + "label": "Microsoft (Portugal)", + "type": "child", + "id": "https://ror.org/00eqfbw40" + }, + { + "label": "Microsoft (Switzerland)", + "type": "child", + "id": "https://ror.org/03zryq964" + }, + { + "label": "Microsoft (United Kingdom)", + "type": "child", + "id": "https://ror.org/01rw27z95" + }, + { + "label": "Microsoft Research (India)", + "type": "child", + "id": "https://ror.org/02w7f3w92" + }, + { + "label": "Microsoft Research (United Kingdom)", + "type": "child", + "id": "https://ror.org/05k87vq12" + }, + { + "label": "Microsoft Research Asia (China)", + "type": "child", + "id": "https://ror.org/0300m5276" + }, + { + "label": "Ninja Theory (United Kingdom)", + "type": "child", + "id": "https://ror.org/04xrsn650" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/00d4pqn65.json b/v1.43/00d4pqn65.json new file mode 100644 index 000000000..c6b7d1165 --- /dev/null +++ b/v1.43/00d4pqn65.json @@ -0,0 +1,90 @@ +{ + "locations": [ + { + "geonames_id": 5713376, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 45.48706, + "lng": -122.80371, + "name": "Beaverton" + } + } + ], + "established": 2001, + "external_ids": [], + "id": "https://ror.org/00d4pqn65", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ohsu.edu/vaccine-gene-therapy-institute" + } + ], + "names": [ + { + "value": "Vaccine and Gene Therapy Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Vaccine & Gene Therapy Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Oregon Health & Science University Vaccine and Gene Therapy Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OHSU Vaccine and Gene Therapy Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "VGTI", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "OHSU VGTI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Oregon Health & Science University", + "type": "parent", + "id": "https://ror.org/009avj582" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00davry38.json b/v1.43/00davry38.json new file mode 100644 index 000000000..744aa5733 --- /dev/null +++ b/v1.43/00davry38.json @@ -0,0 +1,111 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "100012725" + ], + "preferred": "100012725", + "type": "fundref" + }, + { + "all": [ + "grid.484694.3" + ], + "preferred": "grid.484694.3", + "type": "grid" + }, + { + "all": [ + "0000 0004 5988 7021" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/00davry38", + "links": [ + { + "type": "website", + "value": "http://www.tecnm.mx/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "MX", + "country_name": "Mexico", + "lat": 19.42847, + "lng": -99.12766, + "name": "Mexico City" + }, + "geonames_id": 3530597 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "National Technological Institute of Mexico" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "TecNM" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Tecnológico Nacional de México" + } + ], + "relationships": [ + { + "label": "Instituto Tecnológico de Boca del Río", + "type": "child", + "id": "https://ror.org/0302jbz39" + }, + { + "label": "Instituto Tecnológico Superior de Los Reyes", + "type": "child", + "id": "https://ror.org/05p299b07" + }, + { + "label": "Instituto Tecnológico de La Paz", + "type": "child", + "id": "https://ror.org/0460tzy11" + }, + { + "label": "Secretariat of Public Education", + "type": "parent", + "id": "https://ror.org/02e1c4h55" + }, + { + "label": "Instituto Tecnológico de San Luis Potosí", + "type": "child", + "id": "https://ror.org/04w0a0617" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/00deq0f50.json b/v1.43/00deq0f50.json new file mode 100644 index 000000000..9b43ed69e --- /dev/null +++ b/v1.43/00deq0f50.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 1649378, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -6.2349, + "lng": 106.9896, + "name": "Bekasi" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109919472" + ], + "preferred": "Q109919472" + } + ], + "id": "https://ror.org/00deq0f50", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pelitabangsa.ac.id" + } + ], + "names": [ + { + "value": "Universitas Pelita Bangsa", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Pelita Bangsa University", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00e45qp82.json b/v1.43/00e45qp82.json new file mode 100644 index 000000000..a7c353478 --- /dev/null +++ b/v1.43/00e45qp82.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 658225, + "geonames_details": { + "country_code": "FI", + "country_name": "Finland", + "lat": 60.16952, + "lng": 24.93545, + "name": "Helsinki" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6090 6859" + ], + "preferred": "0000 0004 6090 6859" + }, + { + "type": "wikidata", + "all": [ + "Q45131748" + ], + "preferred": "Q45131748" + }, + { + "type": "fundref", + "all": [ + "100010119" + ], + "preferred": "100010119" + } + ], + "id": "https://ror.org/00e45qp82", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.foundationweb.net/perklen/understod.html" + } + ], + "names": [ + { + "value": "Stiftelsen Dorothea Olivia, Karl Walter och Jarl Walter Perkléns Minne", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Dorothea Olivia, Karl Walter and Jarl Walter Perkléns Memorial Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00enf6a78.json b/v1.43/00enf6a78.json new file mode 100644 index 000000000..6a8a02284 --- /dev/null +++ b/v1.43/00enf6a78.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6115047, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 52.00017, + "lng": -71.99907, + "name": "Quebec" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 4636" + ], + "preferred": "0000 0004 4910 4636" + }, + { + "type": "wikidata", + "all": [ + "Q109018003" + ], + "preferred": "Q109018003" + } + ], + "id": "https://ror.org/00enf6a78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciusss-ouestmtl.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré universitaire de santé et de services sociaux de l'Ouest-de-l’Île-de-Montréal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUSSS de l'Ouest-de-l'Ile-de-Montréal", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00ew61678.json b/v1.43/00ew61678.json new file mode 100644 index 000000000..f05de7a75 --- /dev/null +++ b/v1.43/00ew61678.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9967 6377" + ], + "preferred": "0000 0000 9967 6377" + }, + { + "type": "wikidata", + "all": [ + "Q30274428" + ], + "preferred": "Q30274428" + }, + { + "type": "fundref", + "all": [ + "100013316" + ], + "preferred": "100013316" + } + ], + "id": "https://ror.org/00ew61678", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://serdp-estcp.mil" + } + ], + "names": [ + { + "value": "Strategic Environmental Research and Development Program", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SERDP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United States Department of Defense", + "type": "parent", + "id": "https://ror.org/0447fe631" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00f2pe266.json b/v1.43/00f2pe266.json new file mode 100644 index 000000000..5c4f00068 --- /dev/null +++ b/v1.43/00f2pe266.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 1645133, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": 1.66711, + "lng": 101.44316, + "name": "Dumai" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109912239" + ], + "preferred": "Q109912239" + } + ], + "id": "https://ror.org/00f2pe266", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iaitfdumai.ac.id" + } + ], + "names": [ + { + "value": "Institut Agama Islam Tafaqquh Fiddin Dumai", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IAITF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00f3x4340.json b/v1.43/00f3x4340.json new file mode 100644 index 000000000..53d22785f --- /dev/null +++ b/v1.43/00f3x4340.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1914, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0943 6642" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100011034" + ], + "preferred": "501100011034" + }, + { + "type": "grid", + "all": [ + "grid.410389.7" + ], + "preferred": "grid.410389.7" + } + ], + "id": "https://ror.org/00f3x4340", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ieo.es" + } + ], + "names": [ + { + "value": "Instituto Español de Oceanografía", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spanish Institute of Oceanography", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IEO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00f54p054.json b/v1.43/00f54p054.json new file mode 100644 index 000000000..3801774a9 --- /dev/null +++ b/v1.43/00f54p054.json @@ -0,0 +1,192 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1891, + "external_ids": [ + { + "all": [ + "100005492", + "100006521", + "100008643", + "100006100", + "100010866", + "100011098", + "100006598", + "100006057", + "100005575", + "100005541", + "100006382", + "100016959", + "100010864" + ], + "preferred": "100005492", + "type": "fundref" + }, + { + "all": [ + "grid.168010.e" + ], + "preferred": "grid.168010.e", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 8956" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q41506", + "Q1754977" + ], + "preferred": "Q41506", + "type": "wikidata" + } + ], + "id": "https://ror.org/00f54p054", + "links": [ + { + "type": "website", + "value": "https://www.stanford.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Stanford_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.42411, + "lng": -122.16608, + "name": "Stanford" + }, + "geonames_id": 5398563 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Leland Stanford Junior University" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Stanford University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Stanford" + } + ], + "relationships": [ + { + "label": "Brown Institute for Media Innovation", + "type": "child", + "id": "https://ror.org/02awzbn54" + }, + { + "label": "Center for Effective Global Action", + "type": "child", + "id": "https://ror.org/03djjyk45" + }, + { + "label": "Eterna Massive Open Laboratory", + "type": "child", + "id": "https://ror.org/05j5wde68" + }, + { + "label": "Kavli Institute for Particle Astrophysics and Cosmology", + "type": "child", + "id": "https://ror.org/00pwqz914" + }, + { + "label": "Max Planck Center for Visual Computing and Communication", + "type": "child", + "id": "https://ror.org/03hj69t32" + }, + { + "label": "CZ Biohub", + "type": "child", + "id": "https://ror.org/00knt4f32" + }, + { + "label": "Stanford Medicine", + "type": "child", + "id": "https://ror.org/03mtd9a03" + }, + { + "label": "Children's Hospital Central California", + "type": "child", + "id": "https://ror.org/01s3y9g58" + }, + { + "label": "SLAC National Accelerator Laboratory", + "type": "child", + "id": "https://ror.org/05gzmn429" + }, + { + "label": "Stanford Synchrotron Radiation Lightsource", + "type": "child", + "id": "https://ror.org/02vzbm991" + }, + { + "label": "Facility for Advanced Accelerator Experimental Tests-II", + "type": "child", + "id": "https://ror.org/023py8175" + }, + { + "label": "Good Samaritan Hospital", + "type": "related", + "id": "https://ror.org/03zms7281" + }, + { + "label": "Santa Clara Valley Medical Center", + "type": "related", + "id": "https://ror.org/02v7qv571" + }, + { + "label": "VA Palo Alto Health Care System", + "type": "related", + "id": "https://ror.org/00nr17z89" + }, + { + "label": "Stanford SystemX Alliance", + "type": "child", + "id": "https://ror.org/0551gkb08" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00f7n9887.json b/v1.43/00f7n9887.json new file mode 100644 index 000000000..ba897a3f7 --- /dev/null +++ b/v1.43/00f7n9887.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 448001, + "geonames_details": { + "country_code": "UG", + "country_name": "Uganda", + "lat": -0.54306, + "lng": 30.13694, + "name": "Ishaka" + } + } + ], + "established": 2020, + "external_ids": [], + "id": "https://ror.org/00f7n9887", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.spparenet.org/special-journals/" + } + ], + "names": [ + { + "value": "Special Pathogens Research Network Ltd.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Special Pathogens Research Network Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spparenet", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Special Journals Publisher", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SJP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00fbnyb24.json b/v1.43/00fbnyb24.json new file mode 100644 index 000000000..d634c669a --- /dev/null +++ b/v1.43/00fbnyb24.json @@ -0,0 +1,123 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-08-30", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1402, + "external_ids": [ + { + "all": [ + "0000 0001 1958 8658" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100008769", + "501100009379" + ], + "preferred": "501100008769", + "type": "fundref" + }, + { + "all": [ + "Q161976" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.8379.5" + ], + "preferred": "grid.8379.5", + "type": "grid" + } + ], + "id": "https://ror.org/00fbnyb24", + "links": [ + { + "type": "website", + "value": "http://www.uni-wuerzburg.de/en/ueber/university/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_W%C3%BCrzburg" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.79391, + "lng": 9.95121, + "name": "Würzburg" + }, + "geonames_id": 2805615 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Würzburg" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Julius Maximilian University of Würzburg" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Julius-Maximilians-Universität Würzburg" + } + ], + "relationships": [ + { + "label": "Klinikum Coburg", + "type": "related", + "id": "https://ror.org/02d1rkr63" + }, + { + "label": "Universitätsklinikum Würzburg", + "type": "related", + "id": "https://ror.org/03pvr2g57" + }, + { + "label": "Bavarian Polymer Institute", + "type": "child", + "id": "https://ror.org/054zwas39" + }, + { + "label": "Complexity and Topology in Quantum Matter", + "type": "child", + "id": "https://ror.org/00kkpv737" + }, + { + "label": "Comprehensive Cancer Center Mainfranken", + "type": "child", + "id": "https://ror.org/013tmk464" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00fp4q488.json b/v1.43/00fp4q488.json new file mode 100644 index 000000000..311bfc760 --- /dev/null +++ b/v1.43/00fp4q488.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1907, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1009 6390" + ], + "preferred": "0000 0001 1009 6390" + }, + { + "type": "wikidata", + "all": [ + "Q120043481" + ], + "preferred": "Q120043481" + }, + { + "type": "fundref", + "all": [ + "100015902" + ], + "preferred": "100015902" + } + ], + "id": "https://ror.org/00fp4q488", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://eoseurope.org" + } + ], + "names": [ + { + "value": "European Orthodontic Society", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Europäische Gesellschaft für Orthodontie", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "EOS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00fpvte21.json b/v1.43/00fpvte21.json new file mode 100644 index 000000000..1b508581d --- /dev/null +++ b/v1.43/00fpvte21.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2640194, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.37153, + "lng": -4.14305, + "name": "Plymouth" + } + } + ], + "established": 1856, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0455 3120" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q7205783" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.451096.f" + ], + "preferred": "grid.451096.f" + } + ], + "id": "https://ror.org/00fpvte21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.aup.ac.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Plymouth_College_of_Art" + } + ], + "names": [ + { + "value": "Arts University Plymouth", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Plymouth College of Art", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00g1jn849.json b/v1.43/00g1jn849.json new file mode 100644 index 000000000..25c68607c --- /dev/null +++ b/v1.43/00g1jn849.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2654710, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.82838, + "lng": -0.13947, + "name": "Brighton" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011049" + ], + "preferred": "501100011049" + } + ], + "id": "https://ror.org/00g1jn849", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cied.ac.uk" + } + ], + "names": [ + { + "value": "Centre on Innovation and Energy Demand", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre on Innovation & Energy Demand", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CIED", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Sussex", + "type": "parent", + "id": "https://ror.org/00ayhx656" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00g8hms52.json b/v1.43/00g8hms52.json new file mode 100644 index 000000000..f48208111 --- /dev/null +++ b/v1.43/00g8hms52.json @@ -0,0 +1,89 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1991, + "external_ids": [ + { + "all": [ + "100005240" + ], + "preferred": "100005240", + "type": "fundref" + }, + { + "all": [ + "grid.473856.b" + ], + "preferred": "grid.473856.b", + "type": "grid" + }, + { + "all": [ + "0000 0004 0405 6976" + ], + "preferred": "0000 0004 0405 6976", + "type": "isni" + } + ], + "id": "https://ror.org/00g8hms52", + "links": [ + { + "type": "website", + "value": "https://www.acf.hhs.gov" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + }, + "geonames_id": 4140963 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ACF" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Administration for Children and Families" + } + ], + "relationships": [ + { + "label": "United States Department of Health and Human Services", + "type": "parent", + "id": "https://ror.org/033jnv181" + }, + { + "label": "Office of Planning, Research and Evaluation", + "type": "child", + "id": "https://ror.org/05jnma812" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/00gjj5n39.json b/v1.43/00gjj5n39.json new file mode 100644 index 000000000..7dc3782ce --- /dev/null +++ b/v1.43/00gjj5n39.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2519752, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.98567, + "lng": -0.04935, + "name": "Castellon" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1766 8613" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q6156487" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.440832.9" + ], + "preferred": "grid.440832.9" + } + ], + "id": "https://ror.org/00gjj5n39", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.universidadviu.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Valencian_International_University" + } + ], + "names": [ + { + "value": "Valencian International University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidad Internacional de Valencia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidad Internacional Valenciana", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "VIU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00grd1h17.json b/v1.43/00grd1h17.json new file mode 100644 index 000000000..528ec5d8b --- /dev/null +++ b/v1.43/00grd1h17.json @@ -0,0 +1,160 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-09-14", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1949, + "external_ids": [ + { + "all": [ + "100004374", + "100007102", + "100016304" + ], + "preferred": "100004374", + "type": "fundref" + }, + { + "all": [ + "grid.419673.e" + ], + "preferred": "grid.419673.e", + "type": "grid" + }, + { + "all": [ + "0000 0000 9545 2456" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q642189" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00grd1h17", + "links": [ + { + "type": "website", + "value": "http://www.medtronic.com/us-en/index.html" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Medtronic" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.97997, + "lng": -93.26384, + "name": "Minneapolis" + }, + "geonames_id": 5037649 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Medtronic (United States)" + } + ], + "relationships": [ + { + "label": "Medtronic (Canada)", + "type": "child", + "id": "https://ror.org/05dsmqn98" + }, + { + "label": "Medtronic (France)", + "type": "child", + "id": "https://ror.org/03eraeg88" + }, + { + "label": "Medtronic (Germany)", + "type": "child", + "id": "https://ror.org/05ttsqg93" + }, + { + "label": "Medtronic (Ireland)", + "type": "child", + "id": "https://ror.org/04dyhjr58" + }, + { + "label": "Medtronic (Israel)", + "type": "child", + "id": "https://ror.org/04w6n5s59" + }, + { + "label": "Medtronic (Italy)", + "type": "child", + "id": "https://ror.org/03yq5aa85" + }, + { + "label": "Medtronic (Luxembourg)", + "type": "child", + "id": "https://ror.org/04fhmmg24" + }, + { + "label": "Medtronic (Netherlands)", + "type": "child", + "id": "https://ror.org/02hmjce72" + }, + { + "label": "Medtronic (Singapore)", + "type": "child", + "id": "https://ror.org/01y0zfy93" + }, + { + "label": "Medtronic (South Korea)", + "type": "child", + "id": "https://ror.org/0344txx64" + }, + { + "label": "Medtronic (Spain)", + "type": "child", + "id": "https://ror.org/01tdsae39" + }, + { + "label": "Medtronic (Switzerland)", + "type": "child", + "id": "https://ror.org/04pf17v09" + }, + { + "label": "Medtronic (United Kingdom)", + "type": "child", + "id": "https://ror.org/020hbh524" + }, + { + "label": "Medtronic (Japan)", + "type": "child", + "id": "https://ror.org/031tfsa37" + }, + { + "label": "Medtronic Foundation", + "type": "child", + "id": "https://ror.org/01f7saf07" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/00h3hwc05.json b/v1.43/00h3hwc05.json new file mode 100644 index 000000000..7fa32c1e4 --- /dev/null +++ b/v1.43/00h3hwc05.json @@ -0,0 +1,78 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1832, + "external_ids": [ + { + "all": [ + "0000 0004 0399 4653" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4968908" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.415177.1" + ], + "preferred": "grid.415177.1", + "type": "grid" + } + ], + "id": "https://ror.org/00h3hwc05", + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Bristol_General_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bristol General Hospital" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BGH" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/00h3w1m15.json b/v1.43/00h3w1m15.json new file mode 100644 index 000000000..115258078 --- /dev/null +++ b/v1.43/00h3w1m15.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 108410, + "geonames_details": { + "country_code": "SA", + "country_name": "Saudi Arabia", + "lat": 24.68773, + "lng": 46.72185, + "name": "Riyadh" + } + } + ], + "established": 1983, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1014 6204" + ], + "preferred": "0000 0001 1014 6204" + }, + { + "type": "wikidata", + "all": [ + "Q620803" + ], + "preferred": "Q620803" + } + ], + "id": "https://ror.org/00h3w1m15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://kfnl.gov.sa" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/King_Fahd_National_Library" + } + ], + "names": [ + { + "value": "King Fahad National Library", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "مكتبة الملك فهد الوطنية", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "KFNL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00hpz7z43.json b/v1.43/00hpz7z43.json new file mode 100644 index 000000000..a131f7fee --- /dev/null +++ b/v1.43/00hpz7z43.json @@ -0,0 +1,140 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1888, + "external_ids": [ + { + "all": [ + "100009611" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.24805.3b" + ], + "preferred": "grid.24805.3b", + "type": "grid" + }, + { + "all": [ + "0000 0001 0687 2182", + "0000 0001 0941 243X" + ], + "preferred": "0000 0001 0941 243X", + "type": "isni" + }, + { + "all": [ + "Q1353248" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00hpz7z43", + "links": [ + { + "type": "website", + "value": "http://www.nmsu.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/New_Mexico_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.31232, + "lng": -106.77834, + "name": "Las Cruces" + }, + "geonames_id": 5475352 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NMSU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "New Mexico State University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal de Nuevo México" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État du nouveau-mexique" + } + ], + "relationships": [ + { + "label": "New Mexico Space Grant Consortium", + "type": "child", + "id": "https://ror.org/00nr2vg89" + }, + { + "label": "New Mexico State University Carlsbad", + "type": "child", + "id": "https://ror.org/01kbvt179" + }, + { + "label": "New Mexico State University Grants", + "type": "child", + "id": "https://ror.org/035k7dd86" + }, + { + "label": "San Juan College", + "type": "child", + "id": "https://ror.org/041jmaw90" + }, + { + "label": "Jornada Basin Long Term Ecological Research", + "type": "child", + "id": "https://ror.org/05976ta47" + }, + { + "label": "New Mexico State University Alamogordo", + "type": "child", + "id": "https://ror.org/007sts724" + }, + { + "label": "Agricultural Experiment Station", + "type": "child", + "id": "https://ror.org/009q0jm69" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00hx6zz33.json b/v1.43/00hx6zz33.json new file mode 100644 index 000000000..0718210b5 --- /dev/null +++ b/v1.43/00hx6zz33.json @@ -0,0 +1,165 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1892, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1765 0915" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q273604" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.6390.c" + ], + "preferred": "grid.6390.c" + } + ], + "id": "https://ror.org/00hx6zz33", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://ens-paris-saclay.fr/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/%C3%89cole_normale_sup%C3%A9rieure_de_Cachan" + } + ], + "names": [ + { + "value": "École Normale Supérieure Paris-Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ENS Cachan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Normale Sup' Cachan", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre d'Économie de la Sorbonne", + "type": "child", + "id": "https://ror.org/006shqv80" + }, + { + "label": "Institut des Sciences Sociales du Politique", + "type": "child", + "id": "https://ror.org/03jdg7625" + }, + { + "label": "Institutions et Dynamiques Historiques de l'Économie et de la Société", + "type": "child", + "id": "https://ror.org/03p76m698" + }, + { + "label": "Laboratoire de Biologie et Pharmacologie Appliquée", + "type": "child", + "id": "https://ror.org/03njrcx45" + }, + { + "label": "Laboratoire de Photophysique et Photochimie Supramoléculaires et Macromoléculaires", + "type": "child", + "id": "https://ror.org/03r7eh527" + }, + { + "label": "Laboratory of Quantum and Molecular Photonics", + "type": "child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Universitaire de Recherche en Production Automatisée", + "type": "child", + "id": "https://ror.org/05wjc8a85" + }, + { + "label": "Centre de Recherche en Design", + "type": "child", + "id": "https://ror.org/007y9b339" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00j0w4q23.json b/v1.43/00j0w4q23.json new file mode 100644 index 000000000..025ee6546 --- /dev/null +++ b/v1.43/00j0w4q23.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2248477, + "geonames_details": { + "country_code": "SN", + "country_name": "Senegal", + "lat": 14.42196, + "lng": -16.96375, + "name": "Mbour" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/00j0w4q23", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aims-senegal.org" + } + ], + "names": [ + { + "value": "African Institute for Mathematical Sciences Senegal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AIMS Senegal", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut Africain des Sciences Mathématiques Sénégal", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00j39jc12.json b/v1.43/00j39jc12.json new file mode 100644 index 000000000..c63ff47c8 --- /dev/null +++ b/v1.43/00j39jc12.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 6173331, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 49.24966, + "lng": -123.11934, + "name": "Vancouver" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0476 4403" + ], + "preferred": "0000 0004 0476 4403" + } + ], + "id": "https://ror.org/00j39jc12", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://syreon.com" + } + ], + "names": [ + { + "value": "Syreon Corporation (Canada)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Syreon Clinical Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Syreon Corporation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00jjx8s55.json b/v1.43/00jjx8s55.json new file mode 100644 index 000000000..8dcf21d54 --- /dev/null +++ b/v1.43/00jjx8s55.json @@ -0,0 +1,407 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1945, + "external_ids": [ + { + "all": [ + "501100006489" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.5583.b" + ], + "preferred": "grid.5583.b", + "type": "grid" + }, + { + "all": [ + "0000 0001 2299 8025" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q868550" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00jjx8s55", + "links": [ + { + "type": "website", + "value": "http://www.cea.fr/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/French_Alternative_Energies_and_Atomic_Energy_Commission" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Atomic Energy and Alternative Energies Commission" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CEA" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives" + } + ], + "relationships": [ + { + "label": "Astroparticle and Cosmology Laboratory", + "type": "child", + "id": "https://ror.org/03tnjrr49" + }, + { + "label": "CEA Cadarache", + "type": "child", + "id": "https://ror.org/01rs1gy10" + }, + { + "label": "CEA DAM Île-de-France", + "type": "child", + "id": "https://ror.org/00kn4eb29" + }, + { + "label": "CEA Fontenay-aux-Roses", + "type": "child", + "id": "https://ror.org/010j2gw05" + }, + { + "label": "CEA Grenoble", + "type": "child", + "id": "https://ror.org/02mg6n827" + }, + { + "label": "Centre Lasers Intenses et Applications", + "type": "child", + "id": "https://ror.org/02910d597" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Recherche sur les Ions, les Matériaux et la Photonique", + "type": "child", + "id": "https://ror.org/02y0gk295" + }, + { + "label": "Chrono-Environment Laboratory", + "type": "child", + "id": "https://ror.org/028cef883" + }, + { + "label": "Cognitive Neuroimaging Lab", + "type": "child", + "id": "https://ror.org/056wdpc91" + }, + { + "label": "Direction des énergies", + "type": "child", + "id": "https://ror.org/03cwzta72" + }, + { + "label": "Direction de la Recherche Fondamentale", + "type": "child", + "id": "https://ror.org/01yvj5k91" + }, + { + "label": "Direction de la Recherche Technologique", + "type": "child", + "id": "https://ror.org/02ggzyd20" + }, + { + "label": "Frédéric Joliot Institute for Life Sciences", + "type": "child", + "id": "https://ror.org/016pnwd02" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Institut National de l'Énergie Solaire", + "type": "child", + "id": "https://ror.org/00qk0vr83" + }, + { + "label": "Institut de Biologie Structurale", + "type": "child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Institut de Radiobiologie Cellulaire et Moléculaire", + "type": "child", + "id": "https://ror.org/04ef91678" + }, + { + "label": "Institut de Recherche sur les ArchéoMATériaux", + "type": "child", + "id": "https://ror.org/01cw28e72" + }, + { + "label": "Institute for the Separation Chemistry in Marcoule", + "type": "child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Institute of Integrative Biology of the Cell", + "type": "child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Institute of Organic and Analytical Chemistry", + "type": "child", + "id": "https://ror.org/03ywn7d79" + }, + { + "label": "Irradiated Solids Laboratory", + "type": "child", + "id": "https://ror.org/015x8rz21" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "type": "child", + "id": "https://ror.org/00wwxk695" + }, + { + "label": "Laboratoire Léon Brillouin", + "type": "child", + "id": "https://ror.org/029rmm934" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire de Chimie et Biologie des Métaux", + "type": "child", + "id": "https://ror.org/02dd25k08" + }, + { + "label": "Laboratoire des Composites Thermo Structuraux", + "type": "child", + "id": "https://ror.org/02n2h9t24" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Maison de la Simulation", + "type": "child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Nanosciences et Innovation pour les Matériaux, la Biomédecine et l'Énergie", + "type": "child", + "id": "https://ror.org/04vg26t07" + }, + { + "label": "National Center of Human Genomics Research", + "type": "child", + "id": "https://ror.org/004yvsb77" + }, + { + "label": "Service Interdisciplinaire sur les Systèmes Moléculaires et les Matériaux", + "type": "child", + "id": "https://ror.org/00enct420" + }, + { + "label": "Service de Physique de l'État Condensé", + "type": "child", + "id": "https://ror.org/0247p4w70" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "child", + "id": "https://ror.org/03e044190" + }, + { + "label": "Structure et Propriétés d'Architectures Moléculaires", + "type": "child", + "id": "https://ror.org/00x5jmr79" + }, + { + "label": "lnstitut de Recherche Interdisciplinaire de Grenoble", + "type": "child", + "id": "https://ror.org/00byxdz40" + }, + { + "label": "Institut de Biosciences et biotechnologies d'Aix-Marseille", + "type": "child", + "id": "https://ror.org/005yfhm28" + }, + { + "label": "PHotonique ELectronique et Ingénierie QuantiqueS", + "type": "child", + "id": "https://ror.org/01kbr1737" + }, + { + "label": "Laboratoire Modélisation et Exploration des Matériaux", + "type": "child", + "id": "https://ror.org/00ndvqf03" + }, + { + "label": "Transporteurs, Imagerie et Radiothérapie en Oncologie - Mécanismes Biologiques des Altérations du Tissu Osseux", + "type": "child", + "id": "https://ror.org/051c1vb08" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "child", + "id": "https://ror.org/03949e763" + }, + { + "label": "France Génomique", + "type": "child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "child", + "id": "https://ror.org/03sypqe31" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/00jma8s40.json b/v1.43/00jma8s40.json new file mode 100644 index 000000000..9b892a109 --- /dev/null +++ b/v1.43/00jma8s40.json @@ -0,0 +1,109 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1968, + "external_ids": [ + { + "all": [ + "501100015913" + ], + "preferred": "501100015913", + "type": "fundref" + }, + { + "all": [ + "grid.469557.c" + ], + "preferred": "grid.469557.c", + "type": "grid" + }, + { + "all": [ + "0000 0004 7434 0868" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5099558" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00jma8s40", + "links": [ + { + "type": "website", + "value": "http://www.cardc.cn:88/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/China_Aerodynamics_Research_and_Development_Center" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.46784, + "lng": 104.68168, + "name": "Mianyang" + }, + "geonames_id": 1800627 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CARDC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "China Aerodynamics Research and Development Center" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Zhōngguó Kōngqì Dònglì Yánjiū yǔ Fāzhǎn Zhōngxīn" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "中国空气动力研究与发展中心" + } + ], + "relationships": [ + { + "label": "State Key Laboratory of Aerodynamics", + "type": "child", + "id": "https://ror.org/055rh9p75" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/00jmfr291.json b/v1.43/00jmfr291.json new file mode 100644 index 000000000..259b4ad58 --- /dev/null +++ b/v1.43/00jmfr291.json @@ -0,0 +1,179 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1817, + "external_ids": [ + { + "all": [ + "0000 0000 8683 7370", + "0000 0004 1936 7347" + ], + "preferred": "0000 0004 1936 7347", + "type": "isni" + }, + { + "all": [ + "100007270", + "100008192", + "100006790", + "100006801", + "100008269", + "100005953", + "100008455", + "100008456", + "100006652", + "100008115", + "100005993", + "100009539", + "100005543", + "100005949", + "100008557", + "100006416", + "100005476", + "100011232" + ], + "preferred": "100007270", + "type": "fundref" + }, + { + "all": [ + "Q230492" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.214458.e" + ], + "preferred": "grid.214458.e", + "type": "grid" + } + ], + "id": "https://ror.org/00jmfr291", + "links": [ + { + "type": "website", + "value": "https://www.umich.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Michigan" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.27756, + "lng": -83.74088, + "name": "Ann Arbor" + }, + "geonames_id": 4984247 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Michigan–Ann Arbor" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "UMich" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "University of Michigan" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université du Michigan" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UM" + } + ], + "relationships": [ + { + "label": "Hurley Medical Center", + "type": "related", + "id": "https://ror.org/034npj057" + }, + { + "label": "Michigan Medicine", + "type": "related", + "id": "https://ror.org/01zcpa714" + }, + { + "label": "Michigan Sea Grant", + "type": "child", + "id": "https://ror.org/015tnsz82" + }, + { + "label": "Michigan Space Grant Consortium", + "type": "child", + "id": "https://ror.org/057mgcy61" + }, + { + "label": "University of Michigan–Dearborn", + "type": "child", + "id": "https://ror.org/035wtm547" + }, + { + "label": "University of Michigan–Flint", + "type": "child", + "id": "https://ror.org/01c3xc117" + }, + { + "label": "Inter-University Consortium for Political and Social Research", + "type": "child", + "id": "https://ror.org/02q7mkh03" + }, + { + "label": "Arctic Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/04pk7zz41" + }, + { + "label": "University of Michigan Press", + "type": "child", + "id": "https://ror.org/00rx1p510" + }, + { + "label": "University of Michigan Biological Station", + "type": "child", + "id": "https://ror.org/02hhndj92" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00js3aw79.json b/v1.43/00js3aw79.json new file mode 100644 index 000000000..de5278376 --- /dev/null +++ b/v1.43/00js3aw79.json @@ -0,0 +1,137 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1946, + "external_ids": [ + { + "all": [ + "501100004032" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.64924.3d" + ], + "preferred": "grid.64924.3d", + "type": "grid" + }, + { + "all": [ + "0000 0004 1760 5735" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1432030" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00js3aw79", + "links": [ + { + "type": "website", + "value": "https://www.jlu.edu.cn/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Jilin_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 43.88, + "lng": 125.32278, + "name": "Changchun" + }, + "geonames_id": 2038180 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Jilin University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Jílín Dàxué" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "吉林大学" + } + ], + "relationships": [ + { + "label": "State Key Laboratory on Integrated Optoelectronics", + "type": "child", + "id": "https://ror.org/00g102351" + }, + { + "label": "State Key Laboratory of Theoretical Chemical Computing", + "type": "child", + "id": "https://ror.org/01bskzg04" + }, + { + "label": "State Key Laboratory of Superhard Materials", + "type": "child", + "id": "https://ror.org/03sjvjt84" + }, + { + "label": "State Key Laboratory of Inorganic Synthesis and Preparative Chemistry", + "type": "child", + "id": "https://ror.org/03ed91q10" + }, + { + "label": "State Key Laboratory of Supramolecular Structure and Materials", + "type": "child", + "id": "https://ror.org/02xf8rf51" + }, + { + "label": "Bethune Second Hospital", + "type": "related", + "id": "https://ror.org/01hht6e57" + }, + { + "label": "First Hospital of Jilin University", + "type": "related", + "id": "https://ror.org/034haf133" + }, + { + "label": "State Key Laboratory of Automotive Simulation and Control", + "type": "child", + "id": "https://ror.org/00b67z867" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00jvqbw52.json b/v1.43/00jvqbw52.json new file mode 100644 index 000000000..4af7c9146 --- /dev/null +++ b/v1.43/00jvqbw52.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51781718" + ], + "preferred": "Q51781718" + } + ], + "id": "https://ror.org/00jvqbw52", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.liverstrasbourg.org" + } + ], + "names": [ + { + "value": "Institute for Translational Medicine and Liver Disease", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut de Recherche sur les Maladies Virales et Hépatiques", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut de recherche en médecine translationnelle et maladies hépatiques", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "IVH", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "ITM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00k3ph542.json b/v1.43/00k3ph542.json new file mode 100644 index 000000000..d434e3bc7 --- /dev/null +++ b/v1.43/00k3ph542.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.503134.0" + ], + "preferred": "grid.503134.0" + } + ], + "id": "https://ror.org/00k3ph542", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.faculte-sciences-sport.universite-paris-saclay.fr/recherche/presentation-unite-de-recherche-ciams" + } + ], + "names": [ + { + "value": "Complexité, Innovation et Activités Motrices et Sportives", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire CIAMS", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Laboratoire Complexité, Innovation et Activités Motrices et Sportives", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CIAMS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Université d'Orléans", + "type": "parent", + "id": "https://ror.org/014zrew76" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00kk89y84.json b/v1.43/00kk89y84.json new file mode 100644 index 000000000..9613a32f7 --- /dev/null +++ b/v1.43/00kk89y84.json @@ -0,0 +1,87 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0445 9548" + ], + "preferred": "0000 0004 0445 9548" + }, + { + "type": "grid", + "all": [ + "grid.463962.c" + ], + "preferred": "grid.463962.c" + } + ], + "id": "https://ror.org/00kk89y84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ese.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Écologie, Systématique et Évolution", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ESE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00krnv781.json b/v1.43/00krnv781.json new file mode 100644 index 000000000..ee3b191cc --- /dev/null +++ b/v1.43/00krnv781.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6431 5714" + ], + "preferred": "0000 0004 6431 5714" + }, + { + "type": "wikidata", + "all": [ + "Q45132445" + ], + "preferred": "Q45132445" + }, + { + "type": "fundref", + "all": [ + "100012013" + ], + "preferred": "100012013" + } + ], + "id": "https://ror.org/00krnv781", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.rsbo.ca" + } + ], + "names": [ + { + "value": "Réseau de Recherche en Santé Buccodentaire et Osseuse", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Network for Oral and Bone Health Research", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "RSBO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00kxqbw45.json b/v1.43/00kxqbw45.json new file mode 100644 index 000000000..f6fd4ad80 --- /dev/null +++ b/v1.43/00kxqbw45.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0617 2698" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "grid.413531.1" + ], + "preferred": "grid.413531.1", + "type": "grid" + } + ], + "id": "https://ror.org/00kxqbw45", + "links": [ + { + "type": "website", + "value": "http://www.cht.es/cht/cm/cht/tkContent?pgseed=1493207263184&idContent=6065&locale=es_ES&textOnly=false" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.8581, + "lng": -4.02263, + "name": "Toledo" + }, + "geonames_id": 2510409 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hospital Virgen del Valle" + } + ], + "relationships": [ + { + "label": "Complejo Hospitalario Universitario de Toledo", + "type": "parent", + "id": "https://ror.org/04q4ppz72" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/00m98kt33.json b/v1.43/00m98kt33.json new file mode 100644 index 000000000..d1c184be6 --- /dev/null +++ b/v1.43/00m98kt33.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 5367929, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 33.76696, + "lng": -118.18923, + "name": "Long Beach" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100011956" + ], + "preferred": "100011956" + } + ], + "id": "https://ror.org/00m98kt33", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.calstate.edu/impact-of-the-csu/research/ari" + } + ], + "names": [ + { + "value": "Agricultural Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "California State University Agricultural Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CSU Agricultural Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Cal State Agricultural Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ARI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "California State University System", + "type": "parent", + "id": "https://ror.org/020qm1538" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00mccb878.json b/v1.43/00mccb878.json new file mode 100644 index 000000000..379d3a37c --- /dev/null +++ b/v1.43/00mccb878.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.466733.3" + ], + "preferred": "grid.466733.3" + } + ], + "id": "https://ror.org/00mccb878", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://iberespacio.es/" + } + ], + "names": [ + { + "value": "IberEspacio (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Arquimea (Spain)", + "type": "successor", + "id": "https://ror.org/04mnaqe33" + } + ], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00mmn6b08.json b/v1.43/00mmn6b08.json new file mode 100644 index 000000000..54a1a8562 --- /dev/null +++ b/v1.43/00mmn6b08.json @@ -0,0 +1,205 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100006132" + ], + "preferred": "100006132" + }, + { + "type": "wikidata", + "all": [ + "Q7079302" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.453216.7" + ], + "preferred": "grid.453216.7" + } + ], + "id": "https://ror.org/00mmn6b08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.energy.gov/science/office-science" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Office_of_Science" + } + ], + "names": [ + { + "value": "Office of Science", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "United States Department of Energy Office of Science", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "U.S. Department of Energy Office of Science", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United States Department of Energy", + "type": "parent", + "id": "https://ror.org/01bj3aw27" + }, + { + "label": "Office of Advanced Scientific Computing Research", + "type": "child", + "id": "https://ror.org/0012c7r22" + }, + { + "label": "Office of Basic Energy Sciences", + "type": "child", + "id": "https://ror.org/05mg91w61" + }, + { + "label": "Office of Biological and Environmental Research", + "type": "child", + "id": "https://ror.org/0114b2m14" + }, + { + "label": "Office of Fusion Energy Sciences", + "type": "child", + "id": "https://ror.org/02n3j8t12" + }, + { + "label": "Office of High Energy Physics", + "type": "child", + "id": "https://ror.org/035m6g344" + }, + { + "label": "Office of Nuclear Physics", + "type": "child", + "id": "https://ror.org/02atag894" + }, + { + "label": "Office of Scientific and Technical Information", + "type": "child", + "id": "https://ror.org/031478740" + }, + { + "label": "Office of Workforce Development for Teachers and Scientists", + "type": "child", + "id": "https://ror.org/05msy3529" + }, + { + "label": "Environmental System Science Data Infrastructure for a Virtual Ecosystem", + "type": "child", + "id": "https://ror.org/01t14bp54" + }, + { + "label": "Office of Isotope R&D and Production", + "type": "child", + "id": "https://ror.org/03dbdcw44" + }, + { + "label": "Office of Accelerator R&D and Production", + "type": "child", + "id": "https://ror.org/02gr2sy50" + }, + { + "label": "Lawrence Berkeley National Laboratory", + "type": "child", + "id": "https://ror.org/02jbv0t02" + }, + { + "label": "Ames National Laboratory", + "type": "child", + "id": "https://ror.org/041m9xr71" + }, + { + "label": "Argonne National Laboratory", + "type": "child", + "id": "https://ror.org/05gvnxz63" + }, + { + "label": "Brookhaven National Laboratory", + "type": "child", + "id": "https://ror.org/02ex6cf31" + }, + { + "label": "Fermi National Accelerator Laboratory", + "type": "child", + "id": "https://ror.org/020hgte69" + }, + { + "label": "Oak Ridge National Laboratory", + "type": "child", + "id": "https://ror.org/01qz5mb56" + }, + { + "label": "Pacific Northwest National Laboratory", + "type": "child", + "id": "https://ror.org/05h992307" + }, + { + "label": "Princeton Plasma Physics Laboratory", + "type": "child", + "id": "https://ror.org/03vn1ts68" + }, + { + "label": "SLAC National Accelerator Laboratory", + "type": "child", + "id": "https://ror.org/05gzmn429" + }, + { + "label": "Thomas Jefferson National Accelerator Facility", + "type": "child", + "id": "https://ror.org/02vwzrd76" + }, + { + "label": "Facility for Rare Isotope Beams", + "type": "child", + "id": "https://ror.org/03r4g9w46" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00mmpjq16.json b/v1.43/00mmpjq16.json new file mode 100644 index 000000000..849dcb96f --- /dev/null +++ b/v1.43/00mmpjq16.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1886760, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.30408, + "lng": 120.59538, + "name": "Suzhou" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/00mmpjq16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.szydyy.com" + } + ], + "names": [ + { + "value": "Suzhou Yongding Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Hygeia Suzhou Yongding Hospital", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "苏州永鼎医院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "海吉亚苏州永鼎医院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00na1dz18.json b/v1.43/00na1dz18.json new file mode 100644 index 000000000..8eea0b3d8 --- /dev/null +++ b/v1.43/00na1dz18.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 4789226, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.86206, + "lng": -77.77388, + "name": "The Plains" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0723 9469" + ], + "preferred": "0000 0001 0723 9469" + }, + { + "type": "wikidata", + "all": [ + "Q4743178" + ], + "preferred": "Q4743178" + } + ], + "id": "https://ror.org/00na1dz18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://abcbirds.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/American_Bird_Conservancy" + } + ], + "names": [ + { + "value": "American Bird Conservancy", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00ne6sr39.json b/v1.43/00ne6sr39.json new file mode 100644 index 000000000..22d68be81 --- /dev/null +++ b/v1.43/00ne6sr39.json @@ -0,0 +1,109 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1886, + "external_ids": [ + { + "all": [ + "501100019927" + ], + "preferred": "501100019927", + "type": "fundref" + }, + { + "all": [ + "grid.14724.34" + ], + "preferred": "grid.14724.34", + "type": "grid" + }, + { + "all": [ + "0000 0001 0941 7046" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1468481" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00ne6sr39", + "links": [ + { + "type": "website", + "value": "https://www.deusto.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Deusto" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + }, + "geonames_id": 3128026 + } + ], + "names": [ + { + "lang": "eu", + "types": [ + "label" + ], + "value": "Deustuko Unibertsitatea" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Universidad de Deusto" + }, + { + "lang": "gl", + "types": [ + "label" + ], + "value": "Universidade de Deusto" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "University of Deusto" + } + ], + "relationships": [ + { + "label": "Escuela Universitaria de Magisterio Begoñako Andra Mari", + "type": "related", + "id": "https://ror.org/009xdmc59" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00nffqq91.json b/v1.43/00nffqq91.json new file mode 100644 index 000000000..e8413ff19 --- /dev/null +++ b/v1.43/00nffqq91.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 4274994, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.18361, + "lng": -96.57167, + "name": "Manhattan" + } + } + ], + "established": 1980, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9234 0669" + ], + "preferred": "0000 0004 9234 0669" + }, + { + "type": "fundref", + "all": [ + "100015421" + ], + "preferred": "100015421" + } + ], + "id": "https://ror.org/00nffqq91", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cancer.k-state.edu" + } + ], + "names": [ + { + "value": "Johnson Cancer Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Terry C. Johnson Center for Basic Cancer Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Kansas State University Johnson Cancer Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "JCRC", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "KSU JCRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Kansas State University", + "type": "parent", + "id": "https://ror.org/05p1j8758" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00ntbvq76.json b/v1.43/00ntbvq76.json new file mode 100644 index 000000000..b4c2f11fd --- /dev/null +++ b/v1.43/00ntbvq76.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1987, + "external_ids": [ + { + "all": [ + "Q29576408" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.411754.2" + ], + "preferred": "grid.411754.2", + "type": "grid" + } + ], + "id": "https://ror.org/00ntbvq76", + "links": [ + { + "type": "website", + "value": "http://www.chdinant.be/default.asp" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.4669, + "lng": 4.86746, + "name": "Namur" + }, + "geonames_id": 2790471 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "CHU Dinant Godinne UCL Namur" + } + ], + "relationships": [ + { + "label": "UCLouvain", + "type": "related", + "id": "https://ror.org/02495e989" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/00p094v10.json b/v1.43/00p094v10.json new file mode 100644 index 000000000..efabefe6a --- /dev/null +++ b/v1.43/00p094v10.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3433522, + "geonames_details": { + "country_code": "AR", + "country_name": "Argentina", + "lat": -34.5904, + "lng": -58.62904, + "name": "Hurlingham" + } + } + ], + "established": 2016, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7699 5761" + ], + "preferred": "0000 0004 7699 5761" + }, + { + "type": "wikidata", + "all": [ + "Q28501872" + ], + "preferred": "Q28501872" + } + ], + "id": "https://ror.org/00p094v10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://unahur.edu.ar" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Universidad_Nacional_de_Hurlingham" + } + ], + "names": [ + { + "value": "Universidad Nacional de Hurlingham", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National University of Hurlingham", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UNAHUR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00p11pk44.json b/v1.43/00p11pk44.json new file mode 100644 index 000000000..e43945410 --- /dev/null +++ b/v1.43/00p11pk44.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1832, + "external_ids": [ + { + "all": [ + "100008352" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.267959.6" + ], + "preferred": "grid.267959.6", + "type": "grid" + }, + { + "all": [ + "0000 0000 9886 0607" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7958639" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00p11pk44", + "links": [ + { + "type": "website", + "value": "https://www.wabash.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Wabash_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.04115, + "lng": -86.87445, + "name": "Crawfordsville" + }, + "geonames_id": 4919381 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "The Wabash Teachers Seminary and Manual Labor College" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Wabash College" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00p4ywg82.json b/v1.43/00p4ywg82.json new file mode 100644 index 000000000..75038811e --- /dev/null +++ b/v1.43/00p4ywg82.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1851, + "external_ids": [ + { + "all": [ + "grid.421123.7" + ], + "preferred": "grid.421123.7", + "type": "grid" + }, + { + "all": [ + "0000 0004 0413 3417" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q6761994" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00p4ywg82", + "links": [ + { + "type": "website", + "value": "http://www.marian.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Marian_University_(Indiana)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.76838, + "lng": -86.15804, + "name": "Indianapolis" + }, + "geonames_id": 4259418 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Marian University - Indiana" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00p7f7z86.json b/v1.43/00p7f7z86.json new file mode 100644 index 000000000..03ab00023 --- /dev/null +++ b/v1.43/00p7f7z86.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 2634840, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.81698, + "lng": -0.80835, + "name": "Waltham on the Wolds" + } + } + ], + "established": 1973, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0598 7406" + ], + "preferred": "0000 0004 0598 7406" + }, + { + "type": "wikidata", + "all": [ + "Q7966597" + ], + "preferred": "Q7966597" + }, + { + "type": "fundref", + "all": [ + "100014560" + ], + "preferred": "100014560" + } + ], + "id": "https://ror.org/00p7f7z86", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.waltham.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Waltham_Petcare_Science_Institute" + } + ], + "names": [ + { + "value": "Waltham Centre for Pet Nutrition", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Mars (United States)", + "type": "parent", + "id": "https://ror.org/028vrr082" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00pa9y269.json b/v1.43/00pa9y269.json new file mode 100644 index 000000000..37ebf1dc0 --- /dev/null +++ b/v1.43/00pa9y269.json @@ -0,0 +1,75 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [ + { + "all": [ + "0000 0004 4691 0296" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7566412" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.439439.0" + ], + "preferred": "grid.439439.0", + "type": "grid" + } + ], + "id": "https://ror.org/00pa9y269", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/south-bristol-community-hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/South_Bristol_Community_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "South Bristol Community Hospital" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/00pamm417.json b/v1.43/00pamm417.json new file mode 100644 index 000000000..5bc14631e --- /dev/null +++ b/v1.43/00pamm417.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6325494, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.81228, + "lng": -71.21454, + "name": "Québec" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8060 7653" + ], + "preferred": "0000 0004 8060 7653" + } + ], + "id": "https://ror.org/00pamm417", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciusss-capitalenationale.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré universitaire de santé et de services sociaux de la Capitale-Nationale", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUSSS de la Capitale-Nationale", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00pd74e08.json b/v1.43/00pd74e08.json new file mode 100644 index 000000000..d81bb7546 --- /dev/null +++ b/v1.43/00pd74e08.json @@ -0,0 +1,124 @@ +{ + "locations": [ + { + "geonames_id": 2867543, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.96236, + "lng": 7.62571, + "name": "Münster" + } + } + ], + "established": 1780, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2172 9288" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100004869", + "501100004870" + ], + "preferred": "501100004869" + }, + { + "type": "wikidata", + "all": [ + "Q168426" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5949.1" + ], + "preferred": "grid.5949.1" + } + ], + "id": "https://ror.org/00pd74e08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uni-muenster.de" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_M%C3%BCnster" + } + ], + "names": [ + { + "value": "University of Münster", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Westfälische Wilhelms-Universität Münster", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universitaet Muenster", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Muenster", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universität Münster", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "WWU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University Hospital Münster", + "type": "related", + "id": "https://ror.org/01856cw59" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00pg6eq24.json b/v1.43/00pg6eq24.json new file mode 100644 index 000000000..a0e72039c --- /dev/null +++ b/v1.43/00pg6eq24.json @@ -0,0 +1,375 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1538, + "external_ids": [ + { + "all": [ + "501100003768", + "501100003998" + ], + "preferred": "501100003768", + "type": "fundref" + }, + { + "all": [ + "grid.11843.3f" + ], + "preferred": "grid.11843.3f", + "type": "grid" + }, + { + "all": [ + "0000 0001 2157 9291" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q157575" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00pg6eq24", + "links": [ + { + "type": "website", + "value": "https://www.unistra.fr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Strasbourg" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + }, + "geonames_id": 2973783 + } + ], + "names": [ + { + "lang": "ca", + "types": [ + "label" + ], + "value": "Universitat d'Estrasburg" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Strasbourg" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Universität Straßburg" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Strasbourg" + } + ], + "relationships": [ + { + "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": "Modèles Insectes de l'Immunité Innée", + "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 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 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": "Institut Terre & Environnement de Strasbourg", + "type": "child", + "id": "https://ror.org/0530qwm02" + }, + { + "label": "École & Observatoire des Sciences de la Terre", + "type": "child", + "id": "https://ror.org/030qxve40" + }, + { + "label": "Laboratoire Interuniversitaire des Sciences de l'Education et de la Communication", + "type": "child", + "id": "https://ror.org/04n2vwk08" + }, + { + "label": "Chimie de la Matière Complexe", + "type": "child", + "id": "https://ror.org/01cgac405" + }, + { + "label": "Institute for Translational Medicine and Liver Disease", + "type": "child", + "id": "https://ror.org/00jvqbw52" + }, + { + "label": "Chronobiotron", + "type": "child", + "id": "https://ror.org/026fpwg41" + }, + { + "label": "Droit, religion, entreprise et société", + "type": "child", + "id": "https://ror.org/026p10446" + }, + { + "label": "Biopathologie de la myéline, neuroprotection et stratégies thérapeutiques", + "type": "child", + "id": "https://ror.org/000n1xh78" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Biologie et pharmacologie des plaquettes sanguines : hémostase, thrombose, transfusion", + "type": "child", + "id": "https://ror.org/03qge6j93" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Archives Henri-Poincaré - Philosophie et Recherches sur les Sciences et les Technologies", + "type": "child", + "id": "https://ror.org/02fdf4056" + }, + { + "label": "Neuropsychologie Cognitive et Physiopathologie de la Schizophrénie", + "type": "child", + "id": "https://ror.org/02zwf7d57" + }, + { + "label": "Hôpitaux Universitaires de Strasbourg", + "type": "related", + "id": "https://ror.org/04bckew43" + }, + { + "label": "Médecine Cardiovasculaire Translationnelle", + "type": "child", + "id": "https://ror.org/010e21634" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00pnp4y96.json b/v1.43/00pnp4y96.json new file mode 100644 index 000000000..5190a0e32 --- /dev/null +++ b/v1.43/00pnp4y96.json @@ -0,0 +1,93 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1947, + "external_ids": [ + { + "all": [ + "grid.484191.1" + ], + "preferred": "grid.484191.1", + "type": "grid" + }, + { + "all": [ + "0000 0004 0433 7882" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q3250182" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00pnp4y96", + "links": [ + { + "type": "website", + "value": "http://www.pakistan.gov.pk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Government_of_Pakistan" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PK", + "country_name": "Pakistan", + "lat": 33.72148, + "lng": 73.04329, + "name": "Islamabad" + }, + "geonames_id": 1176615 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Government of Pakistan" + }, + { + "lang": "ur", + "types": [ + "label" + ], + "value": "حکومتِ پاکستان" + } + ], + "relationships": [ + { + "label": "Ministry of National Health Services Regulation and Coordination", + "type": "child", + "id": "https://ror.org/02kyv4s47" + }, + { + "label": "Ministry of Science and Technology", + "type": "child", + "id": "https://ror.org/03jn2p430" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/00pyxrd04.json b/v1.43/00pyxrd04.json new file mode 100644 index 000000000..c48920ddd --- /dev/null +++ b/v1.43/00pyxrd04.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2673730, + "geonames_details": { + "country_code": "SE", + "country_name": "Sweden", + "lat": 59.32938, + "lng": 18.06871, + "name": "Stockholm" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2230 9816" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100007633" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457409.b" + ], + "preferred": "grid.457409.b" + } + ], + "id": "https://ror.org/00pyxrd04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mistra.org" + } + ], + "names": [ + { + "value": "Foundation for Strategic Environmental Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stiftelsen för Miljöstrategisk Forskning", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MISTRA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00q1brk57.json b/v1.43/00q1brk57.json new file mode 100644 index 000000000..5ff88241d --- /dev/null +++ b/v1.43/00q1brk57.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 4984247, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.27756, + "lng": -83.74088, + "name": "Ann Arbor" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6431 4500" + ], + "preferred": "0000 0004 6431 4500" + }, + { + "type": "wikidata", + "all": [ + "Q45137775" + ], + "preferred": "Q45137775" + }, + { + "type": "fundref", + "all": [ + "100011869" + ], + "preferred": "100011869" + } + ], + "id": "https://ror.org/00q1brk57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mcuaaar.org" + } + ], + "names": [ + { + "value": "Michigan Center for Urban African American Aging Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MCUAAAR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Wayne State University", + "type": "parent", + "id": "https://ror.org/01070mq45" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00qaqj396.json b/v1.43/00qaqj396.json new file mode 100644 index 000000000..2d09b940b --- /dev/null +++ b/v1.43/00qaqj396.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5746545, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 45.52345, + "lng": -122.67621, + "name": "Portland" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0860 0673" + ], + "preferred": "0000 0005 0860 0673" + } + ], + "id": "https://ror.org/00qaqj396", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fluxmagic.com" + } + ], + "names": [ + { + "value": "FluxMagic, Inc. (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FluxMagic", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FluxMagic, Inc.", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "FLUX", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00qqv6244.json b/v1.43/00qqv6244.json new file mode 100644 index 000000000..38b91d66f --- /dev/null +++ b/v1.43/00qqv6244.json @@ -0,0 +1,111 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1893, + "external_ids": [ + { + "all": [ + "100008980", + "100008981" + ], + "preferred": "100008980", + "type": "fundref" + }, + { + "all": [ + "grid.30760.32" + ], + "preferred": "grid.30760.32", + "type": "grid" + }, + { + "all": [ + "0000 0001 2111 8460" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q6806307" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00qqv6244", + "links": [ + { + "type": "website", + "value": "http://www.mcw.edu/MCW" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Medical_College_of_Wisconsin" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.0389, + "lng": -87.90647, + "name": "Milwaukee" + }, + "geonames_id": 5263045 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MCW" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Medical College of Wisconsin" + } + ], + "relationships": [ + { + "label": "Children's Hospital of Wisconsin", + "type": "related", + "id": "https://ror.org/049cbmb74" + }, + { + "label": "Froedtert Hospital", + "type": "related", + "id": "https://ror.org/01nhrc260" + }, + { + "label": "Milwaukee VA Medical Center", + "type": "related", + "id": "https://ror.org/0176arq92" + }, + { + "label": "Medical College of Wisconsin Cancer Center", + "type": "child", + "id": "https://ror.org/0115fxs14" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00qsr9g17.json b/v1.43/00qsr9g17.json new file mode 100644 index 000000000..2fcc92a3b --- /dev/null +++ b/v1.43/00qsr9g17.json @@ -0,0 +1,74 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1948, + "external_ids": [ + { + "all": [ + "grid.454574.3" + ], + "preferred": "grid.454574.3", + "type": "grid" + }, + { + "all": [ + "Q5591059" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00qsr9g17", + "links": [ + { + "type": "website", + "value": "http://www.grace.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Grace_College_%26_Seminary" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.22727, + "lng": -85.82193, + "name": "Winona Lake" + }, + "geonames_id": 4928337 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Grace College & Seminary" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00qv0tw17.json b/v1.43/00qv0tw17.json new file mode 100644 index 000000000..a8cdd46d5 --- /dev/null +++ b/v1.43/00qv0tw17.json @@ -0,0 +1,112 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-09-14", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1911, + "external_ids": [ + { + "all": [ + "100011961" + ], + "preferred": "100011961", + "type": "fundref" + }, + { + "all": [ + "grid.264257.0" + ], + "preferred": "grid.264257.0", + "type": "grid" + }, + { + "all": [ + "0000 0004 0387 8708" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7603610" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00qv0tw17", + "links": [ + { + "type": "website", + "value": "http://www.esf.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/State_University_of_New_York_College_of_Environmental_Science_and_Forestry" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.04812, + "lng": -76.14742, + "name": "Syracuse" + }, + "geonames_id": 5140405 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ESF" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "SUNY College of Environmental Science and Forestry" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SUNY ESF" + } + ], + "relationships": [ + { + "label": "Edna Bailey Sussman Foundation", + "type": "child", + "id": "https://ror.org/024tqtx80" + }, + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00qxcft19.json b/v1.43/00qxcft19.json new file mode 100644 index 000000000..fdae41a64 --- /dev/null +++ b/v1.43/00qxcft19.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2657908, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 47.17242, + "lng": 8.51745, + "name": "Zug" + } + } + ], + "established": 1923, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0275 206X" + ], + "preferred": "0000 0005 0275 206X" + }, + { + "type": "fundref", + "all": [ + "100016964" + ], + "preferred": "100016964" + } + ], + "id": "https://ror.org/00qxcft19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.wernersiemens-stiftung.ch" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Werner_Siemens-Stiftung" + } + ], + "names": [ + { + "value": "Werner Siemens-Stiftung", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Werner Siemens Foundation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "WSS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00qy68j92.json b/v1.43/00qy68j92.json new file mode 100644 index 000000000..03a7dd796 --- /dev/null +++ b/v1.43/00qy68j92.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 4994358, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.96336, + "lng": -85.66809, + "name": "Grand Rapids" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0450 5903" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.430538.9" + ], + "preferred": "grid.430538.9" + } + ], + "id": "https://ror.org/00qy68j92", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.spectrumhealth.org/locations/spectrum-health-hospitals-blodgett-hospital" + } + ], + "names": [ + { + "value": "Corewell Health Blodgett Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spectrum Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spectrum Health Blodgett Hospital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Michigan State University", + "type": "related", + "id": "https://ror.org/05hs6h993" + }, + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00r4bna31.json b/v1.43/00r4bna31.json new file mode 100644 index 000000000..a96375258 --- /dev/null +++ b/v1.43/00r4bna31.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1887, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6432 5082" + ], + "preferred": "0000 0004 6432 5082" + }, + { + "type": "wikidata", + "all": [ + "Q4752272" + ], + "preferred": "Q4752272" + }, + { + "type": "fundref", + "all": [ + "100012070" + ], + "preferred": "100012070" + } + ], + "id": "https://ror.org/00r4bna31", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.anatsoc.org.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Anatomical_Society" + } + ], + "names": [ + { + "value": "Anatomical Society", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Anatomical Society of Great Britain and Ireland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UK Anatomical Society", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ASGBI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00rwpbm87.json b/v1.43/00rwpbm87.json new file mode 100644 index 000000000..16f69afcf --- /dev/null +++ b/v1.43/00rwpbm87.json @@ -0,0 +1,63 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.488580.9" + ], + "preferred": "grid.488580.9", + "type": "grid" + } + ], + "id": "https://ror.org/00rwpbm87", + "links": [ + { + "type": "website", + "value": "https://www.ukw.de/augenklinik/startseite/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.79391, + "lng": 9.95121, + "name": "Würzburg" + }, + "geonames_id": 2805615 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Augenklinik Universitätsklinikum Würzburg" + } + ], + "relationships": [ + { + "label": "Universitätsklinikum Würzburg", + "type": "parent", + "id": "https://ror.org/03pvr2g57" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/00rydyx93.json b/v1.43/00rydyx93.json new file mode 100644 index 000000000..4df045a9d --- /dev/null +++ b/v1.43/00rydyx93.json @@ -0,0 +1,701 @@ +{ + "locations": [ + { + "geonames_id": 3012621, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.81568, + "lng": 2.38487, + "name": "Ivry-sur-Seine" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 060X" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q24935881" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.456999.e" + ], + "preferred": "grid.456999.e" + } + ], + "id": "https://ror.org/00rydyx93", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/insb/" + } + ], + "names": [ + { + "value": "Institut des Sciences Biologiques", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Biological Sciences", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "INSB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Architecture et Fonction des Macromolécules Biologiques", + "type": "child", + "id": "https://ror.org/04jm8zw14" + }, + { + "label": "Architecture et Réactivité de l'arN", + "type": "child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Biochemistry Laboratory", + "type": "child", + "id": "https://ror.org/01c6vgf77" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Biologie Intégrative des Organismes Marins", + "type": "child", + "id": "https://ror.org/03wg93s13" + }, + { + "label": "Biologie Tissulaire et Ingénierie Thérapeutique", + "type": "child", + "id": "https://ror.org/04fqvqs63" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bioénergétique et Ingénierie des Protéines", + "type": "child", + "id": "https://ror.org/0060xzr04" + }, + { + "label": "Brain Plasticity laboratory", + "type": "child", + "id": "https://ror.org/03padqz24" + }, + { + "label": "Brain and Cognition Research Center", + "type": "child", + "id": "https://ror.org/04fhrs205" + }, + { + "label": "Cancer Research Center of Lyon", + "type": "child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Center for Infection and Immunity of Lille", + "type": "child", + "id": "https://ror.org/00dyt5s15" + }, + { + "label": "Center for Interdisciplinary Research in Biology", + "type": "child", + "id": "https://ror.org/01mvzn566" + }, + { + "label": "Center for Research on Inflammation", + "type": "child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre de Biochimie Structurale", + "type": "child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Biophysique Moléculaire", + "type": "child", + "id": "https://ror.org/02dpqcy73" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre de Résonance Magnétique des Systèmes Biologiques", + "type": "child", + "id": "https://ror.org/01mts2g59" + }, + { + "label": "Centre des Sciences du Goût et de l'Alimentation", + "type": "child", + "id": "https://ror.org/05s1rff82" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Centre for Biochemical and Macromolecular Research", + "type": "child", + "id": "https://ror.org/01xpc6869" + }, + { + "label": "Centre for Cognitive Neuroscience", + "type": "child", + "id": "https://ror.org/02he5dz58" + }, + { + "label": "Contrôle de la Réponse Immune B et Lymphoproliférations", + "type": "child", + "id": "https://ror.org/02zh2vx86" + }, + { + "label": "Department of Genomes & Genetics", + "type": "child", + "id": "https://ror.org/05etkex69" + }, + { + "label": "Department of Virology", + "type": "child", + "id": "https://ror.org/01xx2ne27" + }, + { + "label": "Developmental Biology Institute of Marseille", + "type": "child", + "id": "https://ror.org/02me5cy06" + }, + { + "label": "Dynamic Neuronal Imaging", + "type": "child", + "id": "https://ror.org/027atwb90" + }, + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Dynamique des Interactions Membranaires Normales et Pathologiques", + "type": "child", + "id": "https://ror.org/00rt27171" + }, + { + "label": "Epigenetics and Cell Fate", + "type": "child", + "id": "https://ror.org/03dbsav41" + }, + { + "label": "Evolution des Régulations Endocriniennes", + "type": "child", + "id": "https://ror.org/03bpcga21" + }, + { + "label": "Expression Génétique Microbienne", + "type": "child", + "id": "https://ror.org/05t5n2z26" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Génomique Métabolique du Genoscope", + "type": "child", + "id": "https://ror.org/00xc55v17" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Immunologie et Neurogénétique Expérimentales et Moléculaires", + "type": "child", + "id": "https://ror.org/01mhd9b84" + }, + { + "label": "Immunologie, Immunopathologie et Chimie Thérapeutique", + "type": "child", + "id": "https://ror.org/041v2hk34" + }, + { + "label": "Institut Cochin", + "type": "child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Jacques Monod", + "type": "child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut NeuroMyoGène", + "type": "child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut Sophia Agrobiotech", + "type": "child", + "id": "https://ror.org/04vj6zn89" + }, + { + "label": "Institut de Biochimie et Génétique Cellulaires", + "type": "child", + "id": "https://ror.org/048xwe611" + }, + { + "label": "Institut de Biologie Moléculaire des Plantes", + "type": "child", + "id": "https://ror.org/01jm8fn98" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Biologie Physico-Chimique", + "type": "child", + "id": "https://ror.org/01na0pb61" + }, + { + "label": "Institut de Biologie Structurale", + "type": "child", + "id": "https://ror.org/04szabx38" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut de Biologie et de Chimie des Protéines", + "type": "child", + "id": "https://ror.org/0019x5d05" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Génomique Fonctionnelle de Lyon", + "type": "child", + "id": "https://ror.org/038fcbc74" + }, + { + "label": "Institut de Génétique Moléculaire de Montpellier", + "type": "child", + "id": "https://ror.org/02785qs39" + }, + { + "label": "Institut de Microbiologie de la Méditerranée", + "type": "child", + "id": "https://ror.org/012t91r40" + }, + { + "label": "Institut de Neurophysiopathologie", + "type": "child", + "id": "https://ror.org/00w2q5j98" + }, + { + "label": "Institut de Neurosciences Cognitives et Intégratives d’Aquitaine", + "type": "child", + "id": "https://ror.org/01a6zh966" + }, + { + "label": "Institut de Neurosciences de la Timone", + "type": "child", + "id": "https://ror.org/043hw6336" + }, + { + "label": "Institut de Pharmacologie Moléculaire et Cellulaire", + "type": "child", + "id": "https://ror.org/05k4ema52" + }, + { + "label": "Institut des Sciences du Mouvement Etienne-Jules Marey", + "type": "child", + "id": "https://ror.org/03tncyc93" + }, + { + "label": "Institut des Sciences du Végétal", + "type": "child", + "id": "https://ror.org/03aqj2f62" + }, + { + "label": "Institut du Cerveau", + "type": "child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Thorax", + "type": "child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "child", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Institute of Biology Valrose", + "type": "child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institute of Cellular and Integrative Neurosciences", + "type": "child", + "id": "https://ror.org/025mhd687" + }, + { + "label": "Institute of Genetics and Development of Rennes", + "type": "child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Institute of Human Genetics", + "type": "child", + "id": "https://ror.org/05ee10k25" + }, + { + "label": "Institut de Myologie", + "type": "child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Institute of Pharmacology and Structural Biology", + "type": "child", + "id": "https://ror.org/016zvc994" + }, + { + "label": "Institute of Research on Cancer and Aging in Nice", + "type": "child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "Integrated Genomics and Metabolic Diseases Modeling", + "type": "child", + "id": "https://ror.org/0300mzg60" + }, + { + "label": "Interdisciplinary Institute for NeuroScience", + "type": "child", + "id": "https://ror.org/032j53342" + }, + { + "label": "International Center for Infectiology Research", + "type": "child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire Physiologie Cellulaire & Végétale", + "type": "child", + "id": "https://ror.org/00jxe7243" + }, + { + "label": "Laboratoire d'Enzymologie et Biochimie Structurales", + "type": "child", + "id": "https://ror.org/00j1y9t40" + }, + { + "label": "Laboratoire de Biogenèse Membranaire", + "type": "child", + "id": "https://ror.org/02nthwg11" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire de Biologie du Développement de Villefranche-sur-Mer", + "type": "child", + "id": "https://ror.org/04hke8425" + }, + { + "label": "Laboratoire de Biologie et Pharmacologie Appliquée", + "type": "child", + "id": "https://ror.org/03njrcx45" + }, + { + "label": "Laboratoire de Chimie Bactérienne", + "type": "child", + "id": "https://ror.org/057zme681" + }, + { + "label": "Laboratoire de Microbiologie et Génétique Moléculaires", + "type": "child", + "id": "https://ror.org/04rrj3a80" + }, + { + "label": "Laboratoire de Neurosciences Cognitives", + "type": "child", + "id": "https://ror.org/02dg3n954" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Adaptatives", + "type": "child", + "id": "https://ror.org/01m71e459" + }, + { + "label": "Laboratoire de PhysioMédecine Moléculaire", + "type": "child", + "id": "https://ror.org/00c3ktd57" + }, + { + "label": "Laboratoire de Psychologie Cognitive", + "type": "child", + "id": "https://ror.org/01rf5x574" + }, + { + "label": "Laboratoire de Psychologie Sociale et Cognitive", + "type": "child", + "id": "https://ror.org/01t4k8953" + }, + { + "label": "Laboratoire de Psychologie et NeuroCognition", + "type": "child", + "id": "https://ror.org/014p6mg26" + }, + { + "label": "Laboratoire de Recherche en Sciences Végétales", + "type": "child", + "id": "https://ror.org/047z5as19" + }, + { + "label": "Laboratoire de Recherche sur la Croissance Cellulaire, la Réparation et la Régénération Tissulaires", + "type": "child", + "id": "https://ror.org/041dsyz88" + }, + { + "label": "Laboratoire de Reproduction et Développement des Plantes", + "type": "child", + "id": "https://ror.org/04w61vh47" + }, + { + "label": "Laboratoire de Sciences Cognitives et Psycholinguistique", + "type": "child", + "id": "https://ror.org/05fvhm231" + }, + { + "label": "Laboratoire des Interactions Plantes Micro-Organismes", + "type": "child", + "id": "https://ror.org/02gwt2810" + }, + { + "label": "Laboratoire des Systèmes Macromoléculaires et Signalisation", + "type": "child", + "id": "https://ror.org/053qdb191" + }, + { + "label": "Laboratoire des Systèmes Perceptifs", + "type": "child", + "id": "https://ror.org/030za3c40" + }, + { + "label": "Laboratory for Research on Learning and Development", + "type": "child", + "id": "https://ror.org/04mp4zc06" + }, + { + "label": "Laboratory of Computational and Quantitative Biology", + "type": "child", + "id": "https://ror.org/00pcqj134" + }, + { + "label": "Laboratoire de Biologie Intégrative des Modèles Marins", + "type": "child", + "id": "https://ror.org/001c8pb03" + }, + { + "label": "Laboratoire de Biologie Moléculaire et Cellulaire des Eucaryotes", + "type": "child", + "id": "https://ror.org/05mx55f96" + }, + { + "label": "Laboratory of Physical and Chemical Biology of Membrane Proteins", + "type": "child", + "id": "https://ror.org/03nr8xh07" + }, + { + "label": "Lyon Neuroscience Research Center", + "type": "child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Microbiology, Adaptation and Pathogenesis Lab", + "type": "child", + "id": "https://ror.org/03p3f6k20" + }, + { + "label": "Modélisation et Ingénierie des Systèmes Complexes Biologiques pour le Diagnostic", + "type": "child", + "id": "https://ror.org/056mmjd70" + }, + { + "label": "Neurodegeneratives Diseases Institute", + "type": "child", + "id": "https://ror.org/001695n52" + }, + { + "label": "Dynamique du noyau", + "type": "child", + "id": "https://ror.org/04team556" + }, + { + "label": "Pathologie et Virologie Moléculaire", + "type": "child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Physico-chimie Curie", + "type": "child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "Biologie du chloroplaste et perception de la lumière chez les micro-algues", + "type": "child", + "id": "https://ror.org/001r32c80" + }, + { + "label": "Physiologie de la Reproduction et des Comportements", + "type": "child", + "id": "https://ror.org/02c6p9834" + }, + { + "label": "Physiology & Experimental Medicine of the Heart and Muscles", + "type": "child", + "id": "https://ror.org/003sscq03" + }, + { + "label": "Plant Genome and Development Laboratory", + "type": "child", + "id": "https://ror.org/038207k30" + }, + { + "label": "Research Centre on Animal Cognition", + "type": "child", + "id": "https://ror.org/0111s2360" + }, + { + "label": "Research Centre on Cognition and Learning", + "type": "child", + "id": "https://ror.org/01sdp1y98" + }, + { + "label": "Structural and Molecular Basis of Infectious Systems", + "type": "child", + "id": "https://ror.org/00jv0wy06" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Glycobiologie Structurale et Fonctionnelle", + "type": "child", + "id": "https://ror.org/02g6y2720" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00rz8kx73.json b/v1.43/00rz8kx73.json new file mode 100644 index 000000000..e7fe75450 --- /dev/null +++ b/v1.43/00rz8kx73.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2641430, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.25, + "lng": -0.88333, + "name": "Northampton" + } + } + ], + "established": 1884, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1011 6814" + ], + "preferred": "0000 0001 1011 6814" + }, + { + "type": "wikidata", + "all": [ + "Q55633416" + ], + "preferred": "Q55633416" + }, + { + "type": "fundref", + "all": [ + "100014660" + ], + "preferred": "100014660" + } + ], + "id": "https://ror.org/00rz8kx73", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.addiction-ssa.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Society_for_the_Study_of_Addiction" + } + ], + "names": [ + { + "value": "Society for the Study of Addiction", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "The Society for the Study of Addiction to Alcohol and other Drugs", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SSA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00s19x989.json b/v1.43/00s19x989.json new file mode 100644 index 000000000..41e0c4b1f --- /dev/null +++ b/v1.43/00s19x989.json @@ -0,0 +1,502 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100017214" + ], + "preferred": "501100017214" + }, + { + "type": "grid", + "all": [ + "grid.457016.1" + ], + "preferred": "grid.457016.1" + } + ], + "id": "https://ror.org/00s19x989", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/insis/" + } + ], + "names": [ + { + "value": "Institut des Sciences de l'Ingénierie et des Systèmes", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INSIS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Andrology Gerontechnology Inflammation Modelisation", + "type": "child", + "id": "https://ror.org/030p0rb34" + }, + { + "label": "Astrophysique Relativiste, Théories, Expériences, Métrologie, Instrumentation, Signaux", + "type": "child", + "id": "https://ror.org/031ah7413" + }, + { + "label": "Automation and Process Engineering Laboratory", + "type": "child", + "id": "https://ror.org/03kfjwy31" + }, + { + "label": "Biomécanique et Bioingénierie", + "type": "child", + "id": "https://ror.org/03yaydt41" + }, + { + "label": "Center for Magnetic Resonance in Biology and Medicine", + "type": "child", + "id": "https://ror.org/04ceg1205" + }, + { + "label": "Centre Régional d’Innovation et de Transferts Technologiques des Industries du Bois", + "type": "child", + "id": "https://ror.org/016crzw98" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Centre des Matériaux", + "type": "child", + "id": "https://ror.org/01q5ge486" + }, + { + "label": "Centre for Energy and Thermal Sciences of Lyon", + "type": "child", + "id": "https://ror.org/01k383v05" + }, + { + "label": "Centre for Material Forming", + "type": "child", + "id": "https://ror.org/00qm1ye08" + }, + { + "label": "Complexe de Recherche Interprofessionnel en Aérothermochimie", + "type": "child", + "id": "https://ror.org/01k1ngp50" + }, + { + "label": "Contact and Structure Mechanics Laboratory", + "type": "child", + "id": "https://ror.org/05s608j53" + }, + { + "label": "Fonctions Optiques pour les Technologies de l’information", + "type": "child", + "id": "https://ror.org/03yn94905" + }, + { + "label": "Franche-Comté Électronique Mécanique Thermique et Optique - Sciences et Technologies", + "type": "child", + "id": "https://ror.org/004fmxv66" + }, + { + "label": "Fédération de Recherche FCLAB", + "type": "child", + "id": "https://ror.org/01kvxx237" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Georges Friedel Laboratory", + "type": "child", + "id": "https://ror.org/01prxdf57" + }, + { + "label": "Georgia Tech-CNRS Laboratory", + "type": "child", + "id": "https://ror.org/00avmbz91" + }, + { + "label": "Groupe de Recherches sur l'Energétique des Milieux Ionisés", + "type": "child", + "id": "https://ror.org/042ds2135" + }, + { + "label": "Ingénierie Moléculaire et Physiopathologie Articulaire", + "type": "child", + "id": "https://ror.org/04yc2e502" + }, + { + "label": "Institut Fresnel", + "type": "child", + "id": "https://ror.org/03br1wy20" + }, + { + "label": "Institut Jean Le Rond d'Alembert", + "type": "child", + "id": "https://ror.org/043we9s22" + }, + { + "label": "Institut Pascal", + "type": "child", + "id": "https://ror.org/03vgfxd91" + }, + { + "label": "Institut Pprime", + "type": "child", + "id": "https://ror.org/05vjdsn22" + }, + { + "label": "Institut Universitaire des Systèmes Thermiques Industriels", + "type": "child", + "id": "https://ror.org/04bgbbh33" + }, + { + "label": "Institut d'Électronique et des Systèmes", + "type": "child", + "id": "https://ror.org/0431hh004" + }, + { + "label": "Institut de Combustion Aérothermique Réactivité et Environnement", + "type": "child", + "id": "https://ror.org/03txr3336" + }, + { + "label": "Institut de Microélectronique, Electromagnétisme et Photonique", + "type": "child", + "id": "https://ror.org/03taa9n66" + }, + { + "label": "Institut de Recherche en Génie Civil et Mécanique", + "type": "child", + "id": "https://ror.org/03x30hb31" + }, + { + "label": "Institut de Recherche sur les Phénomènes Hors Équilibre", + "type": "child", + "id": "https://ror.org/03zq0xc17" + }, + { + "label": "Institut des Nanotechnologies de Lyon", + "type": "child", + "id": "https://ror.org/04jsk0b74" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "Institute of Electronics, Microelectronics and Nanotechnology", + "type": "child", + "id": "https://ror.org/02q4res37" + }, + { + "label": "Institute of Fluid Mechanics of Toulouse", + "type": "child", + "id": "https://ror.org/025nmxp11" + }, + { + "label": "Institute of Mechanics and Engineering", + "type": "child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire Ampère", + "type": "child", + "id": "https://ror.org/04xbczw40" + }, + { + "label": "Laboratoire Hubert Curien", + "type": "child", + "id": "https://ror.org/0028p8r67" + }, + { + "label": "Laboratoire Matière et Systèmes Complexes", + "type": "child", + "id": "https://ror.org/032w6q449" + }, + { + "label": "Laboratoire Modélisation et Simulation Multi-Echelle", + "type": "child", + "id": "https://ror.org/04rrzfd14" + }, + { + "label": "Laboratoire Optimisation de la Conception et Ingénierie de l'Environnement", + "type": "child", + "id": "https://ror.org/015gaxx73" + }, + { + "label": "Laboratoire Procédés, Matériaux et Energie Solaire", + "type": "child", + "id": "https://ror.org/05thdk431" + }, + { + "label": "Laboratoire Rhéologie et Procédés", + "type": "child", + "id": "https://ror.org/044ggyg50" + }, + { + "label": "Laboratoire Roberval", + "type": "child", + "id": "https://ror.org/023ffhx15" + }, + { + "label": "Laboratoire Réactions et Génie des Procédés", + "type": "child", + "id": "https://ror.org/00p6sn362" + }, + { + "label": "Laboratoire d'Energétique et de Mécanique Théorique et Appliquée", + "type": "child", + "id": "https://ror.org/01pfter31" + }, + { + "label": "Laboratoire d'Hydrodynamique", + "type": "child", + "id": "https://ror.org/018b0x874" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Biologiques et des Procédés", + "type": "child", + "id": "https://ror.org/01yypjb30" + }, + { + "label": "Laboratoire d'Électronique, Antennes et Télécommunications", + "type": "child", + "id": "https://ror.org/00ah32k04" + }, + { + "label": "Laboratoire d'Énergétique Moléculaire et Macroscopique, Combustion", + "type": "child", + "id": "https://ror.org/02wy3s959" + }, + { + "label": "Laboratoire de Génie Chimique", + "type": "child", + "id": "https://ror.org/003jnac13" + }, + { + "label": "Laboratoire de Génie Électrique de Grenoble", + "type": "child", + "id": "https://ror.org/05hyx5a17" + }, + { + "label": "Laboratoire de Mécanique des Fluides et d'Acoustique", + "type": "child", + "id": "https://ror.org/04dxeze48" + }, + { + "label": "Laboratoire de Mécanique et Génie Civil", + "type": "child", + "id": "https://ror.org/02fke9256" + }, + { + "label": "Laboratoire de Mécanique, Modélisation & Procédés Propres", + "type": "child", + "id": "https://ror.org/01vrxpt40" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Laboratoire de Recherche Hydrodynamique, Energétique et Environnement Atmosphérique", + "type": "child", + "id": "https://ror.org/057axh226" + }, + { + "label": "Laboratoire de Tribologie et Dynamique des Systèmes", + "type": "child", + "id": "https://ror.org/015vtcw98" + }, + { + "label": "Laboratoire de l'Intégration du Matériau au Système", + "type": "child", + "id": "https://ror.org/04nabhy78" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur pour l'Environnement", + "type": "child", + "id": "https://ror.org/01b2epx09" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratoire des Sciences des Procédés et des Matériaux", + "type": "child", + "id": "https://ror.org/01yr0r787" + }, + { + "label": "Laboratoire des Technologies de la Microélectronique", + "type": "child", + "id": "https://ror.org/036zswm25" + }, + { + "label": "Laboratoire des Écoulements Géophysiques et Industriels", + "type": "child", + "id": "https://ror.org/043pfpy19" + }, + { + "label": "Laboratory for Analysis and Architecture of Systems", + "type": "child", + "id": "https://ror.org/03vcm6439" + }, + { + "label": "Laboratory for Integrated Micro-Mechatronic Systems", + "type": "child", + "id": "https://ror.org/0059vr703" + }, + { + "label": "Laboratory of Mechanics and Acoustics", + "type": "child", + "id": "https://ror.org/03787ar02" + }, + { + "label": "Laboratory of Microstructure Studies and Mechanics of Materials", + "type": "child", + "id": "https://ror.org/01nyrrx14" + }, + { + "label": "Laboratory of Physics of Interfaces and Thin Films", + "type": "child", + "id": "https://ror.org/023f9y602" + }, + { + "label": "Laboratory of Pulp and Paper Science and Graphic Arts", + "type": "child", + "id": "https://ror.org/02z8yps18" + }, + { + "label": "Laboratory of Quantum and Molecular Photonics", + "type": "child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Laboratoire de Thermique et Energie de Nantes", + "type": "child", + "id": "https://ror.org/021fdyt09" + }, + { + "label": "Laboratory on Plasma and Conversion of Energy", + "type": "child", + "id": "https://ror.org/02w5mvk98" + }, + { + "label": "Matériaux Ingénierie et Science", + "type": "child", + "id": "https://ror.org/01rnfhz46" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "PhysicoChimie des Processus de Combustion et de l'Atmosphère", + "type": "child", + "id": "https://ror.org/03k9wer31" + }, + { + "label": "Physics of Ionic and Molecular Interactions", + "type": "child", + "id": "https://ror.org/04kgf6p94" + }, + { + "label": "Physique et Mécanique des Milieux Hétérogènes", + "type": "child", + "id": "https://ror.org/03kr50w79" + }, + { + "label": "Process Engineering for Environment and Food", + "type": "child", + "id": "https://ror.org/05ngxmx20" + }, + { + "label": "Processes and Engineering in Mechanics and Materials", + "type": "child", + "id": "https://ror.org/017jp7t31" + }, + { + "label": "Solids Mechanic Laboratory", + "type": "child", + "id": "https://ror.org/00xd1ek73" + }, + { + "label": "Sols, Solides, Structures, Risques", + "type": "child", + "id": "https://ror.org/03bcdsr62" + }, + { + "label": "Techniques for Biomedical Engineering and Complexity Management–Informatics, Mathematics and Applications Grenoble", + "type": "child", + "id": "https://ror.org/03985kf35" + }, + { + "label": "Wave Propagation Mathematical Study and Simulation", + "type": "child", + "id": "https://ror.org/03gvm2667" + }, + { + "label": "XLIM", + "type": "child", + "id": "https://ror.org/00f7srh09" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00s3s5518.json b/v1.43/00s3s5518.json new file mode 100644 index 000000000..214893227 --- /dev/null +++ b/v1.43/00s3s5518.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 108410, + "geonames_details": { + "country_code": "SA", + "country_name": "Saudi Arabia", + "lat": 24.68773, + "lng": 46.72185, + "name": "Riyadh" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9360 4152" + ], + "preferred": "0000 0004 9360 4152" + }, + { + "type": "wikidata", + "all": [ + "Q12236085" + ], + "preferred": "Q12236085" + }, + { + "type": "fundref", + "all": [ + "100019217" + ], + "preferred": "100019217" + } + ], + "id": "https://ror.org/00s3s5518", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.um.edu.sa" + } + ], + "names": [ + { + "value": "Almaarefa University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "جامعة المعرفة", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "UM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00s409261.json b/v1.43/00s409261.json new file mode 100644 index 000000000..e0b21eaa9 --- /dev/null +++ b/v1.43/00s409261.json @@ -0,0 +1,112 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-08-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1998, + "external_ids": [ + { + "all": [ + "501100005389" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.18147.3b" + ], + "preferred": "grid.18147.3b", + "type": "grid" + }, + { + "all": [ + "0000 0001 2172 4807" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1309998" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00s409261", + "links": [ + { + "type": "website", + "value": "http://www.uninsubria.eu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Insubria" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.82058, + "lng": 8.82511, + "name": "Varese" + }, + "geonames_id": 3164699 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Insubria" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Università degli Studi dell'Insubria" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de l'insubrie" + } + ], + "relationships": [ + { + "label": "Ospedale Filippo Del Ponte Varese", + "type": "related", + "id": "https://ror.org/02112mb03" + }, + { + "label": "Ospedale di Circolo e Fondazione Macchi", + "type": "related", + "id": "https://ror.org/02s6h0431" + }, + { + "label": "NODES S.c.a.r.l", + "type": "related", + "id": "https://ror.org/04hp1ky92" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00sef7t37.json b/v1.43/00sef7t37.json new file mode 100644 index 000000000..94ed10414 --- /dev/null +++ b/v1.43/00sef7t37.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 1606147, + "geonames_details": { + "country_code": "TH", + "country_name": "Thailand", + "lat": 7.19882, + "lng": 100.5951, + "name": "Songkhla" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7832 2704" + ], + "preferred": "0000 0004 7832 2704" + }, + { + "type": "fundref", + "all": [ + "501100010725" + ], + "preferred": "501100010725" + } + ], + "id": "https://ror.org/00sef7t37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cas.or.th" + } + ], + "names": [ + { + "value": "Center for Alcohol Studies", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CAS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00sh68184.json b/v1.43/00sh68184.json new file mode 100644 index 000000000..0cc3dd1c3 --- /dev/null +++ b/v1.43/00sh68184.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2917698, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 47.55, + "lng": 7.68333, + "name": "Grenzach-Wyhlen" + } + } + ], + "established": 1896, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424277.0" + ], + "preferred": "grid.424277.0" + }, + { + "type": "wikidata", + "all": [ + "Q30254367" + ], + "preferred": "Q30254367" + }, + { + "type": "isni", + "all": [ + "0000 0004 0397 3959" + ], + "preferred": "0000 0004 0397 3959" + }, + { + "type": "fundref", + "all": [ + "100020957" + ], + "preferred": "100020957" + } + ], + "id": "https://ror.org/00sh68184", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.roche.de" + } + ], + "names": [ + { + "value": "Roche Pharma AG (Germany)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Roche Germany", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Roche Pharma AG", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Roche (Switzerland)", + "type": "parent", + "id": "https://ror.org/00by1q217" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00skw9v43.json b/v1.43/00skw9v43.json new file mode 100644 index 000000000..687cd93bc --- /dev/null +++ b/v1.43/00skw9v43.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0410 8422" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q51784646" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503366.5" + ], + "preferred": "grid.503366.5" + } + ], + "id": "https://ror.org/00skw9v43", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://l2s.centralesupelec.fr" + } + ], + "names": [ + { + "value": "Laboratoire des signaux et systèmes", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire des signaux & systèmes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "L2S", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "CentraleSupélec", + "type": "parent", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00sps5y96.json b/v1.43/00sps5y96.json new file mode 100644 index 000000000..209ec9b38 --- /dev/null +++ b/v1.43/00sps5y96.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2106 0959" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434661.2" + ], + "preferred": "grid.434661.2" + } + ], + "id": "https://ror.org/00sps5y96", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cotec.es" + } + ], + "names": [ + { + "value": "Fundación para la innovación tecnológica", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "COTEC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00tdqgq45.json b/v1.43/00tdqgq45.json new file mode 100644 index 000000000..30263136b --- /dev/null +++ b/v1.43/00tdqgq45.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6138201, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 48.65007, + "lng": -72.44906, + "name": "Saint-Félicien" + } + } + ], + "established": 1971, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0216 404X" + ], + "preferred": "0000 0001 0216 404X" + }, + { + "type": "wikidata", + "all": [ + "Q3010005" + ], + "preferred": "Q3010005" + } + ], + "id": "https://ror.org/00tdqgq45", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cegepstfe.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/C%C3%A9gep_de_Saint-F%C3%A9licien" + } + ], + "names": [ + { + "value": "Cégep de Saint-Félicien", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00tpn9z48.json b/v1.43/00tpn9z48.json new file mode 100644 index 000000000..d781d2259 --- /dev/null +++ b/v1.43/00tpn9z48.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 3113209, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.431, + "lng": -8.64435, + "name": "Pontevedra" + } + } + ], + "established": 1921, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2292 6080" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q38078567" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.502190.f" + ], + "preferred": "grid.502190.f" + } + ], + "id": "https://ror.org/00tpn9z48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mbg.csic.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Galicia_Biological_Mission" + } + ], + "names": [ + { + "value": "Misión Biológica de Galicia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Biological Mission of Galicia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Galicia Biological Mission", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "MBG-CSIC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Consejo Superior de Investigaciones Científicas", + "type": "parent", + "id": "https://ror.org/02gfc7t72" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00v4yb702.json b/v1.43/00v4yb702.json new file mode 100644 index 000000000..4b99a9259 --- /dev/null +++ b/v1.43/00v4yb702.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1829, + "external_ids": [ + { + "all": [ + "grid.262613.2" + ], + "preferred": "grid.262613.2", + "type": "grid" + }, + { + "all": [ + "0000 0001 2323 3518" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2140778" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00v4yb702", + "links": [ + { + "type": "website", + "value": "http://www.rit.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Rochester_Institute_of_Technology" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.15478, + "lng": -77.61556, + "name": "Rochester" + }, + "geonames_id": 5134086 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "RIT" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Rochester Athenaeum and Mechanics Institute" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Rochester Institute of Technology" + } + ], + "relationships": [ + { + "label": "Rochester Institute of Technology Croatia", + "type": "related", + "id": "https://ror.org/03jgxzm03" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00v9a4y41.json b/v1.43/00v9a4y41.json new file mode 100644 index 000000000..346026be4 --- /dev/null +++ b/v1.43/00v9a4y41.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3027301, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.92375, + "lng": 6.86933, + "name": "Chamonix" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q2945473" + ], + "preferred": "Q2945473" + } + ], + "id": "https://ror.org/00v9a4y41", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://creamontblanc.org" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_de_recherches_sur_les_%C3%A9cosyst%C3%A8mes_d%27altitude" + } + ], + "names": [ + { + "value": "CREA Mont-Blanc", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre de recherches sur les écosystèmes d'altitude", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CREA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00vc14296.json b/v1.43/00vc14296.json new file mode 100644 index 000000000..428a9d124 --- /dev/null +++ b/v1.43/00vc14296.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1827, + "external_ids": [ + { + "all": [ + "grid.431583.8" + ], + "preferred": "grid.431583.8", + "type": "grid" + }, + { + "all": [ + "0000 0000 8867 670X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5649375" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00vc14296", + "links": [ + { + "type": "website", + "value": "https://www.hanover.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Hanover_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.71423, + "lng": -85.47357, + "name": "Hanover" + }, + "geonames_id": 4258510 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hanover College" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00vtgdb53.json b/v1.43/00vtgdb53.json new file mode 100644 index 000000000..d8ae3a673 --- /dev/null +++ b/v1.43/00vtgdb53.json @@ -0,0 +1,209 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1451, + "external_ids": [ + { + "all": [ + "501100000853" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.8756.c" + ], + "preferred": "grid.8756.c", + "type": "grid" + }, + { + "all": [ + "0000 0001 2193 314X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q192775" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00vtgdb53", + "links": [ + { + "type": "website", + "value": "http://www.gla.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Glasgow" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.86515, + "lng": -4.25763, + "name": "Glasgow" + }, + "geonames_id": 2648579 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Glasgow University" + }, + { + "lang": "gd", + "types": [ + "label" + ], + "value": "Oilthigh Ghlaschu" + }, + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Prifysgol Glasgow" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Glasgow" + } + ], + "relationships": [ + { + "label": "MRC University of Glasgow Centre for Virus Research", + "type": "child", + "id": "https://ror.org/03vaer060" + }, + { + "label": "MRC/CSO Social and Public Health Sciences Unit", + "type": "child", + "id": "https://ror.org/02v3sdn51" + }, + { + "label": "Malawi Epidemiology and Intervention Research Unit", + "type": "child", + "id": "https://ror.org/045z18t19" + }, + { + "label": "National Centre for Resilience", + "type": "child", + "id": "https://ror.org/03fr3nn32" + }, + { + "label": "Scottish Universities Environmental Research Centre", + "type": "child", + "id": "https://ror.org/05jfq2w07" + }, + { + "label": "The Hunterian", + "type": "child", + "id": "https://ror.org/04s5hmf73" + }, + { + "label": "Wellcome Centre for Molecular Parasitology", + "type": "child", + "id": "https://ror.org/00m7w8s72" + }, + { + "label": "Gartnavel General Hospital", + "type": "related", + "id": "https://ror.org/00tkrd758" + }, + { + "label": "Glasgow Royal Infirmary", + "type": "related", + "id": "https://ror.org/00bjck208" + }, + { + "label": "Glasgow Victoria Infirmary", + "type": "related", + "id": "https://ror.org/03cjp2c87" + }, + { + "label": "Golden Jubilee National Hospital", + "type": "related", + "id": "https://ror.org/0103jbm17" + }, + { + "label": "Hairmyres Hospital", + "type": "related", + "id": "https://ror.org/0488ndr53" + }, + { + "label": "Inverclyde Royal Hospital", + "type": "related", + "id": "https://ror.org/01s0phq15" + }, + { + "label": "Princess Royal Maternity Hospital", + "type": "related", + "id": "https://ror.org/053eyjs84" + }, + { + "label": "Royal Alexandra Hospital", + "type": "related", + "id": "https://ror.org/01nj8sa76" + }, + { + "label": "Royal Hospital for Children", + "type": "related", + "id": "https://ror.org/01cb0kd74" + }, + { + "label": "Southern General Hospital", + "type": "related", + "id": "https://ror.org/04wvkky61" + }, + { + "label": "Stobhill Hospital", + "type": "related", + "id": "https://ror.org/04pc31859" + }, + { + "label": "Western Infirmary", + "type": "related", + "id": "https://ror.org/02e22bh87" + }, + { + "label": "Scottish Confederation of University and Research Libraries", + "type": "related", + "id": "https://ror.org/03hkzcg46" + }, + { + "label": "QuantIC", + "type": "child", + "id": "https://ror.org/04qdwq068" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00vvz3k68.json b/v1.43/00vvz3k68.json new file mode 100644 index 000000000..82e59e64b --- /dev/null +++ b/v1.43/00vvz3k68.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 1264527, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 13.08784, + "lng": 80.27847, + "name": "Chennai" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6050 1114" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30263769" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.466628.8" + ], + "preferred": "grid.466628.8" + } + ], + "id": "https://ror.org/00vvz3k68", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.eso.sankaranethralaya.org" + } + ], + "names": [ + { + "value": "Elite School of Optometry", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ESO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Sankara Nethralaya", + "type": "parent", + "id": "https://ror.org/02k0t9a94" + }, + { + "label": "SASTRA University", + "type": "related", + "id": "https://ror.org/032jk8892" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00w67e447.json b/v1.43/00w67e447.json new file mode 100644 index 000000000..7f4721c82 --- /dev/null +++ b/v1.43/00w67e447.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0366 8268" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503330.6" + ], + "preferred": "grid.503330.6" + } + ], + "id": "https://ror.org/00w67e447", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lptms.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratory of Theoretical Physics and Statistical Models", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire de Physique Théorique et Modèles Statistiques", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "LPTMS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00wd0xj77.json b/v1.43/00wd0xj77.json new file mode 100644 index 000000000..c30a4b0cc --- /dev/null +++ b/v1.43/00wd0xj77.json @@ -0,0 +1,60 @@ +{ + "locations": [ + { + "geonames_id": 1514588, + "geonames_details": { + "country_code": "UZ", + "country_name": "Uzbekistan", + "lat": 40.78206, + "lng": 72.34424, + "name": "Andijan" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/00wd0xj77", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://adpi.uz" + }, + { + "type": "wikipedia", + "value": "https://uz.wikipedia.org/wiki/Andijon_davlat_pedagogika_instituti" + } + ], + "names": [ + { + "value": "Andijon Davlat Pedagogika instituti", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Andijan State Pedagogical Institute", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00wk2mp56.json b/v1.43/00wk2mp56.json new file mode 100644 index 000000000..5e6d1c6b9 --- /dev/null +++ b/v1.43/00wk2mp56.json @@ -0,0 +1,115 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1952, + "external_ids": [ + { + "all": [ + "501100002358", + "501100003096" + ], + "preferred": "501100002358", + "type": "fundref" + }, + { + "all": [ + "grid.64939.31" + ], + "preferred": "grid.64939.31", + "type": "grid" + }, + { + "all": [ + "0000 0000 9999 1211" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2299797" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00wk2mp56", + "links": [ + { + "type": "website", + "value": "http://ev.buaa.edu.cn/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Beihang_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + }, + "geonames_id": 1816670 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BUAA" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Beihang University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Beijing University of Aeronautics and Astronautics" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "北京航空航天大学" + } + ], + "relationships": [ + { + "label": "State Key Laboratory of Software Development Environment", + "type": "child", + "id": "https://ror.org/017r4dj03" + }, + { + "label": "State Key Laboratory of Virtual Reality Technology and Systems", + "type": "child", + "id": "https://ror.org/0009eea46" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00ws85526.json b/v1.43/00ws85526.json new file mode 100644 index 000000000..887c6cd0d --- /dev/null +++ b/v1.43/00ws85526.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3128026, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.436451.1" + ], + "preferred": "grid.436451.1" + } + ], + "id": "https://ror.org/00ws85526", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.metrobilbao.eus" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Metro_Bilbao" + } + ], + "names": [ + { + "value": "Metro Bilbao", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Metro de Bilbao", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Bilboko metroa", + "types": [ + "label" + ], + "lang": "eu" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00wtrxf04.json b/v1.43/00wtrxf04.json new file mode 100644 index 000000000..aee3fa3e9 --- /dev/null +++ b/v1.43/00wtrxf04.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 4930956, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.35843, + "lng": -71.05977, + "name": "Boston" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100014872" + ], + "preferred": "100014872" + } + ], + "id": "https://ror.org/00wtrxf04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://oshercenter.org" + } + ], + "names": [ + { + "value": "Osher Center for Integrative Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Brigham and Women's Hospital", + "type": "parent", + "id": "https://ror.org/04b6nzv94" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00wvqgd19.json b/v1.43/00wvqgd19.json new file mode 100644 index 000000000..0647fb531 --- /dev/null +++ b/v1.43/00wvqgd19.json @@ -0,0 +1,114 @@ +{ + "locations": [ + { + "geonames_id": 3116503, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.06441, + "lng": -2.48977, + "name": "Arrasate / Mondragón" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0662 2298" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2599486" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.436417.3" + ], + "preferred": "grid.436417.3" + } + ], + "id": "https://ror.org/00wvqgd19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.mondragon.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Mondrag%C3%B3n" + } + ], + "names": [ + { + "value": "Mondragon University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidad de Mondragón", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Mondragon Unibertsitatea", + "types": [ + "label" + ], + "lang": "eu" + }, + { + "value": "Universidade de Mondragón", + "types": [ + "label" + ], + "lang": "gl" + }, + { + "value": "MU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Basque Culinary Center", + "type": "related", + "id": "https://ror.org/03ftn5w97" + }, + { + "label": "Mondragon Corporation (Spain)", + "type": "parent", + "id": "https://ror.org/00fxswh37" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00wxgxz56.json b/v1.43/00wxgxz56.json new file mode 100644 index 000000000..15f308d0e --- /dev/null +++ b/v1.43/00wxgxz56.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 2510409, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.8581, + "lng": -4.02263, + "name": "Toledo" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7406 9449" + ], + "preferred": "0000 0004 7406 9449" + }, + { + "type": "wikidata", + "all": [ + "Q107611919" + ], + "preferred": "Q107611919" + } + ], + "id": "https://ror.org/00wxgxz56", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://hospitaluniversitariodetoledo.es" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Hospital_Universitario_de_Toledo" + } + ], + "names": [ + { + "value": "Hospital Universitario de Toledo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University Hospital of Toledo", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Hospital Virgen de la Salud", + "type": "predecessor", + "id": "https://ror.org/0289cxp23" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00x362k69.json b/v1.43/00x362k69.json new file mode 100644 index 000000000..da08ed44a --- /dev/null +++ b/v1.43/00x362k69.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1954, + "external_ids": [ + { + "all": [ + "grid.278859.9" + ], + "preferred": "grid.278859.9", + "type": "grid" + }, + { + "all": [ + "0000 0004 0486 659X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7270336" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00x362k69", + "links": [ + { + "type": "website", + "value": "http://www.sahealth.sa.gov.au/wps/wcm/connect/public+content/sa+health+internet/health+services/hospitals+and+health+services+metropolitan+adelaide/the+queen+elizabeth+hospital/the+queen+elizabeth+hospital" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Queen_Elizabeth_Hospital,_Adelaide" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -34.92866, + "lng": 138.59863, + "name": "Adelaide" + }, + "geonames_id": 2078025 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Queen Elizabeth Hospital" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "TQEH" + } + ], + "relationships": [ + { + "label": "Central Adelaide Local Health Network", + "type": "parent", + "id": "https://ror.org/02r40rn49" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/00xexfj57.json b/v1.43/00xexfj57.json new file mode 100644 index 000000000..bccccd243 --- /dev/null +++ b/v1.43/00xexfj57.json @@ -0,0 +1,104 @@ +{ + "locations": [ + { + "geonames_id": 112931, + "geonames_details": { + "country_code": "IR", + "country_name": "Iran", + "lat": 35.69439, + "lng": 51.42151, + "name": "Tehran" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0745 840X" + ], + "preferred": "0000 0001 0745 840X" + }, + { + "type": "wikidata", + "all": [ + "Q10860433" + ], + "preferred": "Q10860433" + } + ], + "id": "https://ror.org/00xexfj57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://irandoc.ac.ir" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Iranian_Research_Institute_for_Information_Science_and_Technology" + } + ], + "names": [ + { + "value": "Iranian Research Institute for Information Science and Technology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IranDoc", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "یرانداک", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "پژوهشگاه علوم و فناوری اطلاعات ایران (ایرانداک)", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Iranian Research Institute for Scientific Information and Documentation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "پژوهشگاه علوم و فناوری اطلاعات ایران", + "types": [ + "label" + ], + "lang": "fa" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00xn1pr13.json b/v1.43/00xn1pr13.json new file mode 100644 index 000000000..ebc8ac13a --- /dev/null +++ b/v1.43/00xn1pr13.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 2849483, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.01513, + "lng": 12.10161, + "name": "Regensburg" + } + } + ], + "established": 2022, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q110516280" + ], + "preferred": "Q110516280" + } + ], + "id": "https://ror.org/00xn1pr13", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://lit.eu" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Leibniz-Institut_f%C3%BCr_Immuntherapie" + } + ], + "names": [ + { + "value": "Leibniz Institute for Immunotherapy", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Regensburger Centrum für Interventionelle Immunologie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Leibniz-Institut für Immuntherapie", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "LIT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00xp1b128.json b/v1.43/00xp1b128.json new file mode 100644 index 000000000..4b0f2ccd9 --- /dev/null +++ b/v1.43/00xp1b128.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5911606, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 49.26636, + "lng": -122.95263, + "name": "Burnaby" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9224 2604" + ], + "preferred": "0000 0004 9224 2604" + }, + { + "type": "fundref", + "all": [ + "501100015741" + ], + "preferred": "501100015741" + } + ], + "id": "https://ror.org/00xp1b128", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://kidsbrainhealth.ca" + } + ], + "names": [ + { + "value": "Kids Brain Health Network", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Réseau pour la Santé du Cerveau des Enfants", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "KBHN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00xsz4758.json b/v1.43/00xsz4758.json new file mode 100644 index 000000000..6dce669ac --- /dev/null +++ b/v1.43/00xsz4758.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9224 2380" + ], + "preferred": "0000 0004 9224 2380" + }, + { + "type": "fundref", + "all": [ + "100015763" + ], + "preferred": "100015763" + } + ], + "id": "https://ror.org/00xsz4758", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.leukaemiauk.org.uk" + } + ], + "names": [ + { + "value": "Leukaemia UK", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00xzacp61.json b/v1.43/00xzacp61.json new file mode 100644 index 000000000..7c9814bdd --- /dev/null +++ b/v1.43/00xzacp61.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 2660646, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.20222, + "lng": 6.14569, + "name": "Geneva" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q105573106" + ], + "preferred": "Q105573106" + }, + { + "type": "fundref", + "all": [ + "100018011" + ], + "preferred": "100018011" + } + ], + "id": "https://ror.org/00xzacp61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nccr-swissmap.ch" + } + ], + "names": [ + { + "value": "NCCR SwissMAP", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Centres of Competence in Research SwissMAP", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SwissMAP – The Mathematics of Physics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SwissMAP", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Swiss National Science Foundation", + "type": "parent", + "id": "https://ror.org/00yjd3n13" + }, + { + "label": "ETH Zurich", + "type": "parent", + "id": "https://ror.org/05a28rw58" + }, + { + "label": "University of Geneva", + "type": "parent", + "id": "https://ror.org/01swzsf04" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00y0aj963.json b/v1.43/00y0aj963.json new file mode 100644 index 000000000..5a28f61a0 --- /dev/null +++ b/v1.43/00y0aj963.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30256790" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434604.1" + ], + "preferred": "grid.434604.1" + } + ], + "id": "https://ror.org/00y0aj963", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.thecorebike.com/" + } + ], + "names": [ + { + "value": "Going Green (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00y1k7p64.json b/v1.43/00y1k7p64.json new file mode 100644 index 000000000..8dabb03b8 --- /dev/null +++ b/v1.43/00y1k7p64.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 7296779, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.9863, + "lng": -2.11252, + "name": "Gargrave" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/00y1k7p64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.scapahealthcare.com" + } + ], + "names": [ + { + "value": "Scapa Healthcare (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Scapa Healthcare", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00y6q9n79.json b/v1.43/00y6q9n79.json new file mode 100644 index 000000000..f2018281a --- /dev/null +++ b/v1.43/00y6q9n79.json @@ -0,0 +1,124 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1977, + "external_ids": [ + { + "all": [ + "501100003751", + "100016145", + "100016658" + ], + "preferred": "501100003751", + "type": "fundref" + }, + { + "all": [ + "grid.436087.e" + ], + "preferred": "grid.436087.e", + "type": "grid" + }, + { + "all": [ + "Q3113883" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00y6q9n79", + "links": [ + { + "type": "website", + "value": "https://www.sanidad.gob.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Health_(Spain)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + }, + "geonames_id": 3117735 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MISAN" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Ministerio de Sanidad Servicios Sociales e Igualdad" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Ministry of Health" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Ministry of Health, Social Services and Equality" + } + ], + "relationships": [ + { + "label": "Agencia Española de Consumo, Seguridad Alimentaría y Nutrición", + "type": "child", + "id": "https://ror.org/02nbvj238" + }, + { + "label": "Agencia Española de Medicamentos y Productos Sanitarios", + "type": "child", + "id": "https://ror.org/043fs9135" + }, + { + "label": "Organización Nacional de Trasplantes", + "type": "child", + "id": "https://ror.org/00v1wt879" + }, + { + "label": "Spanish National Centre for Cardiovascular Research", + "type": "child", + "id": "https://ror.org/02qs1a797" + }, + { + "label": "Sistema Nacional de Salud", + "type": "child", + "id": "https://ror.org/026z37f85" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/00y7tet25.json b/v1.43/00y7tet25.json new file mode 100644 index 000000000..1425f67b4 --- /dev/null +++ b/v1.43/00y7tet25.json @@ -0,0 +1,67 @@ +{ + "admin": { + "created": { + "date": "2022-06-16", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-06-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2017, + "external_ids": [], + "id": "https://ror.org/00y7tet25", + "links": [ + { + "type": "website", + "value": "https://eurogen-ern.eu" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + }, + "geonames_id": 2750053 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "ERN eUROGEN" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "European Reference Network on urogenital diseases and conditions" + } + ], + "relationships": [ + { + "label": "ERN Board of Member States", + "type": "parent", + "id": "https://ror.org/00r7apq26" + }, + { + "label": "Radboud University Medical Center", + "type": "related", + "id": "https://ror.org/05wg1m734" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/00yjd3n13.json b/v1.43/00yjd3n13.json new file mode 100644 index 000000000..6b6c0e17c --- /dev/null +++ b/v1.43/00yjd3n13.json @@ -0,0 +1,162 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1952, + "external_ids": [ + { + "all": [ + "501100001711", + "501100002339" + ], + "preferred": "501100001711", + "type": "fundref" + }, + { + "all": [ + "grid.425888.b" + ], + "preferred": "grid.425888.b", + "type": "grid" + }, + { + "all": [ + "0000 0001 1957 0992" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q471732", + "Q45132019" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00yjd3n13", + "links": [ + { + "type": "website", + "value": "http://www.snf.ch/en" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Swiss_National_Science_Foundation" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.94809, + "lng": 7.44744, + "name": "Bern" + }, + "geonames_id": 2661552 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "FNS" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Fondo Nazionale Svizzero per la Ricerca Scientifica" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Fonds national suisse de la recherche scientifique" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SNF" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SNSF" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Schweizerische Nationalfonds zur Förderung der wissenschaftlichen Forschung" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Swiss National Science Foundation" + } + ], + "relationships": [ + { + "label": "National Centre of Competence in Research Evolving Language", + "type": "child", + "id": "https://ror.org/00ghka958" + }, + { + "label": "National Centre of Competence in Research Digital Fabrication", + "type": "child", + "id": "https://ror.org/03xf64p49" + }, + { + "label": "National Centre of Competence in Research Robotics", + "type": "child", + "id": "https://ror.org/02rdd8804" + }, + { + "label": "National Center of Competence in Research Materials’ Revolution: Computational Design and Discovery of Novel Materials", + "type": "child", + "id": "https://ror.org/00vvxbe27" + }, + { + "label": "nccr – on the move", + "type": "child", + "id": "https://ror.org/055d2j725" + }, + { + "label": "Swiss National Data and Service Center for the Humanities", + "type": "related", + "id": "https://ror.org/047f01g80" + }, + { + "label": "NCCR SwissMAP", + "type": "child", + "id": "https://ror.org/00xzacp61" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/00z54nq84.json b/v1.43/00z54nq84.json new file mode 100644 index 000000000..61880f47a --- /dev/null +++ b/v1.43/00z54nq84.json @@ -0,0 +1,312 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8863 6724" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457018.f" + ], + "preferred": "grid.457018.f" + } + ], + "id": "https://ror.org/00z54nq84", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/inp/" + } + ], + "names": [ + { + "value": "Institut de Physique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Adhesion and Inflammation Lab", + "type": "child", + "id": "https://ror.org/055ymkj32" + }, + { + "label": "Center of Theoretical Physics", + "type": "child", + "id": "https://ror.org/02bsd9p69" + }, + { + "label": "Centre Lasers Intenses et Applications", + "type": "child", + "id": "https://ror.org/02910d597" + }, + { + "label": "Centre de Physique Théorique", + "type": "child", + "id": "https://ror.org/052bbtn31" + }, + { + "label": "Centre de Recherche sur l'Hétéro-Epitaxie et ses Applications", + "type": "child", + "id": "https://ror.org/03y8mpv07" + }, + { + "label": "Centre de Recherche sur les Ions, les Matériaux et la Photonique", + "type": "child", + "id": "https://ror.org/02y0gk295" + }, + { + "label": "Centre d’Élaboration de Matériaux et d’Études Structurales", + "type": "child", + "id": "https://ror.org/03kwnqq69" + }, + { + "label": "Laboratoire National des Champs Magnétiques Intenses", + "type": "child", + "id": "https://ror.org/045ktmd28" + }, + { + "label": "Groupe d’Étude de la Matière Condensée", + "type": "child", + "id": "https://ror.org/01wrng808" + }, + { + "label": "Groupe de Physique des Matériaux", + "type": "child", + "id": "https://ror.org/03c2k2909" + }, + { + "label": "Institut Lumière Matière", + "type": "child", + "id": "https://ror.org/0323bey33" + }, + { + "label": "Institut Néel", + "type": "child", + "id": "https://ror.org/04dbzz632" + }, + { + "label": "Institut de Physique Théorique", + "type": "child", + "id": "https://ror.org/058rvd314" + }, + { + "label": "Institut de Physique de Rennes", + "type": "child", + "id": "https://ror.org/022b0h879" + }, + { + "label": "Institut de Physique et Chimie des Matériaux de Strasbourg", + "type": "child", + "id": "https://ror.org/02za18p66" + }, + { + "label": "Institut des Matériaux, de Microélectronique et des Nanosciences de Provence", + "type": "child", + "id": "https://ror.org/0238zyh04" + }, + { + "label": "Institute of Mineralogy, Materials Physics and Cosmochemistry", + "type": "child", + "id": "https://ror.org/05abgg682" + }, + { + "label": "Interfaces, Confinement, Matériaux et Nanostructures", + "type": "child", + "id": "https://ror.org/008h1f725" + }, + { + "label": "Laboratoire Kastler Brossel", + "type": "child", + "id": "https://ror.org/01h14ww21" + }, + { + "label": "Laboratoire Charles Coulomb", + "type": "child", + "id": "https://ror.org/02ftce284" + }, + { + "label": "Laboratoire Collisions Agrégats Réactivité", + "type": "child", + "id": "https://ror.org/0416g8z79" + }, + { + "label": "Laboratoire Interdisciplinaire Carnot de Bourgogne", + "type": "child", + "id": "https://ror.org/02b6c1039" + }, + { + "label": "Laboratoire Jean Perrin", + "type": "child", + "id": "https://ror.org/01ghvgs84" + }, + { + "label": "Laboratoire Léon Brillouin", + "type": "child", + "id": "https://ror.org/029rmm934" + }, + { + "label": "Laboratoire Ondes et Matière d'Aquitaine", + "type": "child", + "id": "https://ror.org/05qsp5m64" + }, + { + "label": "Laboratoire Photonique, Numérique et Nanosciences", + "type": "child", + "id": "https://ror.org/03vdg7e33" + }, + { + "label": "Laboratoire d'Optique Appliquée", + "type": "child", + "id": "https://ror.org/03czns913" + }, + { + "label": "Laboratoire d'Étude des Microstructures", + "type": "child", + "id": "https://ror.org/03nqvpf75" + }, + { + "label": "Laboratoire de Cristallographie et Sciences des Matériaux", + "type": "child", + "id": "https://ror.org/04310tc15" + }, + { + "label": "Laboratoire de Physique Théorique", + "type": "child", + "id": "https://ror.org/01w0hda30" + }, + { + "label": "Laboratoire de Physique de l'ENS de Lyon", + "type": "child", + "id": "https://ror.org/00w5ay796" + }, + { + "label": "Laboratoire de Physique des Lasers, Atomes et Molécules", + "type": "child", + "id": "https://ror.org/04e89s906" + }, + { + "label": "Laboratoire de Physique et Chimie des Nano-Objets", + "type": "child", + "id": "https://ror.org/042xmz674" + }, + { + "label": "Laboratoire de Physique et Modélisation des Milieux Condensés", + "type": "child", + "id": "https://ror.org/02mc6qk71" + }, + { + "label": "Laboratory Materials and Quantum Phenomena", + "type": "child", + "id": "https://ror.org/02p3et738" + }, + { + "label": "Laboratory for Optics & Biosciences", + "type": "child", + "id": "https://ror.org/000p29f53" + }, + { + "label": "Laboratoire de Cristallographie, Résonance Magnétique et Modélisations", + "type": "child", + "id": "https://ror.org/017je3b10" + }, + { + "label": "Laboratoire de Physique et d’Étude des Matériaux", + "type": "child", + "id": "https://ror.org/00a72jq18" + }, + { + "label": "Laboratoire de Physique Théorique de la Matière Condensée", + "type": "child", + "id": "https://ror.org/04zaaa143" + }, + { + "label": "Laboratoire de Physique Théorique et Hautes Energies", + "type": "child", + "id": "https://ror.org/02mph9k76" + }, + { + "label": "Laser Physics Laboratory", + "type": "child", + "id": "https://ror.org/03n3yg876" + }, + { + "label": "Molecular and Atmospheric Spectrometry Group", + "type": "child", + "id": "https://ror.org/03vyzg221" + }, + { + "label": "Institut des NanoSciences de Paris", + "type": "child", + "id": "https://ror.org/03t2f0a12" + }, + { + "label": "Service de Physique de l'État Condensé", + "type": "child", + "id": "https://ror.org/0247p4w70" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "child", + "id": "https://ror.org/03e044190" + }, + { + "label": "Structure et Propriétés d'Architectures Moléculaires", + "type": "child", + "id": "https://ror.org/00x5jmr79" + }, + { + "label": "Surface du Verre et Interfaces", + "type": "child", + "id": "https://ror.org/04kadgz77" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00z5s8133.json b/v1.43/00z5s8133.json new file mode 100644 index 000000000..549047bef --- /dev/null +++ b/v1.43/00z5s8133.json @@ -0,0 +1,90 @@ +{ + "locations": [ + { + "geonames_id": 3871336, + "geonames_details": { + "country_code": "CL", + "country_name": "Chile", + "lat": -33.45694, + "lng": -70.64827, + "name": "Santiago" + } + } + ], + "established": 1965, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1268 3678" + ], + "preferred": "0000 0005 1268 3678" + }, + { + "type": "wikidata", + "all": [ + "Q5917327" + ], + "preferred": "Q5917327" + } + ], + "id": "https://ror.org/00z5s8133", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.infor.cl" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Instituto_Forestal" + } + ], + "names": [ + { + "value": "Instituto Forestal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto Forestal de Chile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Chilean Forestry Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Chilean Forest Institute", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00za53h95.json b/v1.43/00za53h95.json new file mode 100644 index 000000000..7103b75ff --- /dev/null +++ b/v1.43/00za53h95.json @@ -0,0 +1,212 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1876, + "external_ids": [ + { + "all": [ + "100007880", + "100005932", + "100005952", + "100009810", + "100010489", + "100007228", + "100008309", + "100008911", + "100005542", + "100009053", + "100008632" + ], + "preferred": "100007880", + "type": "fundref" + }, + { + "all": [ + "grid.21107.35" + ], + "preferred": "grid.21107.35", + "type": "grid" + }, + { + "all": [ + "0000 0001 2171 9311" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q193727" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/00za53h95", + "links": [ + { + "type": "website", + "value": "https://www.jhu.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Johns_Hopkins_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + }, + "geonames_id": 4347778 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "JHU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Johns Hopkins University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Johns Hopkins" + } + ], + "relationships": [ + { + "label": "Johns Hopkins Berman Institute of Bioethics", + "type": "child", + "id": "https://ror.org/00gzx6s15" + }, + { + "label": "Johns Hopkins Center for Communication Programs", + "type": "child", + "id": "https://ror.org/05hs7zv85" + }, + { + "label": "Johns Hopkins University Applied Physics Laboratory", + "type": "child", + "id": "https://ror.org/029pp9z10" + }, + { + "label": "Johns Hopkins University SAIS Bologna Center", + "type": "child", + "id": "https://ror.org/02nckqd02" + }, + { + "label": "Johns Hopkins University – Nanjing University Center for Chinese and American Studies", + "type": "child", + "id": "https://ror.org/05ajv1r64" + }, + { + "label": "Maryland Space Grant Consortium", + "type": "child", + "id": "https://ror.org/02k2r5455" + }, + { + "label": "PARADIM", + "type": "child", + "id": "https://ror.org/04pw1zg89" + }, + { + "label": "Materials Science in Extreme Environments University Research Alliance", + "type": "child", + "id": "https://ror.org/04n07f274" + }, + { + "label": "Johns Hopkins University Center for AIDS Research", + "type": "child", + "id": "https://ror.org/05n52x113" + }, + { + "label": "Hopkins Extreme Materials Institute", + "type": "child", + "id": "https://ror.org/02ed2th17" + }, + { + "label": "Hospital Punta Pacifica", + "type": "related", + "id": "https://ror.org/01a48y329" + }, + { + "label": "Howard County General Hospital", + "type": "related", + "id": "https://ror.org/05mgsm482" + }, + { + "label": "Johns Hopkins All Children's Hospital", + "type": "related", + "id": "https://ror.org/013x5cp73" + }, + { + "label": "Johns Hopkins Bayview Medical Center", + "type": "related", + "id": "https://ror.org/04pwc8466" + }, + { + "label": "Johns Hopkins Children's Center", + "type": "related", + "id": "https://ror.org/03fqqej38" + }, + { + "label": "Johns Hopkins Medicine", + "type": "related", + "id": "https://ror.org/037zgn354" + }, + { + "label": "Peninsula Regional Medical Center", + "type": "related", + "id": "https://ror.org/02tc4ww71" + }, + { + "label": "Saudi Aramco Medical Services Organization", + "type": "related", + "id": "https://ror.org/04k820v98" + }, + { + "label": "Tawam Hospital", + "type": "related", + "id": "https://ror.org/007a5h107" + }, + { + "label": "Konza Prairie Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/02wavzm11" + }, + { + "label": "Packard Center", + "type": "child", + "id": "https://ror.org/042fhmq33" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/00zay3w86.json b/v1.43/00zay3w86.json new file mode 100644 index 000000000..499941407 --- /dev/null +++ b/v1.43/00zay3w86.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 2016, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q47520094" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503099.6" + ], + "preferred": "grid.503099.6" + } + ], + "id": "https://ror.org/00zay3w86", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.c2n.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Centre for Nanoscience and Nanotechnology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre de Nanosciences et de Nanotechnologies", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "C2N", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00zvfs242.json b/v1.43/00zvfs242.json new file mode 100644 index 000000000..b8f1f9d84 --- /dev/null +++ b/v1.43/00zvfs242.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 5419384, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.73915, + "lng": -104.9847, + "name": "Denver" + } + } + ], + "established": 1975, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2195 5584" + ], + "preferred": "0000 0001 2195 5584" + }, + { + "type": "fundref", + "all": [ + "100011471" + ], + "preferred": "100011471" + } + ], + "id": "https://ror.org/00zvfs242", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nanonline.org" + } + ], + "names": [ + { + "value": "National Academy of Neuropsychology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NAN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01070mq45.json b/v1.43/01070mq45.json new file mode 100644 index 000000000..153a7b05e --- /dev/null +++ b/v1.43/01070mq45.json @@ -0,0 +1,156 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1868, + "external_ids": [ + { + "all": [ + "100006710", + "100007284", + "100008296" + ], + "preferred": "100006710", + "type": "fundref" + }, + { + "all": [ + "grid.254444.7" + ], + "preferred": "grid.254444.7", + "type": "grid" + }, + { + "all": [ + "0000 0001 1456 7807" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q349055" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01070mq45", + "links": [ + { + "type": "website", + "value": "https://wayne.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Wayne_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.33143, + "lng": -83.04575, + "name": "Detroit" + }, + "geonames_id": 4990729 + } + ], + "names": [ + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal Wayne" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Wayne State" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "WSU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Wayne State University" + } + ], + "relationships": [ + { + "label": "Ascension Providence Hospital", + "type": "related", + "id": "https://ror.org/0207smp78" + }, + { + "label": "Crittenton Hospital Medical Center", + "type": "related", + "id": "https://ror.org/05x5g2972" + }, + { + "label": "Detroit Medical Center", + "type": "related", + "id": "https://ror.org/05gehxw18" + }, + { + "label": "Harper University Hospital", + "type": "related", + "id": "https://ror.org/00sxe0e68" + }, + { + "label": "Henry Ford Health System", + "type": "related", + "id": "https://ror.org/02kwnkm68" + }, + { + "label": "John D. Dingell VA Medical Center", + "type": "related", + "id": "https://ror.org/0057s8s52" + }, + { + "label": "The Barbara Ann Karmanos Cancer Institute", + "type": "related", + "id": "https://ror.org/00ee40h97" + }, + { + "label": "Kresge Eye Institute", + "type": "related", + "id": "https://ror.org/003dkgb76" + }, + { + "label": "St. John Hospital & Medical Center", + "type": "related", + "id": "https://ror.org/04sac7215" + }, + { + "label": "Michigan Center for Urban African American Aging Research", + "type": "child", + "id": "https://ror.org/00q1brk57" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/010e21634.json b/v1.43/010e21634.json new file mode 100644 index 000000000..5cd8a0cef --- /dev/null +++ b/v1.43/010e21634.json @@ -0,0 +1,62 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/010e21634", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.unistra.fr/recherche-1/vie-et-sante-1/medecine-cardiovasculaire-translationnelle-mcvt-ur-3074" + } + ], + "names": [ + { + "value": "Médecine Cardiovasculaire Translationnelle", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MCVT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/010j4w165.json b/v1.43/010j4w165.json new file mode 100644 index 000000000..7ea2238ad --- /dev/null +++ b/v1.43/010j4w165.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 106297, + "geonames_details": { + "country_code": "SA", + "country_name": "Saudi Arabia", + "lat": 28.43279, + "lng": 45.97077, + "name": "Hafar Al-Batin" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/010j4w165", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://gulf.edu.sa/en/index.php" + } + ], + "names": [ + { + "value": "Gulf College", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "كلية الخليج", + "types": [ + "label" + ], + "lang": "ar" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/010ywy128.json b/v1.43/010ywy128.json new file mode 100644 index 000000000..89c3591ae --- /dev/null +++ b/v1.43/010ywy128.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3696183, + "geonames_details": { + "country_code": "PE", + "country_name": "Peru", + "lat": -3.74912, + "lng": -73.25383, + "name": "Iquitos" + } + } + ], + "established": 1981, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2177 4732" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.493484.6" + ], + "preferred": "grid.493484.6" + } + ], + "id": "https://ror.org/010ywy128", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gob.pe/iiap" + } + ], + "names": [ + { + "value": "Instituto de Investigaciones de la Amazonía Peruana", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IIAP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0115fxs14.json b/v1.43/0115fxs14.json new file mode 100644 index 000000000..8e8b1ce18 --- /dev/null +++ b/v1.43/0115fxs14.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 5263045, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.0389, + "lng": -87.90647, + "name": "Milwaukee" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0390 8735" + ], + "preferred": "0000 0004 0390 8735" + }, + { + "type": "fundref", + "all": [ + "100017342" + ], + "preferred": "100017342" + } + ], + "id": "https://ror.org/0115fxs14", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cancer.mcw.edu" + } + ], + "names": [ + { + "value": "Medical College of Wisconsin Cancer Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MCWCC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Medical College of Wisconsin", + "type": "parent", + "id": "https://ror.org/00qqv6244" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/011abem59.json b/v1.43/011abem59.json new file mode 100644 index 000000000..8c71f5f75 --- /dev/null +++ b/v1.43/011abem59.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0614 7687" + ], + "preferred": "0000 0004 0614 7687" + }, + { + "type": "wikidata", + "all": [ + "Q30262344" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463972.d" + ], + "preferred": "grid.463972.d" + } + ], + "id": "https://ror.org/011abem59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.egce.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Évolution, Génomes, Comportement, Écologie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "LEGS", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Laboratoire Évolution, Génomes, Comportement, Écologie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "EGCE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/011jtr847.json b/v1.43/011jtr847.json new file mode 100644 index 000000000..afe23feca --- /dev/null +++ b/v1.43/011jtr847.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424716.2" + ], + "preferred": "grid.424716.2" + } + ], + "id": "https://ror.org/011jtr847", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.irta.cat/ca/centre/irta-cresa/" + } + ], + "names": [ + { + "value": "Centre de Recerca en Sanitat Animal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IRTA Centre de Recerca en Sanitat Animal", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut de Recerca i Tecnologia Agroalimentàries Centre de Recerca en Sanitat Animal", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IRTA-CReSA", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CReSA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Universitat Autònoma de Barcelona", + "type": "related", + "id": "https://ror.org/052g8jq94" + }, + { + "label": "Institute for Research and Technology in Food and Agriculture", + "type": "parent", + "id": "https://ror.org/012zh9h13" + }, + { + "label": "Institute for Research and Technology in Food and Agriculture", + "type": "successor", + "id": "https://ror.org/012zh9h13" + } + ], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/011n4tk56.json b/v1.43/011n4tk56.json new file mode 100644 index 000000000..2a173991b --- /dev/null +++ b/v1.43/011n4tk56.json @@ -0,0 +1,93 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1962, + "external_ids": [ + { + "all": [ + "grid.482495.6" + ], + "preferred": "grid.482495.6", + "type": "grid" + }, + { + "all": [ + "0000 0001 2181 3826" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/011n4tk56", + "links": [ + { + "type": "website", + "value": "http://www.omafra.gov.on.ca/english/research/ario/institute.htm" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Agricultural_Research_Institute_of_Ontario" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.54594, + "lng": -80.25599, + "name": "Guelph" + }, + "geonames_id": 5967629 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ARIO" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Agricultural Research Institute of Ontario" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Institut de Recherche Agricole de l'Ontario" + } + ], + "relationships": [ + { + "label": "Ministry of Agriculture, Food and Rural Affairs", + "type": "parent", + "id": "https://ror.org/033w59g46" + }, + { + "label": "Ontario Agri-Food Innovation Alliance", + "type": "related", + "id": "https://ror.org/02ftfma65" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/011xg1225.json b/v1.43/011xg1225.json new file mode 100644 index 000000000..252c336dd --- /dev/null +++ b/v1.43/011xg1225.json @@ -0,0 +1,118 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2001, + "external_ids": [ + { + "all": [ + "0000 0001 2243 1571" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q30261418" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.462287.d" + ], + "preferred": "grid.462287.d", + "type": "grid" + } + ], + "id": "https://ror.org/011xg1225", + "links": [ + { + "type": "website", + "value": "http://umr-moisa.cirad.fr/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Marchés, Organisations, Institutions et Stratégies d'Acteurs" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MOISA" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MoISA" + } + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "International Centre for Advanced Mediterranean Agronomic Studies", + "type": "parent", + "id": "https://ror.org/04abkkz03" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/015q23935" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/011zm6c42.json b/v1.43/011zm6c42.json new file mode 100644 index 000000000..e2190a929 --- /dev/null +++ b/v1.43/011zm6c42.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3463237, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -27.59667, + "lng": -48.54917, + "name": "Florianópolis" + } + } + ], + "established": 1986, + "external_ids": [], + "id": "https://ror.org/011zm6c42", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.acate.com.br" + } + ], + "names": [ + { + "value": "ACATE - Associação Catarinense de Tecnologia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Associação Catarinense de Tecnologia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Catarinense Technology Association", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ACATE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01225hq90.json b/v1.43/01225hq90.json new file mode 100644 index 000000000..80850941e --- /dev/null +++ b/v1.43/01225hq90.json @@ -0,0 +1,116 @@ +{ + "locations": [ + { + "geonames_id": 2972315, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.60426, + "lng": 1.44367, + "name": "Toulouse" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0382 8364" + ], + "preferred": "0000 0004 0382 8364" + }, + { + "type": "wikidata", + "all": [ + "Q51780455" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.500939.6" + ], + "preferred": "grid.500939.6" + } + ], + "id": "https://ror.org/01225hq90", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cesbio.cnrs.fr" + } + ], + "names": [ + { + "value": "Centre d'Études Spatiales de la Biosphère", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Center for the Study of the Biosphere from Space", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CESBIO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Centre National d'Études Spatiales", + "type": "parent", + "id": "https://ror.org/04h1h0y33" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0124x7055.json b/v1.43/0124x7055.json new file mode 100644 index 000000000..d64f31f11 --- /dev/null +++ b/v1.43/0124x7055.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2193 5524" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100001872" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1054348" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.410460.7" + ], + "preferred": "grid.410460.7" + } + ], + "id": "https://ror.org/0124x7055", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cdti.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Centre_for_the_Development_of_Industrial_Technology" + } + ], + "names": [ + { + "value": "Centre for Industrial Technological Development", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centro para el Desarrollo Tecnologico Industrial", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "CDTI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/012fqzm33.json b/v1.43/012fqzm33.json new file mode 100644 index 000000000..b6689a0eb --- /dev/null +++ b/v1.43/012fqzm33.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30261512" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462625.1" + ], + "preferred": "grid.462625.1" + } + ], + "id": "https://ror.org/012fqzm33", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://moulon.inrae.fr" + } + ], + "names": [ + { + "value": "Génétique Quantitative et Évolution Le Moulon", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Quantitative Genetics and Evolution - Le Moulon", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/012k1v959.json b/v1.43/012k1v959.json new file mode 100644 index 000000000..395a93750 --- /dev/null +++ b/v1.43/012k1v959.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2867714, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.13743, + "lng": 11.57549, + "name": "Munich" + } + } + ], + "established": 1971, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1408 3925" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q314089" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434949.7" + ], + "preferred": "grid.434949.7" + } + ], + "id": "https://ror.org/012k1v959", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.hm.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Munich_University_of_Applied_Sciences" + } + ], + "names": [ + { + "value": "Munich University of Applied Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Hochschule München", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hochschule für angewandte Wissenschaften München", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hochschule München University of Applied Sciences", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "HM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/012qsrr25.json b/v1.43/012qsrr25.json new file mode 100644 index 000000000..f0e9f1caf --- /dev/null +++ b/v1.43/012qsrr25.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 5122432, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.44063, + "lng": -76.49661, + "name": "Ithaca" + } + } + ], + "established": 1880, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2170 7652" + ], + "preferred": "0000 0001 2170 7652" + }, + { + "type": "wikidata", + "all": [ + "Q45134801" + ], + "preferred": "Q45134801" + }, + { + "type": "fundref", + "all": [ + "100011622" + ], + "preferred": "100011622" + } + ], + "id": "https://ror.org/012qsrr25", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cals.cornell.edu/agricultural-experiment-station" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/New_York_State_Agricultural_Experiment_Station" + } + ], + "names": [ + { + "value": "Cornell University Agricultural Experiment Station", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Cornell AES", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Cornell AgriTech", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CUAES", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Cornell University", + "type": "parent", + "id": "https://ror.org/05bnh6r87" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/012s7h980.json b/v1.43/012s7h980.json new file mode 100644 index 000000000..bc41a1167 --- /dev/null +++ b/v1.43/012s7h980.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0551 8239" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1419453" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.13739.3f" + ], + "preferred": "grid.13739.3f" + } + ], + "id": "https://ror.org/012s7h980", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.acerinox.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Acerinox" + } + ], + "names": [ + { + "value": "Acerinox (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/012zh9h13.json b/v1.43/012zh9h13.json new file mode 100644 index 000000000..a94834429 --- /dev/null +++ b/v1.43/012zh9h13.json @@ -0,0 +1,115 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2009, + "external_ids": [ + { + "all": [ + "0000 0001 1943 6646" + ], + "preferred": "0000 0001 1943 6646", + "type": "isni" + }, + { + "all": [ + "Q9006472" + ], + "preferred": "Q9006472", + "type": "wikidata" + }, + { + "all": [ + "grid.8581.4" + ], + "preferred": "grid.8581.4", + "type": "grid" + } + ], + "id": "https://ror.org/012zh9h13", + "links": [ + { + "type": "website", + "value": "https://www.irta.cat" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.63333, + "lng": 2.16667, + "name": "Caldes de Montbui" + }, + "geonames_id": 3127035 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute for Research and Technology in Food and Agriculture" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Institute of Agrifood Research and Technology" + }, + { + "lang": "ca", + "types": [ + "label" + ], + "value": "Institut de Recerca i Tecnologia Agroalimentàries" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IRTA" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IRTA-CERCA" + } + ], + "relationships": [ + { + "label": "Government of Catalonia", + "type": "parent", + "id": "https://ror.org/01bg62x04" + }, + { + "label": "CERCA Institution", + "type": "parent", + "id": "https://ror.org/01bkbaq61" + }, + { + "label": "Center for Research in Agricultural Genomics", + "type": "child", + "id": "https://ror.org/04tz2h245" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/012zs8222.json b/v1.43/012zs8222.json new file mode 100644 index 000000000..cbbaaa18a --- /dev/null +++ b/v1.43/012zs8222.json @@ -0,0 +1,121 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1844, + "external_ids": [ + { + "all": [ + "100009790" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.265850.c" + ], + "preferred": "grid.265850.c", + "type": "grid" + }, + { + "all": [ + "0000 0001 2151 7947" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1780816" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/012zs8222", + "links": [ + { + "type": "website", + "value": "http://www.albany.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_at_Albany,_SUNY" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.65258, + "lng": -73.75623, + "name": "Albany" + }, + "geonames_id": 5106834 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "New York State Normal School" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University at Albany" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University at Albany, SUNY" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University at Albany, State University of New York" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État de new york à albany" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/013355g38.json b/v1.43/013355g38.json new file mode 100644 index 000000000..158e65097 --- /dev/null +++ b/v1.43/013355g38.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-06-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1988, + "external_ids": [ + { + "all": [ + "grid.469945.3" + ], + "preferred": "grid.469945.3", + "type": "grid" + }, + { + "all": [ + "0000 0000 8642 5392" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5211467" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/013355g38", + "links": [ + { + "type": "website", + "value": "http://www.idsia.ch/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Dalle_Molle_Institute_for_Artificial_Intelligence_Research" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.01008, + "lng": 8.96004, + "name": "Lugano" + }, + "geonames_id": 2659836 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Dalle Molle Institute for Artificial Intelligence Research" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IDSIA" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Istituto Dalle Molle di Studi sull'Intelligenza Artificiale" + } + ], + "relationships": [ + { + "label": "University of Applied Sciences and Arts of Southern Switzerland", + "type": "parent", + "id": "https://ror.org/05ep8g269" + }, + { + "label": "Università della Svizzera italiana", + "type": "parent", + "id": "https://ror.org/03c4atk17" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/013a79z51.json b/v1.43/013a79z51.json new file mode 100644 index 000000000..ed6de6993 --- /dev/null +++ b/v1.43/013a79z51.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 1809498, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 25.28022, + "lng": 110.29639, + "name": "Guilin" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q11111580" + ], + "preferred": "Q11111580" + } + ], + "id": "https://ror.org/013a79z51", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gltu.edu.cn" + }, + { + "type": "wikipedia", + "value": "https://zh.wikipedia.org/wiki/%E6%A1%82%E6%9E%97%E6%97%85%E6%B8%B8%E5%AD%A6%E9%99%A2" + } + ], + "names": [ + { + "value": "Guilin Tourism University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "桂林旅游专科学校", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "桂林旅游学院", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "GLTU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/013k5zx16.json b/v1.43/013k5zx16.json new file mode 100644 index 000000000..e7003ec98 --- /dev/null +++ b/v1.43/013k5zx16.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2834282, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 53.62937, + "lng": 11.41316, + "name": "Schwerin" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/013k5zx16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.regierung-mv.de/Landesregierung/lm/" + } + ], + "names": [ + { + "value": "Ministerium für Klimaschutz, Landwirtschaft, ländliche Räume und Umwelt des Landes Mecklenburg-Vorpommern", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry for Climate Protection, Agriculture, Rural Areas and the Environment of the State of Mecklenburg-Western Pomerania", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MKLRU-MV", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/013meh722.json b/v1.43/013meh722.json new file mode 100644 index 000000000..fb5cc291f --- /dev/null +++ b/v1.43/013meh722.json @@ -0,0 +1,270 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1209, + "external_ids": [ + { + "all": [ + "501100000735", + "501100000622", + "501100005705", + "501100000663", + "501100000653", + "501100000648", + "501100000644", + "501100000621", + "501100000609", + "501100000591", + "501100001625", + "501100000742", + "501100007552", + "501100000590", + "100010441", + "501100008420", + "501100004222", + "501100006299", + "501100000580", + "501100000585", + "501100000587", + "501100000602", + "501100000603", + "501100000705", + "501100000710", + "501100003987", + "501100004537", + "501100005796", + "501100004495", + "501100006646", + "501100000727" + ], + "preferred": "501100000735", + "type": "fundref" + }, + { + "all": [ + "grid.5335.0" + ], + "preferred": "grid.5335.0", + "type": "grid" + }, + { + "all": [ + "0000 0001 2188 5934" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q35794", + "Q181892", + "Q24679079", + "Q10899168" + ], + "preferred": "Q35794", + "type": "wikidata" + } + ], + "id": "https://ror.org/013meh722", + "links": [ + { + "type": "website", + "value": "http://www.cam.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Cambridge" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.2, + "lng": 0.11667, + "name": "Cambridge" + }, + "geonames_id": 2653941 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Cambridge University" + }, + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Prifysgol Caergrawnt" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Cambridge" + } + ], + "relationships": [ + { + "label": "Cambridge University Press", + "type": "child", + "id": "https://ror.org/03jsdjx34" + }, + { + "label": "Cambridge–MIT Institute", + "type": "child", + "id": "https://ror.org/00rj4dg52" + }, + { + "label": "Cancer Research UK Cambridge Center", + "type": "child", + "id": "https://ror.org/0068m0j38" + }, + { + "label": "Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics", + "type": "child", + "id": "https://ror.org/047d2d387" + }, + { + "label": "Hutchison/MRC Research Centre", + "type": "child", + "id": "https://ror.org/01ajt3179" + }, + { + "label": "MRC Biostatistics Unit", + "type": "child", + "id": "https://ror.org/046vje122" + }, + { + "label": "MRC Cognition and Brain Sciences Unit", + "type": "child", + "id": "https://ror.org/055bpw879" + }, + { + "label": "MRC Epidemiology Unit", + "type": "child", + "id": "https://ror.org/052578691" + }, + { + "label": "MRC Human Nutrition Research", + "type": "child", + "id": "https://ror.org/050pqs331" + }, + { + "label": "MRC Mitochondrial Biology Unit", + "type": "child", + "id": "https://ror.org/01vdt8f48" + }, + { + "label": "MRC Toxicology Unit", + "type": "child", + "id": "https://ror.org/05362x394" + }, + { + "label": "Sedgwick Museum of Earth Sciences", + "type": "child", + "id": "https://ror.org/02x42kc45" + }, + { + "label": "The Cambridge Centre for Advanced Research and Education in Singapore", + "type": "child", + "id": "https://ror.org/02f3vh107" + }, + { + "label": "Wellcome/Cancer Research UK Gurdon Institute", + "type": "child", + "id": "https://ror.org/00fp3ce15" + }, + { + "label": "Wellcome/MRC Cambridge Stem Cell Institute", + "type": "child", + "id": "https://ror.org/05nz0zp31" + }, + { + "label": "Wellcome/MRC Institute of Metabolic Science", + "type": "child", + "id": "https://ror.org/0264dxb48" + }, + { + "label": "MRC Metabolic Diseases Unit", + "type": "child", + "id": "https://ror.org/037a8w620" + }, + { + "label": "NIHR Cambridge Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/05m8dr349" + }, + { + "label": "Addenbrooke's Hospital", + "type": "related", + "id": "https://ror.org/055vbxf86" + }, + { + "label": "Fulbourn Hospital", + "type": "related", + "id": "https://ror.org/01ym47j46" + }, + { + "label": "Gates Cambridge Trust", + "type": "related", + "id": "https://ror.org/033sn5p83" + }, + { + "label": "Ipswich Hospital", + "type": "related", + "id": "https://ror.org/05m3qrs33" + }, + { + "label": "NIHR Cambridge Dementia Biomedical Research Unit", + "type": "related", + "id": "https://ror.org/02d2g0205" + }, + { + "label": "Papworth Hospital", + "type": "related", + "id": "https://ror.org/05mqgrb58" + }, + { + "label": "Queen Elizabeth Hospital", + "type": "related", + "id": "https://ror.org/03npxtg86" + }, + { + "label": "Rosie Hospital", + "type": "related", + "id": "https://ror.org/01ncx3917" + }, + { + "label": "UK Web Archive", + "type": "related", + "id": "https://ror.org/00gnxy738" + }, + { + "label": "Cancer Imaging Centre", + "type": "child", + "id": "https://ror.org/023a2er20" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/013tmk464.json b/v1.43/013tmk464.json new file mode 100644 index 000000000..2a8ce978a --- /dev/null +++ b/v1.43/013tmk464.json @@ -0,0 +1,75 @@ +{ + "admin": { + "created": { + "date": "2021-09-23", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.512555.3" + ], + "preferred": "grid.512555.3", + "type": "grid" + } + ], + "id": "https://ror.org/013tmk464", + "links": [ + { + "type": "website", + "value": "https://www.med.uni-wuerzburg.de/ccc/startseite/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.79391, + "lng": 9.95121, + "name": "Würzburg" + }, + "geonames_id": 2805615 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Comprehensive Cancer Center Mainfranken" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CCCMF" + } + ], + "relationships": [ + { + "label": "Universitätsklinikum Würzburg", + "type": "parent", + "id": "https://ror.org/03pvr2g57" + }, + { + "label": "University of Würzburg", + "type": "parent", + "id": "https://ror.org/00fbnyb24" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/0145w8333.json b/v1.43/0145w8333.json new file mode 100644 index 000000000..b6ccb1610 --- /dev/null +++ b/v1.43/0145w8333.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 745044, + "geonames_details": { + "country_code": "TR", + "country_name": "Türkiye", + "lat": 41.01384, + "lng": 28.94966, + "name": "Istanbul" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0399 5023" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2756518" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.449305.f" + ], + "preferred": "grid.449305.f" + } + ], + "id": "https://ror.org/0145w8333", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.altinbas.edu.tr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Istanbul_Kemerburgaz_University" + } + ], + "names": [ + { + "value": "Altınbaş University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Istanbul Kemerburgaz University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Altınbaş Üniversitesi", + "types": [ + "label" + ], + "lang": "tr" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/014fbxn93.json b/v1.43/014fbxn93.json new file mode 100644 index 000000000..a80bdc690 --- /dev/null +++ b/v1.43/014fbxn93.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2738707, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 40.60188, + "lng": -8.67021, + "name": "Ílhavo" + } + } + ], + "established": 2022, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q124525831" + ], + "preferred": "Q124525831" + } + ], + "id": "https://ror.org/014fbxn93", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://pictis.pt" + } + ], + "names": [ + { + "value": "Plataforma Internacional para Ciência, Tecnologia e Inovação em Saúde", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "International Platform for Science, Technology, and Innovation in Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PICTIS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Fundação Oswaldo Cruz", + "type": "related", + "id": "https://ror.org/04jhswv08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/014p8mr66.json b/v1.43/014p8mr66.json new file mode 100644 index 000000000..63202cd78 --- /dev/null +++ b/v1.43/014p8mr66.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3029522, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69981, + "lng": 2.17064, + "name": "Bures-sur-Yvette" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0614 9404" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.482888.6" + ], + "preferred": "grid.482888.6" + } + ], + "id": "https://ror.org/014p8mr66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ias.u-psud.fr" + } + ], + "names": [ + { + "value": "Institut d'Astrophysique Spatiale", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IAS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/014x5gh74.json b/v1.43/014x5gh74.json new file mode 100644 index 000000000..04da97308 --- /dev/null +++ b/v1.43/014x5gh74.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2647178, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 56.00614, + "lng": -4.72648, + "name": "Helensburgh" + } + } + ], + "established": 1972, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1087 8640" + ], + "preferred": "0000 0001 1087 8640" + }, + { + "type": "fundref", + "all": [ + "100011405" + ], + "preferred": "100011405" + } + ], + "id": "https://ror.org/014x5gh74", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://academyofmarketing.org" + } + ], + "names": [ + { + "value": "Academy of Marketing", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Marketing Education Group", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/014zrew76.json b/v1.43/014zrew76.json new file mode 100644 index 000000000..715c6155b --- /dev/null +++ b/v1.43/014zrew76.json @@ -0,0 +1,231 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1960, + "external_ids": [ + { + "all": [ + "0000 0001 0217 6921" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100005696", + "501100005697" + ], + "preferred": "501100005696", + "type": "fundref" + }, + { + "all": [ + "Q13334" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.112485.b" + ], + "preferred": "grid.112485.b", + "type": "grid" + } + ], + "id": "https://ror.org/014zrew76", + "links": [ + { + "type": "website", + "value": "https://www.univ-orleans.fr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Orl%C3%A9ans" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 47.90289, + "lng": 1.90389, + "name": "Orléans" + }, + "geonames_id": 2989317 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Université d'Orléans" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "University of Orléans" + } + ], + "relationships": [ + { + "label": "Conditions Extrêmes et Matériaux Haute Température et Irradiation", + "type": "child", + "id": "https://ror.org/02zs48f23" + }, + { + "label": "Groupe de Recherches sur l'Energétique des Milieux Ionisés", + "type": "child", + "id": "https://ror.org/042ds2135" + }, + { + "label": "Institut de Recherche sur les ArchéoMATériaux", + "type": "child", + "id": "https://ror.org/01cw28e72" + }, + { + "label": "Institute of Organic and Analytical Chemistry", + "type": "child", + "id": "https://ror.org/03ywn7d79" + }, + { + "label": "Interfaces, Confinement, Matériaux et Nanostructures", + "type": "child", + "id": "https://ror.org/008h1f725" + }, + { + "label": "Complexité, Innovation et Activités Motrices et Sportives", + "type": "child", + "id": "https://ror.org/00k3ph542" + }, + { + "label": "Laboratoire Pluridisciplinaire de Recherche en Ingénierie des Systèmes, Mécanique et Energétique", + "type": "child", + "id": "https://ror.org/00sbth994" + }, + { + "label": "Laboratoire d’Économie d’Orléans", + "type": "child", + "id": "https://ror.org/03hp7bq97" + }, + { + "label": "Nançay Radio Observatory", + "type": "child", + "id": "https://ror.org/01vqrde47" + }, + { + "label": "Laboratoire de Physique et Chimie de l’Environnement et de l’Espace", + "type": "child", + "id": "https://ror.org/049k66y27" + }, + { + "label": "Laboratoire d'Informatique Fondamentale d'Orléans", + "type": "child", + "id": "https://ror.org/01nr3td38" + }, + { + "label": "Arbres et Réponses aux Contraintes Hydriques et Environnementales", + "type": "child", + "id": "https://ror.org/0213ypr97" + }, + { + "label": "Institut des Sciences de la Terre d'Orléans", + "type": "child", + "id": "https://ror.org/02t2hg116" + }, + { + "label": "Laboratoire Ligérien de Linguistique", + "type": "child", + "id": "https://ror.org/04s6f1186" + }, + { + "label": "Val de Loire Recherche en Management", + "type": "child", + "id": "https://ror.org/04wgee362" + }, + { + "label": "Maison des Sciences de l'Homme Val de Loire", + "type": "child", + "id": "https://ror.org/03v4gsj38" + }, + { + "label": "Laboratoire de Mécanique Gabriel Lamé", + "type": "child", + "id": "https://ror.org/04f9thq51" + }, + { + "label": "Institut Denis Poisson", + "type": "child", + "id": "https://ror.org/05djhd259" + }, + { + "label": "Centre d'Etudes sur le Développement des Territoires et Environnement", + "type": "child", + "id": "https://ror.org/0001d8q22" + }, + { + "label": "Pouvoirs, Lettres, Normes", + "type": "child", + "id": "https://ror.org/05gwtjq96" + }, + { + "label": "Immunologie et Neurogénétique Expérimentales et Moléculaires", + "type": "child", + "id": "https://ror.org/01mhd9b84" + }, + { + "label": "Centre de Biophysique Moléculaire", + "type": "child", + "id": "https://ror.org/02dpqcy73" + }, + { + "label": "Institut de Combustion Aérothermique Réactivité et Environnement", + "type": "child", + "id": "https://ror.org/03txr3336" + }, + { + "label": "Réceptions et médiations de littératures et de cultures étrangères et comparées", + "type": "child", + "id": "https://ror.org/007hfk904" + }, + { + "label": "Centre de recherche juridique Pothier", + "type": "child", + "id": "https://ror.org/03w8jwa36" + }, + { + "label": "Équipe de Recherche Contextes et Acteurs de l'Éducation", + "type": "child", + "id": "https://ror.org/0225kjd58" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Physiologie, Ecologie et Environnement", + "type": "child", + "id": "https://ror.org/00xe97z49" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/01597g643.json b/v1.43/01597g643.json new file mode 100644 index 000000000..f1d5aef8e --- /dev/null +++ b/v1.43/01597g643.json @@ -0,0 +1,107 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1861, + "external_ids": [ + { + "all": [ + "100010967" + ], + "preferred": "100010967", + "type": "fundref" + }, + { + "all": [ + "grid.264273.6" + ], + "preferred": "grid.264273.6", + "type": "grid" + }, + { + "all": [ + "0000 0000 8999 307X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7603627" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01597g643", + "links": [ + { + "type": "website", + "value": "http://www.oswego.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/State_University_of_New_York_at_Oswego" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.45535, + "lng": -76.5105, + "name": "Oswego" + }, + "geonames_id": 5130081 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "SUNY Oswego" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "State University of New York at Oswego" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal de Nueva York en Oswego" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/015pzp858.json b/v1.43/015pzp858.json new file mode 100644 index 000000000..2b4a9891c --- /dev/null +++ b/v1.43/015pzp858.json @@ -0,0 +1,96 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1867, + "external_ids": [ + { + "all": [ + "100013873" + ], + "preferred": "100013873", + "type": "fundref" + }, + { + "all": [ + "grid.484190.0" + ], + "preferred": "grid.484190.0", + "type": "grid" + }, + { + "all": [ + "0000 0004 0404 4473" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/015pzp858", + "links": [ + { + "type": "website", + "value": "https://www.ontario.ca/page/government" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.70643, + "lng": -79.39864, + "name": "Toronto" + }, + "geonames_id": 6167865 + } + ], + "names": [ + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Gouvernement de l'Ontario" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Government of Ontario" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Her Majesty's Government of Ontario" + } + ], + "relationships": [ + { + "label": "Ontario Science Centre", + "type": "child", + "id": "https://ror.org/00wnpy880" + }, + { + "label": "Ministry of Education", + "type": "child", + "id": "https://ror.org/016gy9w96" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/015vt1f29.json b/v1.43/015vt1f29.json new file mode 100644 index 000000000..4d31f2deb --- /dev/null +++ b/v1.43/015vt1f29.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5942845, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.88336, + "lng": -72.48241, + "name": "Drummondville" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0746 5060" + ], + "preferred": "0000 0001 0746 5060" + }, + { + "type": "wikidata", + "all": [ + "Q3009995" + ], + "preferred": "Q3009995" + } + ], + "id": "https://ror.org/015vt1f29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cegepdrummond.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/C%C3%A9gep_de_Drummondville" + } + ], + "names": [ + { + "value": "Cégep de Drummondville", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/016782g02.json b/v1.43/016782g02.json new file mode 100644 index 000000000..8b8d99a66 --- /dev/null +++ b/v1.43/016782g02.json @@ -0,0 +1,76 @@ +{ + "locations": [ + { + "geonames_id": 2797114, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.93409, + "lng": 4.37213, + "name": "Grimbergen" + } + } + ], + "established": 2011, + "external_ids": [], + "id": "https://ror.org/016782g02", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://edulaweu.eu" + } + ], + "names": [ + { + "value": "European Association for Education Law and Policy", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ELA ngo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ELA vzw", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ELA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Vrije Universiteit Brussel", + "type": "related", + "id": "https://ror.org/006e5kg04" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0168r3w48.json b/v1.43/0168r3w48.json new file mode 100644 index 000000000..038585b9e --- /dev/null +++ b/v1.43/0168r3w48.json @@ -0,0 +1,192 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1960, + "external_ids": [ + { + "all": [ + "100007911", + "100009507", + "100009508", + "100005918", + "100005548", + "100008673", + "100005594" + ], + "preferred": "100007911", + "type": "fundref" + }, + { + "all": [ + "grid.266100.3" + ], + "preferred": "grid.266100.3", + "type": "grid" + }, + { + "all": [ + "0000 0001 2107 4242" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q622664" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/0168r3w48", + "links": [ + { + "type": "website", + "value": "http://ucsd.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_California,_San_Diego" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.71571, + "lng": -117.16472, + "name": "San Diego" + }, + "geonames_id": 5391811 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "UC San Diego" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UCSD" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de California en San Diego" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of California, San Diego" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Californie à San Diego" + } + ], + "relationships": [ + { + "label": "California Sea Grant", + "type": "child", + "id": "https://ror.org/02yn1nr06" + }, + { + "label": "California Space Grant Consortium", + "type": "child", + "id": "https://ror.org/05ffhwq07" + }, + { + "label": "San Diego Supercomputer Center", + "type": "child", + "id": "https://ror.org/04mg3nk07" + }, + { + "label": "Scripps Institution of Oceanography", + "type": "child", + "id": "https://ror.org/04v7hvq31" + }, + { + "label": "UCSD-CNRS Joint Research Chemistry Laboratory", + "type": "child", + "id": "https://ror.org/00t7axd27" + }, + { + "label": "University of California System", + "type": "parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Rady Children's Hospital-San Diego", + "type": "related", + "id": "https://ror.org/00414dg76" + }, + { + "label": "Salk Institute for Biological Studies", + "type": "related", + "id": "https://ror.org/03xez1567" + }, + { + "label": "Scripps Mercy Hospital", + "type": "related", + "id": "https://ror.org/04k4h9k07" + }, + { + "label": "University of California San Diego Medical Center", + "type": "related", + "id": "https://ror.org/03aw5sn18" + }, + { + "label": "VA San Diego Healthcare System", + "type": "related", + "id": "https://ror.org/00znqwq11" + }, + { + "label": "Open Data Commons for Spinal Cord Injury", + "type": "related", + "id": "https://ror.org/027790w81" + }, + { + "label": "Moorea Coral Reef Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/017vyhs10" + }, + { + "label": "Materials Science in Extreme Environments University Research Alliance", + "type": "related", + "id": "https://ror.org/04n07f274" + }, + { + "label": "Center for Wireless Communications", + "type": "child", + "id": "https://ror.org/04b57z061" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/016gb1631.json b/v1.43/016gb1631.json new file mode 100644 index 000000000..c5ec1ee18 --- /dev/null +++ b/v1.43/016gb1631.json @@ -0,0 +1,144 @@ +{ + "locations": [ + { + "geonames_id": 715429, + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 46.253, + "lng": 20.14824, + "name": "Szeged" + } + } + ], + "established": 1971, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2195 9606", + "0000 0004 0620 9788" + ], + "preferred": "0000 0001 2195 9606" + }, + { + "type": "wikidata", + "all": [ + "Q4914963" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418331.c" + ], + "preferred": "grid.418331.c" + } + ], + "id": "https://ror.org/016gb1631", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.brc.hu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Biological_Research_Centre_(Hungarian_Academy_of_Sciences)" + } + ], + "names": [ + { + "value": "HUN-REN Szegedi Biológiai Kutatóközpont", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MTA Szegedi Biológiai Központ", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biological Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Szegedi Biológiai Kutatóközpont", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "HUN-REN Biological Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Magyar Tudományos Akadémia Szegedi Biológiai Kutatóközpontjának", + "types": [ + "label" + ], + "lang": "hu" + }, + { + "value": "BRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Hungarian Academy of Sciences", + "type": "parent", + "id": "https://ror.org/02ks8qq67" + }, + { + "label": "Institute of Biochemistry", + "type": "child", + "id": "https://ror.org/022dvs210" + }, + { + "label": "Institute of Biophysics", + "type": "child", + "id": "https://ror.org/038synb39" + }, + { + "label": "Institute of Genetics", + "type": "child", + "id": "https://ror.org/04tjemt46" + }, + { + "label": "Institute of Plant Biology", + "type": "child", + "id": "https://ror.org/039h1gd08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/016gy9w96.json b/v1.43/016gy9w96.json new file mode 100644 index 000000000..2d91a689f --- /dev/null +++ b/v1.43/016gy9w96.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 2179537, + "geonames_details": { + "country_code": "NZ", + "country_name": "New Zealand", + "lat": -41.28664, + "lng": 174.77557, + "name": "Wellington" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0727 3536" + ], + "preferred": "0000 0001 0727 3536" + }, + { + "type": "wikidata", + "all": [ + "Q1937182" + ], + "preferred": "Q1937182" + }, + { + "type": "fundref", + "all": [ + "501100009648" + ], + "preferred": "501100009648" + } + ], + "id": "https://ror.org/016gy9w96", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.education.govt.nz" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Education_%28New_Zealand%29" + } + ], + "names": [ + { + "value": "Ministry of Education", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Education of New Zealand", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "New Zealand Ministry of Education", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Government of Ontario", + "type": "parent", + "id": "https://ror.org/015pzp858" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/016k9d838.json b/v1.43/016k9d838.json new file mode 100644 index 000000000..34e733183 --- /dev/null +++ b/v1.43/016k9d838.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3113157, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.16156, + "lng": -8.6198, + "name": "Porriño" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424847.9" + ], + "preferred": "grid.424847.9" + } + ], + "id": "https://ror.org/016k9d838", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ctag.com" + } + ], + "names": [ + { + "value": "Centro Tecnológico de Automoción de Galicia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Automotive Technology Centre of Galicia", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CTAG", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/016r2hq43.json b/v1.43/016r2hq43.json new file mode 100644 index 000000000..cbd534931 --- /dev/null +++ b/v1.43/016r2hq43.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2000, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0370 3203" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30261584" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462861.f" + ], + "preferred": "grid.462861.f" + } + ], + "id": "https://ror.org/016r2hq43", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.universite-paris-saclay.fr/institut-de-chimie-physique" + } + ], + "names": [ + { + "value": "Laboratoire de Chimie Physique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "LCP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/016rf0n60.json b/v1.43/016rf0n60.json new file mode 100644 index 000000000..9ec695269 --- /dev/null +++ b/v1.43/016rf0n60.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": 2005, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8308 275X" + ], + "preferred": "0000 0004 8308 275X" + }, + { + "type": "wikidata", + "all": [ + "Q21076611" + ], + "preferred": "Q21076611" + }, + { + "type": "fundref", + "all": [ + "501100013865" + ], + "preferred": "501100013865" + } + ], + "id": "https://ror.org/016rf0n60", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.stiftung-charite.de" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Stiftung_Charit%C3%A9" + } + ], + "names": [ + { + "value": "Stiftung Charité", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Charité Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Die Stiftung Charité", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Charité - Universitätsmedizin Berlin", + "type": "parent", + "id": "https://ror.org/001w7jn25" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/016xsfp80.json b/v1.43/016xsfp80.json new file mode 100644 index 000000000..e4335cdbe --- /dev/null +++ b/v1.43/016xsfp80.json @@ -0,0 +1,131 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1923, + "external_ids": [ + { + "all": [ + "0000 0001 2293 1605" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100001832", + "501100008459" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q632004", + "Q2525766" + ], + "preferred": "Q632004", + "type": "wikidata" + }, + { + "all": [ + "grid.5590.9" + ], + "preferred": "grid.5590.9", + "type": "grid" + } + ], + "id": "https://ror.org/016xsfp80", + "links": [ + { + "type": "website", + "value": "http://www.ru.nl/english/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Radboud_University_Nijmegen" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + }, + "geonames_id": 2750053 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Radboud University Nijmegen" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Katholieke Universiteit Nijmegen" + }, + { + "lang": "nl", + "types": [ + "label" + ], + "value": "Radboud Universiteit Nijmegen" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université Radboud de Nimègue" + } + ], + "relationships": [ + { + "label": "Catharina Ziekenhuis", + "type": "related", + "id": "https://ror.org/01qavk531" + }, + { + "label": "Máxima Medisch Centrum", + "type": "related", + "id": "https://ror.org/02x6rcb77" + }, + { + "label": "Radboud University Medical Center", + "type": "related", + "id": "https://ror.org/05wg1m734" + }, + { + "label": "FELIX Laboratory", + "type": "child", + "id": "https://ror.org/03tkwyq76" + }, + { + "label": "Radboud Institute for Molecular Life Sciences", + "type": "child", + "id": "https://ror.org/01yb10j39" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/0175hh227.json b/v1.43/0175hh227.json new file mode 100644 index 000000000..95a5f82ed --- /dev/null +++ b/v1.43/0175hh227.json @@ -0,0 +1,162 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1794, + "external_ids": [ + { + "all": [ + "0000 0001 2185 090X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100013943" + ], + "preferred": "501100013943", + "type": "fundref" + }, + { + "all": [ + "Q524289" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.36823.3c" + ], + "preferred": "grid.36823.3c", + "type": "grid" + } + ], + "id": "https://ror.org/0175hh227", + "links": [ + { + "type": "website", + "value": "http://www.cnam.fr/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Conservatoire_national_des_arts_et_m%C3%A9tiers" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Conservatoire National des Arts et Métiers" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "National Conservatory of Arts and Crafts" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CNAM" + } + ], + "relationships": [ + { + "label": "HESAM Université", + "type": "parent", + "id": "https://ror.org/042949r55" + }, + { + "label": "Laboratoire Ingénierie des Fluides Systèmes Énergétiques", + "type": "child", + "id": "https://ror.org/00awn3k11" + }, + { + "label": "Laboratoire Interdisciplinaire pour la Sociologie Economique", + "type": "child", + "id": "https://ror.org/01b8mj511" + }, + { + "label": "Laboratoire de Dynamique des Fluides", + "type": "child", + "id": "https://ror.org/059jx7q58" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Nutritional Epidemiology Research Unit", + "type": "child", + "id": "https://ror.org/04hzkx672" + }, + { + "label": "Processes and Engineering in Mechanics and Materials", + "type": "child", + "id": "https://ror.org/017jp7t31" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "related", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "ENCPB - Lycée Pierre-Gilles-de-Gennes", + "type": "related", + "id": "https://ror.org/01180st77" + }, + { + "label": "Laboratoire d'électronique, systèmes de communication et microsystèmes", + "type": "child", + "id": "https://ror.org/01m83bk32" + }, + { + "label": "Métabiot", + "type": "child", + "id": "https://ror.org/00wyh7698" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "child", + "id": "https://ror.org/00hgbrg14" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/0177kw895.json b/v1.43/0177kw895.json new file mode 100644 index 000000000..38a16c3b1 --- /dev/null +++ b/v1.43/0177kw895.json @@ -0,0 +1,52 @@ +{ + "locations": [ + { + "geonames_id": 5128581, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.71427, + "lng": -74.00597, + "name": "New York" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012695" + ], + "preferred": "100012695" + } + ], + "id": "https://ror.org/0177kw895", + "domains": [], + "links": [], + "names": [ + { + "value": "Beatrice and Samuel A. Seaver Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/017d4c820.json b/v1.43/017d4c820.json new file mode 100644 index 000000000..0ca6c0328 --- /dev/null +++ b/v1.43/017d4c820.json @@ -0,0 +1,55 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/017d4c820", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://lundtrust.org.uk" + } + ], + "names": [ + { + "value": "Lund Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Arcadia Fund", + "type": "related", + "id": "https://ror.org/051z6e826" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/017d8gk22.json b/v1.43/017d8gk22.json new file mode 100644 index 000000000..d962193e3 --- /dev/null +++ b/v1.43/017d8gk22.json @@ -0,0 +1,114 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1867, + "external_ids": [ + { + "all": [ + "100010065" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.260238.d" + ], + "preferred": "grid.260238.d", + "type": "grid" + }, + { + "all": [ + "0000 0001 2224 4258" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1054905" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/017d8gk22", + "links": [ + { + "type": "website", + "value": "http://www.morgan.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Morgan_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + }, + "geonames_id": 4347778 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MSU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Morgan State University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal de Morgan" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État morgan" + } + ], + "relationships": [ + { + "label": "Materials Science in Extreme Environments University Research Alliance", + "type": "related", + "id": "https://ror.org/04n07f274" + }, + { + "label": "National Transportation Center", + "type": "child", + "id": "https://ror.org/02wjh7838" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/017wrhq72.json b/v1.43/017wrhq72.json new file mode 100644 index 000000000..3ea764d94 --- /dev/null +++ b/v1.43/017wrhq72.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2063523, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -31.95224, + "lng": 115.8614, + "name": "Perth" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q5260531" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.1310.3" + ], + "preferred": "grid.1310.3" + } + ], + "id": "https://ror.org/017wrhq72", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.water.wa.gov.au/" + } + ], + "names": [ + { + "value": "Department of Water", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Department of Water and Environmental Regulation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Department of Water and Environmental Regulation", + "type": "successor", + "id": "https://ror.org/0508kew31" + } + ], + "status": "inactive", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0187kwz08.json b/v1.43/0187kwz08.json new file mode 100644 index 000000000..0b9c29350 --- /dev/null +++ b/v1.43/0187kwz08.json @@ -0,0 +1,354 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2006, + "external_ids": [ + { + "all": [ + "501100000272", + "501100001921", + "501100000659", + "501100000664", + "501100002001", + "501100001881", + "501100001922", + "501100007602", + "501100009128", + "100018336" + ], + "preferred": "501100000272", + "type": "fundref" + }, + { + "all": [ + "grid.451056.3" + ], + "preferred": "grid.451056.3", + "type": "grid" + }, + { + "all": [ + "0000 0001 2116 3923" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q6973576" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/0187kwz08", + "links": [ + { + "type": "website", + "value": "http://www.nihr.ac.uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/National_Institute_for_Health_Research" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NIHR" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "National Institute for Health Research" + } + ], + "relationships": [ + { + "label": "NIHR Academy", + "type": "child", + "id": "https://ror.org/02nv4he32" + }, + { + "label": "NIHR Barts Cardiovascular Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/03m51nf34" + }, + { + "label": "NIHR Birmingham Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/05ccjmp23" + }, + { + "label": "NIHR Birmingham Liver Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/00k5pte35" + }, + { + "label": "NIHR Bristol Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/02mtt1z51" + }, + { + "label": "NIHR Bristol Cardiovascular Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/03gna4510" + }, + { + "label": "NIHR Bristol Nutrition Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/019rf7x86" + }, + { + "label": "NIHR CRUK Experimental Cancer Medicine Centre", + "type": "child", + "id": "https://ror.org/05bfg0961" + }, + { + "label": "NIHR Cambridge Dementia Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/02d2g0205" + }, + { + "label": "NIHR Central Commissioning Facility", + "type": "child", + "id": "https://ror.org/03c1etk80" + }, + { + "label": "NIHR Clinical Research Network", + "type": "child", + "id": "https://ror.org/05fj7ar22" + }, + { + "label": "NIHR Evaluation Trials and Studies Coordinating Centre", + "type": "child", + "id": "https://ror.org/03d7d0579" + }, + { + "label": "NIHR Exeter Clinical Research Facility", + "type": "child", + "id": "https://ror.org/02z37qb25" + }, + { + "label": "NIHR Imperial Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/01kmhx639" + }, + { + "label": "NIHR Leeds In Vitro Diagnostics Co-operative", + "type": "child", + "id": "https://ror.org/01ykn4490" + }, + { + "label": "NIHR Leeds Musculoskeletal Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/035f5f914" + }, + { + "label": "NIHR Leicester Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/05xqxa525" + }, + { + "label": "NIHR Leicester Cardiovascular Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/03ke6rf22" + }, + { + "label": "NIHR Leicester-Loughborough Diet, Lifestyle and Physical Activity Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/01fphh031" + }, + { + "label": "NIHR Liverpool Pancreatic Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/0298hp073" + }, + { + "label": "NIHR Manchester Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/05njkjr15" + }, + { + "label": "NIHR Maudsley Dementia Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/03yr99j48" + }, + { + "label": "NIHR MindTech MedTech Co-operative", + "type": "child", + "id": "https://ror.org/02erzes48" + }, + { + "label": "NIHR Moorfields Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/004hydx84" + }, + { + "label": "NIHR Newcastle Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/044m9mw93" + }, + { + "label": "NIHR Nottingham Digestive Diseases Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/02ppy9c89" + }, + { + "label": "NIHR Nottingham Hearing Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/03f5eqm42" + }, + { + "label": "NIHR Oxford Musculoskeletal Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/00aps1a34" + }, + { + "label": "NIHR Queen Square Dementia Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/04ksb3515" + }, + { + "label": "NIHR Royal Brompton Cardiovascular Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/01y4kmz24" + }, + { + "label": "NIHR Royal Brompton Respiratory Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/02j3q7j55" + }, + { + "label": "NIHR Southampton Respiratory Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/01yg3ff09" + }, + { + "label": "NIHR Surgical Reconstruction and Microbiology Research Centre", + "type": "child", + "id": "https://ror.org/042sjcz88" + }, + { + "label": "NIHR Trauma Management MedTech Co-operative", + "type": "child", + "id": "https://ror.org/04k9wp214" + }, + { + "label": "NIHR WoundTec Healthcare Technology Co-operative", + "type": "child", + "id": "https://ror.org/044xxhs61" + }, + { + "label": "UCL Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/03r9qc142" + }, + { + "label": "NIHR BioResource", + "type": "child", + "id": "https://ror.org/04dmgak75" + }, + { + "label": "NIHR Great Ormond Street Hospital Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/033rx1153" + }, + { + "label": "NIHR Cambridge Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/05m8dr349" + }, + { + "label": "NIHR School for Primary Care Research", + "type": "child", + "id": "https://ror.org/03wz10q85" + }, + { + "label": "NIHR School for Public Health Research", + "type": "child", + "id": "https://ror.org/05c9p6d02" + }, + { + "label": "NIHR Biomedical Research Centre at The Royal Marsden and the ICR", + "type": "child", + "id": "https://ror.org/014ktry78" + }, + { + "label": "NIHR Maudsley Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/05fd9ct06" + }, + { + "label": "NIHR School for Social Care Research", + "type": "child", + "id": "https://ror.org/03q7vwk42" + }, + { + "label": "NIHR Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber", + "type": "child", + "id": "https://ror.org/0300g2m85" + }, + { + "label": "NIHR Applied Research Collaboration Greater Manchester", + "type": "child", + "id": "https://ror.org/021954z67" + }, + { + "label": "NIHR Greater Manchester Patient Safety Translational Research Centre", + "type": "child", + "id": "https://ror.org/0436znn81" + }, + { + "label": "NIHR Applied Research Collaboration West", + "type": "child", + "id": "https://ror.org/03pzxq793" + }, + { + "label": "NIHR Collaboration for Leadership in Applied Health Research and Care South London", + "type": "child", + "id": "https://ror.org/02gqg2511" + }, + { + "label": "NIHR Applied Research Collaboration South West Peninsula", + "type": "child", + "id": "https://ror.org/01qgn1839" + }, + { + "label": "NIHR Collaboration for Leadership in Applied Health Research and Care North West Coast", + "type": "child", + "id": "https://ror.org/03tmzq288" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/018a8yy17.json b/v1.43/018a8yy17.json new file mode 100644 index 000000000..d91742950 --- /dev/null +++ b/v1.43/018a8yy17.json @@ -0,0 +1,116 @@ +{ + "locations": [ + { + "geonames_id": 1804540, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.52079, + "lng": 116.71471, + "name": "Langfang" + } + } + ], + "established": 1993, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9291 3447" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q23409786" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.510593.b" + ], + "preferred": "grid.510593.b" + } + ], + "id": "https://ror.org/018a8yy17", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.enn.cn/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ENN_Group#:~:text=ENN%20Group%20(Chinese%3A%20%E6%96%B0%E5%A5%A5,energy%20chemicals%20and%20real%20estate." + } + ], + "names": [ + { + "value": "ENN (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ENN Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ENN Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ENN Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "新奥集团", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "ENN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "ENN-Tongji Advanced Institute of Clean Energy", + "type": "child", + "id": "https://ror.org/05pzhab84" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/018qmvm63.json b/v1.43/018qmvm63.json new file mode 100644 index 000000000..fce57ca9a --- /dev/null +++ b/v1.43/018qmvm63.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/018qmvm63", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ist-id.pt" + } + ], + "names": [ + { + "value": "IST-ID - Associação do Instituto Superior Técnico para a Investigação e Desenvolvimento", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Associação do Instituto Superior Técnico para a Investigação e Desenvolvimento", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IST-ID", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/018wp0236.json b/v1.43/018wp0236.json new file mode 100644 index 000000000..dc06eed32 --- /dev/null +++ b/v1.43/018wp0236.json @@ -0,0 +1,105 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1931, + "external_ids": [ + { + "all": [ + "100010740" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.410859.1" + ], + "preferred": "grid.410859.1", + "type": "grid" + }, + { + "all": [ + "0000 0001 2225 398X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q720489" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/018wp0236", + "links": [ + { + "type": "website", + "value": "http://www.asahi-kasei.co.jp/asahi/en/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Asahi_Kasei" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "JP", + "country_name": "Japan", + "lat": 35.6895, + "lng": 139.69171, + "name": "Tokyo" + }, + "geonames_id": 1850147 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Asahi Kasei (Japan)" + }, + { + "lang": "ja", + "types": [ + "label" + ], + "value": "旭化成" + } + ], + "relationships": [ + { + "label": "Asahi Kasei (Germany)", + "type": "child", + "id": "https://ror.org/040cmp171" + }, + { + "label": "Asahi Kasei (United States)", + "type": "child", + "id": "https://ror.org/00hqnb941" + }, + { + "label": "ZOLL Medical Corporation (United States)", + "type": "child", + "id": "https://ror.org/036wkjd70" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/018zj6955.json b/v1.43/018zj6955.json new file mode 100644 index 000000000..1b34925f8 --- /dev/null +++ b/v1.43/018zj6955.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3161732, + "geonames_details": { + "country_code": "NO", + "country_name": "Norway", + "lat": 60.39299, + "lng": 5.32415, + "name": "Bergen" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 0401" + ], + "preferred": "0000 0004 9225 0401" + }, + { + "type": "wikidata", + "all": [ + "Q17750234" + ], + "preferred": "Q17750234" + }, + { + "type": "fundref", + "all": [ + "100016190" + ], + "preferred": "100016190" + } + ], + "id": "https://ror.org/018zj6955", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mohnfoundation.no" + }, + { + "type": "wikipedia", + "value": "https://no.wikipedia.org/wiki/Trond_Mohn_stiftelse" + } + ], + "names": [ + { + "value": "Trond Mohn stiftelse", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Bergen Medical Research Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Trond Mohn Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01922h422.json b/v1.43/01922h422.json new file mode 100644 index 000000000..b9b764bc2 --- /dev/null +++ b/v1.43/01922h422.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 6325521, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.80326, + "lng": -71.17793, + "name": "Lévis" + } + } + ], + "established": 1967, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8723 7684" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3010001" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.292559.0" + ], + "preferred": "grid.292559.0" + } + ], + "id": "https://ror.org/01922h422", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cegeplevis.ca" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/C%C3%A9gep_de_L%C3%A9vis-Lauzon" + } + ], + "names": [ + { + "value": "Cégep de Lévis", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Cégep Lévis", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Cegep Levis Lauzon", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Collège d'enseignement général et professionnel Levis Lauzon", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0198v2949.json b/v1.43/0198v2949.json new file mode 100644 index 000000000..9ac07f065 --- /dev/null +++ b/v1.43/0198v2949.json @@ -0,0 +1,121 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1950, + "external_ids": [ + { + "all": [ + "501100006702" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.412211.5" + ], + "preferred": "grid.412211.5", + "type": "grid" + }, + { + "all": [ + "0000 0004 4687 5267" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2840233" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/0198v2949", + "links": [ + { + "type": "website", + "value": "http://www.uerj.br/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Rio_de_Janeiro_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -22.90642, + "lng": -43.18223, + "name": "Rio de Janeiro" + }, + "geonames_id": 3451190 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Rio de Janeiro State University" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UERJ" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad del Estado del Río de Janeiro" + }, + { + "lang": "pt", + "types": [ + "label" + ], + "value": "Universidade do Estado do Rio de Janeiro" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de l'État de rio de janeiro" + } + ], + "relationships": [ + { + "label": "Hospital Universitário Pedro Ernesto", + "type": "related", + "id": "https://ror.org/00hrmgq26" + }, + { + "label": "Instituto Politécnico do Rio de Janeiro", + "type": "child", + "id": "https://ror.org/01g0jwx42" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/0199hds37.json b/v1.43/0199hds37.json new file mode 100644 index 000000000..4a799e6c4 --- /dev/null +++ b/v1.43/0199hds37.json @@ -0,0 +1,223 @@ +{ + "locations": [ + { + "geonames_id": 2968275, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.95833, + "lng": 2.34167, + "name": "Villetaneuse" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2149 6883" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100009506" + ], + "preferred": "501100009506" + }, + { + "type": "wikidata", + "all": [ + "Q1780212" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.11318.3a" + ], + "preferred": "grid.11318.3a" + } + ], + "id": "https://ror.org/0199hds37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.univ-spn.fr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Paris_13_University" + } + ], + "names": [ + { + "value": "Université Sorbonne Paris Nord", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Paris North", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Paris 13 University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Sorbonne Paris North", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université Paris 13", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "USPN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Adaptateurs de Signalisation en Hématologie", + "type": "child", + "id": "https://ror.org/03837fc46" + }, + { + "label": "Laboratoire d'Informatique de Paris-Nord", + "type": "child", + "id": "https://ror.org/05g1zjw44" + }, + { + "label": "Institut de Biomécanique Humaine Georges Charpak", + "type": "child", + "id": "https://ror.org/053gdvc84" + }, + { + "label": "Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux", + "type": "child", + "id": "https://ror.org/03xg8m734" + }, + { + "label": "Laboratoire Analyse, Géométrie et Applications", + "type": "child", + "id": "https://ror.org/018nzqy79" + }, + { + "label": "Laboratoire d’Ethologie Expérimentale et Comparée", + "type": "child", + "id": "https://ror.org/0414fab98" + }, + { + "label": "Laboratory for Vascular Translational Science", + "type": "child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laser Physics Laboratory", + "type": "child", + "id": "https://ror.org/03n3yg876" + }, + { + "label": "Nutritional Epidemiology Research Unit", + "type": "child", + "id": "https://ror.org/04hzkx672" + }, + { + "label": "Campus Condorcet", + "type": "related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Hypoxie et Poumon", + "type": "child", + "id": "https://ror.org/02mtpz628" + }, + { + "label": "Laboratoire Interuniversitaire Expérience, Ressources culturelles, Education", + "type": "child", + "id": "https://ror.org/0127n6542" + }, + { + "label": "Physiopathologie, cibles et thérapies de la polyarthrite rhumatoïde", + "type": "child", + "id": "https://ror.org/05vqkgf08" + }, + { + "label": "Unité transversale de recherche en psychogénèse et psychopathologie", + "type": "child", + "id": "https://ror.org/04dqaqw31" + }, + { + "label": "Maison des Sciences de l'Homme Paris Nord", + "type": "child", + "id": "https://ror.org/05079x435" + }, + { + "label": "Unité de Recherche en Biomatériaux Innovant et Interfaces", + "type": "child", + "id": "https://ror.org/01cht3g41" + }, + { + "label": "CEPN - Centre d'Economie de l'Université Paris Nord", + "type": "child", + "id": "https://ror.org/03k32n603" + }, + { + "label": "Chimie, Structures et Propriétés de Biomatériaux et d'Agents Thérapeutiques", + "type": "child", + "id": "https://ror.org/0343fpq57" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénieurie des Connaissances en e-Santé", + "type": "child", + "id": "https://ror.org/01jr1v359" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/019g8w217.json b/v1.43/019g8w217.json new file mode 100644 index 000000000..b5349eca0 --- /dev/null +++ b/v1.43/019g8w217.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q10302897" + ], + "preferred": "Q10302897" + } + ], + "id": "https://ror.org/019g8w217", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.imm.fm.ul.pt/web/imm/home" + }, + { + "type": "wikipedia", + "value": "https://pt.wikipedia.org/wiki/Instituto_de_Medicina_Molecular" + } + ], + "names": [ + { + "value": "Instituto de Medicina Molecular João Lobo Antunes", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto de Medicina Molecular", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IMM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Lisbon", + "type": "parent", + "id": "https://ror.org/01c27hj86" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/019mh5c80.json b/v1.43/019mh5c80.json new file mode 100644 index 000000000..2721d7c6d --- /dev/null +++ b/v1.43/019mh5c80.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2874545, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.12773, + "lng": 11.62916, + "name": "Magdeburg" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/019mh5c80", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mwu.sachsen-anhalt.de" + } + ], + "names": [ + { + "value": "Ministerium für Wissenschaft, Energie, Klimaschutz und Umwelt des Landes Sachsen-Anhalt", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry for Science, Energy, Climate Protection and the Environment of the State of Saxony-Anhalt", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MWU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/019rf7x86.json b/v1.43/019rf7x86.json new file mode 100644 index 000000000..0b462dffe --- /dev/null +++ b/v1.43/019rf7x86.json @@ -0,0 +1,68 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [ + { + "all": [ + "grid.454368.8" + ], + "preferred": "grid.454368.8", + "type": "grid" + } + ], + "id": "https://ror.org/019rf7x86", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/research-innovation/our-research/bristol-nutrition-bru/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "NIHR Bristol Nutrition Biomedical Research Unit" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + }, + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/019tcpt25.json b/v1.43/019tcpt25.json new file mode 100644 index 000000000..68e870d97 --- /dev/null +++ b/v1.43/019tcpt25.json @@ -0,0 +1,163 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2015, + "external_ids": [ + { + "all": [ + "grid.494567.d" + ], + "preferred": "grid.494567.d", + "type": "grid" + }, + { + "all": [ + "0000 0004 4907 1766" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q19203245" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/019tcpt25", + "links": [ + { + "type": "website", + "value": "https://www.centralesupelec.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/CentraleSup%C3%A9lec" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + }, + "geonames_id": 3016078 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CS" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "CentraleSupélec" + } + ], + "relationships": [ + { + "label": "Laboratoire d'Énergétique Moléculaire et Macroscopique, Combustion", + "type": "child", + "id": "https://ror.org/02wy3s959" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratory of Quantum and Molecular Photonics", + "type": "child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire Matériaux Optiques, Photonique et Systèmes", + "type": "child", + "id": "https://ror.org/055swm364" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Mathématiques et Informatique pour la Complexité et les Systèmes", + "type": "child", + "id": "https://ror.org/03q29s414" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Supélec", + "type": "predecessor", + "id": "https://ror.org/00n7gwn90" + }, + { + "label": "École Centrale Paris", + "type": "predecessor", + "id": "https://ror.org/00v0y5771" + }, + { + "label": "Mahindra University", + "type": "related", + "id": "https://ror.org/05751b994" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "child", + "id": "https://ror.org/02xnnng09" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/019vw0b32.json b/v1.43/019vw0b32.json new file mode 100644 index 000000000..0e6b2caa5 --- /dev/null +++ b/v1.43/019vw0b32.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 1668341, + "geonames_details": { + "country_code": "TW", + "country_name": "Taiwan", + "lat": 25.04776, + "lng": 121.53185, + "name": "Taipei" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/019vw0b32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.qps.com" + } + ], + "names": [ + { + "value": "QPS Taiwan (Taiwan)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "昌達生化", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "QPS Taiwan", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01a2wsa50.json b/v1.43/01a2wsa50.json new file mode 100644 index 000000000..0b82c5ddb --- /dev/null +++ b/v1.43/01a2wsa50.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 3110044, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.31283, + "lng": -1.97499, + "name": "Donostia / San Sebastian" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432380.e" + ], + "preferred": "grid.432380.e" + }, + { + "type": "wikidata", + "all": [ + "Q12255260" + ], + "preferred": "Q12255260" + }, + { + "type": "isni", + "all": [ + "0000 0004 6416 6288" + ], + "preferred": "0000 0004 6416 6288" + } + ], + "id": "https://ror.org/01a2wsa50", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.biodonostia.org" + } + ], + "names": [ + { + "value": "Biogipuzkoa Health Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Biogipuzkoa HRI", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biodonostia Health Research Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biodonostia", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01achz565.json b/v1.43/01achz565.json new file mode 100644 index 000000000..a060bdab7 --- /dev/null +++ b/v1.43/01achz565.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 1784764, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 29.16667, + "lng": 120, + "name": "Zhejiang" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/01achz565", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://windeyenergy.com" + } + ], + "names": [ + { + "value": "Windey Energy Technology Group Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Windey Energy Technology Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Windey Energy Technology Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Windey Energy Technology Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "浙江运达风电股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01an7q238.json b/v1.43/01an7q238.json new file mode 100644 index 000000000..a5f76640c --- /dev/null +++ b/v1.43/01an7q238.json @@ -0,0 +1,214 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1868, + "external_ids": [ + { + "all": [ + "100006978", + "100010501", + "100009773", + "100009999", + "100009998", + "100007502", + "100009220", + "100008934", + "100009521", + "100009151", + "100011283", + "100010556", + "100007247", + "100011068", + "100010948" + ], + "preferred": "100006978", + "type": "fundref" + }, + { + "all": [ + "grid.47840.3f" + ], + "preferred": "grid.47840.3f", + "type": "grid" + }, + { + "all": [ + "0000 0001 2181 7878" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q168756" + ], + "preferred": "Q168756", + "type": "wikidata" + } + ], + "id": "https://ror.org/01an7q238", + "links": [ + { + "type": "website", + "value": "https://www.berkeley.edu" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_California,_Berkeley" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.87159, + "lng": -122.27275, + "name": "Berkeley" + }, + "geonames_id": 5327684 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Cal Berkeley" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "UC Berkeley" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UCB" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de California en Berkeley" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of California at Berkeley" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of California, Berkeley" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Californie à Berkeley" + } + ], + "relationships": [ + { + "label": "Center for Effective Global Action", + "type": "child", + "id": "https://ror.org/03djjyk45" + }, + { + "label": "Gump South Pacific Research Station", + "type": "child", + "id": "https://ror.org/04sk0et52" + }, + { + "label": "Innovative Genomics Institute", + "type": "child", + "id": "https://ror.org/01r4tcq81" + }, + { + "label": "Plant Gene Expression Center", + "type": "child", + "id": "https://ror.org/03rafms67" + }, + { + "label": "Tsinghua–Berkeley Shenzhen Institute", + "type": "child", + "id": "https://ror.org/02hhwwz98" + }, + { + "label": "CZ Biohub", + "type": "child", + "id": "https://ror.org/00knt4f32" + }, + { + "label": "QB3", + "type": "child", + "id": "https://ror.org/04n1n3n22" + }, + { + "label": "University of California System", + "type": "parent", + "id": "https://ror.org/00pjdza24" + }, + { + "label": "Dominican School of Philosophy and Theology", + "type": "related", + "id": "https://ror.org/015yfqq31" + }, + { + "label": "Graduate Theological Union", + "type": "related", + "id": "https://ror.org/00xs48965" + }, + { + "label": "Kaiser Permanente Oakland Medical Center", + "type": "related", + "id": "https://ror.org/05rfek682" + }, + { + "label": "San Francisco Theological Seminary", + "type": "related", + "id": "https://ror.org/02wyv8x71" + }, + { + "label": "Hubbard Brook Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/00mkh7345" + }, + { + "label": "International Computer Science Institute", + "type": "related", + "id": "https://ror.org/01ewh7m12" + }, + { + "label": "Pacific Earthquake Engineering Research Center", + "type": "child", + "id": "https://ror.org/02cq2e244" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/01aqw9j77.json b/v1.43/01aqw9j77.json new file mode 100644 index 000000000..f1f1e0b4c --- /dev/null +++ b/v1.43/01aqw9j77.json @@ -0,0 +1,59 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0408 3253" + ], + "preferred": "0000 0004 0408 3253" + }, + { + "type": "fundref", + "all": [ + "100018158" + ], + "preferred": "100018158" + } + ], + "id": "https://ror.org/01aqw9j77", + "domains": [], + "links": [], + "names": [ + { + "value": "Hintze Family Charitable Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01ar0xf40.json b/v1.43/01ar0xf40.json new file mode 100644 index 000000000..3615f9736 --- /dev/null +++ b/v1.43/01ar0xf40.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 1797929, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 36.06488, + "lng": 120.38042, + "name": "Qingdao" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/01ar0xf40", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://rise.sinopec.com/rise/" + } + ], + "names": [ + { + "value": "SINOPEC Research Institute of Safety Engineering Co., Ltd.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SINOPEC Research Institute of Safety Engineering Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中石化安全工程研究院有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01b5rtm37.json b/v1.43/01b5rtm37.json new file mode 100644 index 000000000..31d49cf53 --- /dev/null +++ b/v1.43/01b5rtm37.json @@ -0,0 +1,94 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.493838.d" + ], + "preferred": "grid.493838.d" + } + ], + "id": "https://ror.org/01b5rtm37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://institut-curie.org/unit/umr3348" + } + ], + "names": [ + { + "value": "Genome Integrity, RNA and Cancer", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Genotoxic Stress and Cancer", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Stress génotoxique et cancer", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Intégrité du génome, ARN et cancer", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [ + { + "label": "Institute Curie", + "type": "parent", + "id": "https://ror.org/04t0gwh46" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01bdx3k27.json b/v1.43/01bdx3k27.json new file mode 100644 index 000000000..666788c21 --- /dev/null +++ b/v1.43/01bdx3k27.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 294074, + "geonames_details": { + "country_code": "IL", + "country_name": "Israel", + "lat": 31.92933, + "lng": 34.79868, + "name": "Ness Ziona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0680 6846" + ], + "preferred": "0000 0005 0680 6846" + } + ], + "id": "https://ror.org/01bdx3k27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://augm.com" + } + ], + "names": [ + { + "value": "Augmanity Nano Ltd. (Israel)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Augmanity Nano", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Augmanity Nano Ltd.", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01bg62x04.json b/v1.43/01bg62x04.json new file mode 100644 index 000000000..d095e67e2 --- /dev/null +++ b/v1.43/01bg62x04.json @@ -0,0 +1,176 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2331 7762" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100002809", + "501100002943" + ], + "preferred": "501100002809" + }, + { + "type": "wikidata", + "all": [ + "Q8022", + "Q3112544" + ], + "preferred": "Q8022" + }, + { + "type": "grid", + "all": [ + "grid.454735.4" + ], + "preferred": "grid.454735.4" + } + ], + "id": "https://ror.org/01bg62x04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://catalangovernment.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Generalitat_de_Catalunya" + } + ], + "names": [ + { + "value": "Government of Catalonia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Generalidad de Cataluña", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Generalitat de Catalunya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Kataluniako Generalitatea", + "types": [ + "label" + ], + "lang": "eu" + } + ], + "relationships": [ + { + "label": "Agencia per a la Competitivit de l'Empresa", + "type": "child", + "id": "https://ror.org/01xhc9d78" + }, + { + "label": "Agència de Gestió d'Ajuts Universitaris i de Recerca", + "type": "child", + "id": "https://ror.org/01n4pqe45" + }, + { + "label": "Departament d'Educació", + "type": "child", + "id": "https://ror.org/02dkz1149" + }, + { + "label": "Departament de Cultura", + "type": "child", + "id": "https://ror.org/014ns9811" + }, + { + "label": "Departament de Salut", + "type": "child", + "id": "https://ror.org/00nyrjc53" + }, + { + "label": "Institut Català de la Salut", + "type": "child", + "id": "https://ror.org/04wkdwp52" + }, + { + "label": "Institut Català de les Dones", + "type": "child", + "id": "https://ror.org/03g0h0k24" + }, + { + "label": "Institut de Seguretat Pública de Catalunya", + "type": "child", + "id": "https://ror.org/01k6ah132" + }, + { + "label": "Institute for Research and Technology in Food and Agriculture", + "type": "child", + "id": "https://ror.org/012zh9h13" + }, + { + "label": "Departament d'Economia i Hisenda de la Generalitat de Catalunya", + "type": "child", + "id": "https://ror.org/0564q6y15" + }, + { + "label": "National Institute of Physical Education of Catalonia", + "type": "child", + "id": "https://ror.org/04xrm3t06" + }, + { + "label": "Institut de Política Econòmica i Governança", + "type": "child", + "id": "https://ror.org/03wbt1f24" + }, + { + "label": "Departament de Recerca i Universitats", + "type": "child", + "id": "https://ror.org/01gbnem66" + }, + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "related", + "id": "https://ror.org/03abrgd14" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01bj3aw27.json b/v1.43/01bj3aw27.json new file mode 100644 index 000000000..01f7cf30c --- /dev/null +++ b/v1.43/01bj3aw27.json @@ -0,0 +1,343 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1977, + "external_ids": [ + { + "all": [ + "0000 0001 2342 3717" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100000015", + "100006157" + ], + "preferred": "100000015", + "type": "fundref" + }, + { + "all": [ + "Q217810", + "Q6422983" + ], + "preferred": "Q217810", + "type": "wikidata" + }, + { + "all": [ + "grid.85084.31" + ], + "preferred": "grid.85084.31", + "type": "grid" + } + ], + "id": "https://ror.org/01bj3aw27", + "links": [ + { + "type": "website", + "value": "https://www.energy.gov" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/United_States_Department_of_Energy" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + }, + "geonames_id": 4140963 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "United States Department of Energy" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "U.S. Department of Energy" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Departamento de Energía de los Estados Unidos" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Département de l'Énergie des États-unis" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DOE" + } + ], + "relationships": [ + { + "label": "Government of the United States of America", + "type": "parent", + "id": "https://ror.org/02rcrvv70" + }, + { + "label": "Advanced Research Projects Agency-Energy", + "type": "child", + "id": "https://ror.org/03q1rgc19" + }, + { + "label": "Consortium for the Advanced Simulation of Light Water Reactors", + "type": "child", + "id": "https://ror.org/00qq8bd87" + }, + { + "label": "Great Lakes Bioenergy Research Center", + "type": "child", + "id": "https://ror.org/01ca2by25" + }, + { + "label": "International Partnership for the Hydrogen and Fuel Cell in the Economy", + "type": "child", + "id": "https://ror.org/04d8cf622" + }, + { + "label": "Joint BioEnergy Institute", + "type": "child", + "id": "https://ror.org/03ww55028" + }, + { + "label": "National Nuclear Security Administration", + "type": "child", + "id": "https://ror.org/03sk1we31" + }, + { + "label": "Nevada National Security Site", + "type": "child", + "id": "https://ror.org/037k8mg80" + }, + { + "label": "Office of Economic Impact and Diversity", + "type": "child", + "id": "https://ror.org/05hsv7e61" + }, + { + "label": "Office of Energy Efficiency and Renewable Energy", + "type": "child", + "id": "https://ror.org/02xznz413" + }, + { + "label": "Office of Environmental Management", + "type": "child", + "id": "https://ror.org/00km40770" + }, + { + "label": "Office of Environmental Protection, Sustainability Support and Corporate Safety Analysis", + "type": "child", + "id": "https://ror.org/01c9ay627" + }, + { + "label": "Office of Fossil Energy", + "type": "child", + "id": "https://ror.org/03ery9d53" + }, + { + "label": "Office of Inspector General", + "type": "child", + "id": "https://ror.org/04nnxen11" + }, + { + "label": "Office of Intelligence and Counterintelligence", + "type": "child", + "id": "https://ror.org/02z1qvq09" + }, + { + "label": "Office of International Affairs", + "type": "child", + "id": "https://ror.org/05ek3m339" + }, + { + "label": "Office of Legacy Management", + "type": "child", + "id": "https://ror.org/03jf3w726" + }, + { + "label": "Office of Management", + "type": "child", + "id": "https://ror.org/02ah1da87" + }, + { + "label": "Office of Nuclear Energy", + "type": "child", + "id": "https://ror.org/05tj7dm33" + }, + { + "label": "Office of Science", + "type": "child", + "id": "https://ror.org/00mmn6b08" + }, + { + "label": "Office of Space and Defense Power Systems", + "type": "child", + "id": "https://ror.org/04s778r16" + }, + { + "label": "Office of Under Secretary of Energy for Science", + "type": "child", + "id": "https://ror.org/03eecgp81" + }, + { + "label": "Office of the General Counsel", + "type": "child", + "id": "https://ror.org/0054t4769" + }, + { + "label": "Savannah River Operations Office", + "type": "child", + "id": "https://ror.org/05hhm9a98" + }, + { + "label": "United States Energy Information Administration", + "type": "child", + "id": "https://ror.org/01h04ms65" + }, + { + "label": "Vera C. Rubin Observatory", + "type": "child", + "id": "https://ror.org/048g3cy84" + }, + { + "label": "Kansas City National Security Campus", + "type": "child", + "id": "https://ror.org/03e7mhc87" + }, + { + "label": "Environmental System Science Data Infrastructure for a Virtual Ecosystem", + "type": "child", + "id": "https://ror.org/01t14bp54" + }, + { + "label": "Office of the Chief Information Officer", + "type": "child", + "id": "https://ror.org/00hvbwp12" + }, + { + "label": "Office of Under Secretary for Science and Innovation", + "type": "child", + "id": "https://ror.org/00htph268" + }, + { + "label": "Office of Technology Transitions", + "type": "child", + "id": "https://ror.org/02vg64e60" + }, + { + "label": "Office of Secretary of Energy", + "type": "child", + "id": "https://ror.org/028rfb880" + }, + { + "label": "Office of Public Affairs", + "type": "child", + "id": "https://ror.org/00mw1dx44" + }, + { + "label": "Office of Policy", + "type": "child", + "id": "https://ror.org/05p9bjd64" + }, + { + "label": "Office of Indian Energy Policy and Programs", + "type": "child", + "id": "https://ror.org/02bhbx726" + }, + { + "label": "Office of Fossil Energy and Carbon Management", + "type": "child", + "id": "https://ror.org/037897814" + }, + { + "label": "Office of Environment, Health, Safety and Security", + "type": "child", + "id": "https://ror.org/04csf5r20" + }, + { + "label": "Office of Enterprise Assessments", + "type": "child", + "id": "https://ror.org/035fxjt55" + }, + { + "label": "Office of State and Community Energy Programs", + "type": "child", + "id": "https://ror.org/035sc8895" + }, + { + "label": "Office of Federal Energy Management Programs", + "type": "child", + "id": "https://ror.org/01zprx076" + }, + { + "label": "Grid Deployment Office", + "type": "child", + "id": "https://ror.org/00n4kg172" + }, + { + "label": "Office of Electricity", + "type": "child", + "id": "https://ror.org/02y6dp041" + }, + { + "label": "Office of Cybersecurity, Energy Security, and Emergency Response", + "type": "child", + "id": "https://ror.org/041g4v832" + }, + { + "label": "Office of Congressional and Intergovernmental Affairs", + "type": "child", + "id": "https://ror.org/05cpnza27" + }, + { + "label": "Oak Ridge Institute for Science and Education", + "type": "child", + "id": "https://ror.org/040vxhp34" + }, + { + "label": "Artificial Intelligence & Technology Office", + "type": "child", + "id": "https://ror.org/00536t873" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/01bkbaq61.json b/v1.43/01bkbaq61.json new file mode 100644 index 000000000..4b9640801 --- /dev/null +++ b/v1.43/01bkbaq61.json @@ -0,0 +1,329 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100015439" + ], + "preferred": "100015439" + }, + { + "type": "wikidata", + "all": [ + "Q30100395" + ], + "preferred": "Q30100395" + } + ], + "id": "https://ror.org/01bkbaq61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cerca.cat" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/CERCA_Institute" + } + ], + "names": [ + { + "value": "CERCA Institution", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institución CERCA", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institució CERCA - Centres de Recerca de Catalunya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Fundació Institució dels Centres de Recerca de Catalunya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "CERCA", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "I-CERCA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "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": "Hospital del Mar Research Institute", + "type": "child", + "id": "https://ror.org/042nkmz09" + }, + { + "label": "Institut Català de Paleoecologia Humana i Evolució Social", + "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": "Institut de Recerca Sant Pau", + "type": "child", + "id": "https://ror.org/005teat46" + }, + { + "label": "Vall d'Hebron Institute of Oncology", + "type": "child", + "id": "https://ror.org/054xx3904" + }, + { + "label": "Institut de Recerca Sant Joan de Déu", + "type": "child", + "id": "https://ror.org/00gy2ar74" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01bpa4157.json b/v1.43/01bpa4157.json new file mode 100644 index 000000000..74260fc42 --- /dev/null +++ b/v1.43/01bpa4157.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1763 0121" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.424730.6" + ], + "preferred": "grid.424730.6" + } + ], + "id": "https://ror.org/01bpa4157", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ic3.cat/" + } + ], + "names": [ + { + "value": "Institut Català de Ciències del Clima", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Catalan Institute of Climate Sciences", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "IC3", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01bvxzn29.json b/v1.43/01bvxzn29.json new file mode 100644 index 000000000..d4a426908 --- /dev/null +++ b/v1.43/01bvxzn29.json @@ -0,0 +1,109 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1964, + "external_ids": [ + { + "all": [ + "100009941" + ], + "preferred": "100009941", + "type": "fundref" + }, + { + "all": [ + "grid.48862.30" + ], + "preferred": "grid.48862.30", + "type": "grid" + }, + { + "all": [ + "Q1143261", + "Q5471272" + ], + "preferred": "Q1143261", + "type": "wikidata" + } + ], + "id": "https://ror.org/01bvxzn29", + "links": [ + { + "type": "website", + "value": "https://www.gov.uk/government/organisations/ministry-of-defence" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Ministry_of_Defence_(United_Kingdom)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Ministry of Defence" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MoD" + } + ], + "relationships": [ + { + "label": "Defence Academy of the United Kingdom", + "type": "child", + "id": "https://ror.org/03myaza48" + }, + { + "label": "Defence Equipment and Support", + "type": "child", + "id": "https://ror.org/00jztws02" + }, + { + "label": "Defence Science and Technology Laboratory", + "type": "child", + "id": "https://ror.org/04jswqb94" + }, + { + "label": "Government of the United Kingdom", + "type": "parent", + "id": "https://ror.org/05wnh3t63" + }, + { + "label": "Defence and Security Accelerator", + "type": "child", + "id": "https://ror.org/05wnp0977" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/01c27hj86.json b/v1.43/01c27hj86.json new file mode 100644 index 000000000..42bb7f838 --- /dev/null +++ b/v1.43/01c27hj86.json @@ -0,0 +1,149 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1911, + "external_ids": [ + { + "all": [ + "501100005765", + "501100007225", + "501100006097", + "501100006201" + ], + "preferred": "501100005765", + "type": "fundref" + }, + { + "all": [ + "grid.9983.b" + ], + "preferred": "grid.9983.b", + "type": "grid" + }, + { + "all": [ + "0000 0001 2181 4263" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1122926", + "Q1636837" + ], + "preferred": "Q1122926", + "type": "wikidata" + } + ], + "id": "https://ror.org/01c27hj86", + "links": [ + { + "type": "website", + "value": "http://www.ulisboa.pt/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Lisbon" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + }, + "geonames_id": 2267057 + } + ], + "names": [ + { + "lang": "pt", + "types": [ + "label" + ], + "value": "Universidade de Lisboa" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Lisbon" + } + ], + "relationships": [ + { + "label": "Centro Interuniversitário de História das Ciências e da Tecnologia", + "type": "child", + "id": "https://ror.org/03yhnhz23" + }, + { + "label": "MARE - Centro de Ciências do Mar e do Ambiente", + "type": "child", + "id": "https://ror.org/03cvzf910" + }, + { + "label": "Instituto Dom Luiz", + "type": "child", + "id": "https://ror.org/046ggxs83" + }, + { + "label": "Instituto de Tecnologias Interativas", + "type": "child", + "id": "https://ror.org/011ewyt41" + }, + { + "label": "Instituto Superior Técnico", + "type": "child", + "id": "https://ror.org/03db2by73" + }, + { + "label": "Hospital Garcia de Orta", + "type": "related", + "id": "https://ror.org/04jq4p608" + }, + { + "label": "Hospital Pulido Valente", + "type": "related", + "id": "https://ror.org/02cg59151" + }, + { + "label": "Hospital de Dona Estefânia", + "type": "related", + "id": "https://ror.org/01jhsfg10" + }, + { + "label": "Hospital de Santa Maria", + "type": "related", + "id": "https://ror.org/05bz1tw26" + }, + { + "label": "Instituto de Ciências Sociais", + "type": "child", + "id": "https://ror.org/020rfvw83" + }, + { + "label": "Instituto de Medicina Molecular João Lobo Antunes", + "type": "child", + "id": "https://ror.org/019g8w217" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/01c3rrh15.json b/v1.43/01c3rrh15.json new file mode 100644 index 000000000..9cd08eac0 --- /dev/null +++ b/v1.43/01c3rrh15.json @@ -0,0 +1,113 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "100014806" + ], + "preferred": "100014806", + "type": "fundref" + }, + { + "all": [ + "grid.5942.a" + ], + "preferred": "grid.5942.a", + "type": "grid" + }, + { + "all": [ + "0000 0004 1759 508X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q3717376", + "Q47517188" + ], + "preferred": "Q3717376", + "type": "wikidata" + } + ], + "id": "https://ror.org/01c3rrh15", + "links": [ + { + "type": "website", + "value": "https://www.elettra.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ELETTRA" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.64953, + "lng": 13.77678, + "name": "Trieste" + }, + "geonames_id": 3165185 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Elettra" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Elettra Sincrotrone Trieste" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Elettra-Sincrotrone Trieste S.C.p.A." + } + ], + "relationships": [ + { + "label": "Consorzio per l'AREA di Ricerca Scientifica e Tecnologica di Trieste", + "type": "parent", + "id": "https://ror.org/01dt7qh15" + }, + { + "label": "Euro-BioImaging ERIC", + "type": "related", + "id": "https://ror.org/05d78xc36" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/01cdrde68.json b/v1.43/01cdrde68.json new file mode 100644 index 000000000..d089b4d27 --- /dev/null +++ b/v1.43/01cdrde68.json @@ -0,0 +1,179 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1973, + "external_ids": [ + { + "all": [ + "0000 0001 1931 1704" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100012119" + ], + "preferred": "100012119", + "type": "fundref" + }, + { + "all": [ + "Q492442" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.410557.2" + ], + "preferred": "grid.410557.2", + "type": "grid" + } + ], + "id": "https://ror.org/01cdrde68", + "links": [ + { + "type": "website", + "value": "http://unu.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/United_Nations_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "JP", + "country_name": "Japan", + "lat": 35.6895, + "lng": 139.69171, + "name": "Tokyo" + }, + "geonames_id": 1850147 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "United Nations University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Kokusairengōdaigaku" + }, + { + "lang": "ja", + "types": [ + "label" + ], + "value": "国際連合大学" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNU" + } + ], + "relationships": [ + { + "label": "United Nations", + "type": "related", + "id": "https://ror.org/006kxhp52" + }, + { + "label": "Global Environmental Outreach Centre", + "type": "child", + "id": "https://ror.org/00d8hgw93" + }, + { + "label": "Institute for Environment and Human Security", + "type": "child", + "id": "https://ror.org/05egrn753" + }, + { + "label": "Institute for Integrated Management of Material Fluxes and of Resources", + "type": "child", + "id": "https://ror.org/03xp99m49" + }, + { + "label": "Institute for Natural Resources in Africa", + "type": "child", + "id": "https://ror.org/05t20pg33" + }, + { + "label": "United Nations University", + "type": "child", + "id": "https://ror.org/040aqvh16" + }, + { + "label": "United Nations University", + "type": "child", + "id": "https://ror.org/04kkx4y96" + }, + { + "label": "United Nations University Institute for Sustainability and Peace", + "type": "child", + "id": "https://ror.org/00be0m967" + }, + { + "label": "United Nations University Institute for Water, Environment, and Health", + "type": "child", + "id": "https://ror.org/03d8jqg89" + }, + { + "label": "United Nations University Institute for the Advanced Study of Sustainability", + "type": "child", + "id": "https://ror.org/03vmsb260" + }, + { + "label": "United Nations University Institute on Comparative Regional Integration Studies", + "type": "child", + "id": "https://ror.org/02fa0f492" + }, + { + "label": "United Nations University Institute on Computing and Society", + "type": "child", + "id": "https://ror.org/02y0c7m95" + }, + { + "label": "United Nations University – Maastricht Economic and Social Research Institute on Innovation and Technology", + "type": "child", + "id": "https://ror.org/053zwxr79" + }, + { + "label": "United Nations University-International Institute for Global Health", + "type": "child", + "id": "https://ror.org/01y130z09" + }, + { + "label": "United Nations University World Institute for Development Economics Research", + "type": "child", + "id": "https://ror.org/015y1mx47" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/01cjash87.json b/v1.43/01cjash87.json new file mode 100644 index 000000000..b9763b152 --- /dev/null +++ b/v1.43/01cjash87.json @@ -0,0 +1,138 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-11-15", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2005, + "external_ids": [ + { + "all": [ + "501100004948", + "501100007263" + ], + "preferred": "501100004948", + "type": "fundref" + }, + { + "all": [ + "grid.418042.b" + ], + "preferred": "grid.418042.b", + "type": "grid" + }, + { + "all": [ + "0000 0004 1758 8699" + ], + "preferred": "0000 0004 1758 8699", + "type": "isni" + }, + { + "all": [ + "Q528842" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01cjash87", + "links": [ + { + "type": "website", + "value": "http://www.astellas.com/en/index.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Astellas_Pharma" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "JP", + "country_name": "Japan", + "lat": 35.6895, + "lng": 139.69171, + "name": "Tokyo" + }, + "geonames_id": 1850147 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Astellas Pharma (Japan)" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Asuterasu Seiyaku Kabushiki-gaisha" + }, + { + "lang": "ja", + "types": [ + "label" + ], + "value": "アステラス製薬株式会社" + } + ], + "relationships": [ + { + "label": "Astellas Pharma (China)", + "type": "child", + "id": "https://ror.org/008h8bh21" + }, + { + "label": "Astellas Pharma (Germany)", + "type": "child", + "id": "https://ror.org/04bdk6464" + }, + { + "label": "Astellas Pharma (India)", + "type": "child", + "id": "https://ror.org/013eh1m30" + }, + { + "label": "Astellas Pharma (Netherlands)", + "type": "child", + "id": "https://ror.org/04kyfd050" + }, + { + "label": "Astellas Pharma (South Korea)", + "type": "child", + "id": "https://ror.org/04pchp455" + }, + { + "label": "Astellas Pharma (United Kingdom)", + "type": "child", + "id": "https://ror.org/018788w33" + }, + { + "label": "Astellas Pharma (United States)", + "type": "child", + "id": "https://ror.org/05pw69n24" + }, + { + "label": "Astellas Pharma (Canada)", + "type": "child", + "id": "https://ror.org/041repn61" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/01cjqyj20.json b/v1.43/01cjqyj20.json new file mode 100644 index 000000000..250ead793 --- /dev/null +++ b/v1.43/01cjqyj20.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 1645875, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -3.4703, + "lng": 102.5207, + "name": "Curup" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109912911" + ], + "preferred": "Q109912911" + } + ], + "id": "https://ror.org/01cjqyj20", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iaincurup.ac.id" + } + ], + "names": [ + { + "value": "Institut Agama Islam Negeri Curup", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IAIN Curup", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Curup State Islamic Religious Institute", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01cmdgj85.json b/v1.43/01cmdgj85.json new file mode 100644 index 000000000..ef49ec53d --- /dev/null +++ b/v1.43/01cmdgj85.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51780480" + ], + "preferred": "Q51780480" + } + ], + "id": "https://ror.org/01cmdgj85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www6.versailles-grignon.inrae.fr/sadapt" + } + ], + "names": [ + { + "value": "SADAPT Science Action Développement - Activités Produits Territoires", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Sciences pour l'Action et le Développement : Activités, Produits, Territoires", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SAD-APT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01df3an44.json b/v1.43/01df3an44.json new file mode 100644 index 000000000..30edaf1f1 --- /dev/null +++ b/v1.43/01df3an44.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 2034937, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 41.79222, + "lng": 123.43278, + "name": "Shenyang" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.495835.6" + ], + "preferred": "grid.495835.6" + }, + { + "type": "wikidata", + "all": [ + "Q11138978" + ], + "preferred": "Q11138978" + } + ], + "id": "https://ror.org/01df3an44", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.smtcl.com/" + } + ], + "names": [ + { + "value": "Genertec Shenyang Machine Tool Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Genertec Shenyang Machine Tool Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Shenyang Machine Tool Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Genertec Shenyang Machine Tool Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Shenyang Machine Tool Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "沈阳机床股份有限公司保", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "通用技术沈阳机床股份有限公司官网", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "SMTCL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01dpyn972.json b/v1.43/01dpyn972.json new file mode 100644 index 000000000..6af8aac60 --- /dev/null +++ b/v1.43/01dpyn972.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2003, + "external_ids": [ + { + "all": [ + "grid.419922.5" + ], + "preferred": "grid.419922.5", + "type": "grid" + } + ], + "id": "https://ror.org/01dpyn972", + "links": [ + { + "type": "website", + "value": "http://ior.iosi.ch/site/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.19278, + "lng": 9.01703, + "name": "Bellinzona" + }, + "geonames_id": 2661567 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IOR" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute of Oncology Research" + } + ], + "relationships": [ + { + "label": "Università della Svizzera italiana", + "type": "parent", + "id": "https://ror.org/03c4atk17" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/01ed4t417.json b/v1.43/01ed4t417.json new file mode 100644 index 000000000..c0c031802 --- /dev/null +++ b/v1.43/01ed4t417.json @@ -0,0 +1,111 @@ +{ + "locations": [ + { + "geonames_id": 2968705, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.7939, + "lng": 2.35992, + "name": "Villejuif" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0638 6872" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30262232" + ], + "preferred": "Q30262232" + }, + { + "type": "grid", + "all": [ + "grid.463845.8" + ], + "preferred": "grid.463845.8" + } + ], + "id": "https://ror.org/01ed4t417", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cesp.inserm.fr" + } + ], + "names": [ + { + "value": "Centre de recherche en Epidémiologie et Santé des Populations", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre for Epidemiology and Population Health", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CESP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "parent", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "Hôpital Paul-Brousse", + "type": "parent", + "id": "https://ror.org/05n7yzd13" + }, + { + "label": "Assistance Publique – Hôpitaux de Paris", + "type": "parent", + "id": "https://ror.org/00pg5jh14" + }, + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01eef7f80.json b/v1.43/01eef7f80.json new file mode 100644 index 000000000..1064a857c --- /dev/null +++ b/v1.43/01eef7f80.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2656915, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.48876, + "lng": -2.0989, + "name": "Ashton-under-Lyne" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7473 3848" + ], + "preferred": "0000 0004 7473 3848" + } + ], + "id": "https://ror.org/01eef7f80", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.scapa.com" + } + ], + "names": [ + { + "value": "Scapa Group (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Scapa Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Scapa Group Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Scapa Group Limited", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01et6g203.json b/v1.43/01et6g203.json new file mode 100644 index 000000000..355f61a70 --- /dev/null +++ b/v1.43/01et6g203.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 3002650, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.78889, + "lng": 2.27078, + "name": "Le Plessis-Robinson" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.462435.2" + ], + "preferred": "grid.462435.2" + } + ], + "id": "https://ror.org/01et6g203", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.u999.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Pathophysiology and Novel Therapies", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Physiopathologie et Innovation Thérapeutique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Pulmonary Hypertension: Pathophysiology and Novel Therapies", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "PAH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01f7a6m90.json b/v1.43/01f7a6m90.json new file mode 100644 index 000000000..275918ed3 --- /dev/null +++ b/v1.43/01f7a6m90.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3118532, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.60003, + "lng": -5.57032, + "name": "León" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0639 4661" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30284835" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.425226.5" + ], + "preferred": "grid.425226.5" + } + ], + "id": "https://ror.org/01f7a6m90", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.itacyl.es" + } + ], + "names": [ + { + "value": "Instituto Tecnológico Agrario de Castilla y León", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ITACyL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01f7saf07.json b/v1.43/01f7saf07.json new file mode 100644 index 000000000..325924b0d --- /dev/null +++ b/v1.43/01f7saf07.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 5037649, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.97997, + "lng": -93.26384, + "name": "Minneapolis" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1260 4722" + ], + "preferred": "0000 0005 1260 4722" + }, + { + "type": "fundref", + "all": [ + "100016303" + ], + "preferred": "100016303" + } + ], + "id": "https://ror.org/01f7saf07", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://foundation.medtronic.com" + } + ], + "names": [ + { + "value": "Medtronic Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Medtronic Communities Foundation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Medtronic (United States)", + "type": "parent", + "id": "https://ror.org/00grd1h17" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01f80g185.json b/v1.43/01f80g185.json new file mode 100644 index 000000000..c711a738d --- /dev/null +++ b/v1.43/01f80g185.json @@ -0,0 +1,156 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-08-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1948, + "external_ids": [ + { + "all": [ + "100004423" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.3575.4" + ], + "preferred": "grid.3575.4", + "type": "grid" + }, + { + "all": [ + "0000 0001 2163 3745" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7817" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01f80g185", + "links": [ + { + "type": "website", + "value": "http://www.who.int/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/World_Health_Organization" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.20222, + "lng": 6.14569, + "name": "Geneva" + }, + "geonames_id": 2660646 + } + ], + "names": [ + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Organisation Mondiale de la Santé" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Organizzazione Mondiale della Sanità" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "WHO" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Weltgesundheitsorganisation" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "World Health Organization" + } + ], + "relationships": [ + { + "label": "Alliance for Health Policy and Systems Research", + "type": "child", + "id": "https://ror.org/021jq8741" + }, + { + "label": "World Health Organization Regional Office for Africa", + "type": "child", + "id": "https://ror.org/04rtx9382" + }, + { + "label": "World Health Organization Regional Office for Europe", + "type": "child", + "id": "https://ror.org/01rz37c55" + }, + { + "label": "World Health Organization Regional Office for South-East Asia", + "type": "child", + "id": "https://ror.org/02wae9s43" + }, + { + "label": "World Health Organization Regional Office for the Americas", + "type": "child", + "id": "https://ror.org/008kev776" + }, + { + "label": "World Health Organization Regional Office for the Eastern Mediterranean", + "type": "child", + "id": "https://ror.org/01h4ywk72" + }, + { + "label": "World Health Organization Regional Office for the Western Pacific", + "type": "child", + "id": "https://ror.org/04nfvby78" + }, + { + "label": "Unitaid", + "type": "related", + "id": "https://ror.org/05t99je22" + }, + { + "label": "Special Programme for Research and Training in Tropical Diseases", + "type": "child", + "id": "https://ror.org/046j7pv84" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/01fftxe08.json b/v1.43/01fftxe08.json new file mode 100644 index 000000000..c4d7dcb79 --- /dev/null +++ b/v1.43/01fftxe08.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7474 7238" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30261453" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462411.4" + ], + "preferred": "grid.462411.4" + } + ], + "id": "https://ror.org/01fftxe08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.i2bc.paris-saclay.fr" + } + ], + "names": [ + { + "value": "Institute of Integrative Biology of the Cell", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "I2BC Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut de Biologie Intégrative de la Cellule", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "I2BC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Atomic Energy and Alternative Energies Commission", + "type": "parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01fgmnw14.json b/v1.43/01fgmnw14.json new file mode 100644 index 000000000..abc1ddc00 --- /dev/null +++ b/v1.43/01fgmnw14.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2867445, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 47.68085, + "lng": 11.20125, + "name": "Murnau am Staffelsee" + } + } + ], + "established": 1953, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9109 6845" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.469896.c" + ], + "preferred": "grid.469896.c" + } + ], + "id": "https://ror.org/01fgmnw14", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.bgu-murnau.de/en/" + } + ], + "names": [ + { + "value": "Berufsgenossenschaftliche Unfallklinik Murnau", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BG Hospital Murnau", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Trauma Center Murnau", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Trauma Centre Murnau", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BGU Murnau", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Technical University of Munich", + "type": "related", + "id": "https://ror.org/02kkvpp62" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01fq24p11.json b/v1.43/01fq24p11.json new file mode 100644 index 000000000..546d03fc2 --- /dev/null +++ b/v1.43/01fq24p11.json @@ -0,0 +1,110 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1961, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 7342" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q15089062" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.509256.d" + ], + "preferred": "grid.509256.d" + } + ], + "id": "https://ror.org/01fq24p11", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.elisava.net/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ELISAVA" + } + ], + "names": [ + { + "value": "Elisava Barcelona School of Design and Engineering", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Escuela Superior de Diseño e Ingeniería de Barcelona", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Escuela Universitaria de Diseño e Ingeniería de Barcelona", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Escola Universitària de Disseny i Enginyeria de Barcelona", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Elisava, Facultat de Disseny i Enginyeria de Barcelona", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "ELISAVA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01g0jwx42.json b/v1.43/01g0jwx42.json new file mode 100644 index 000000000..d46116b86 --- /dev/null +++ b/v1.43/01g0jwx42.json @@ -0,0 +1,97 @@ +{ + "locations": [ + { + "geonames_id": 3456166, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -22.28194, + "lng": -42.53111, + "name": "Nova Friburgo" + } + } + ], + "established": 1989, + "external_ids": [], + "id": "https://ror.org/01g0jwx42", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.iprj.uerj.br" + } + ], + "names": [ + { + "value": "Instituto Politécnico do Rio de Janeiro", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto Politécnico da Universidade do Estado do Rio de Janeiro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UERJ - Instituto Politécnico", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Polytechnic Institute of Rio de Janeiro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Polytechnic Institute of the State University of Rio de Janeiro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IPRJ", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "UERJ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Rio de Janeiro State University", + "type": "parent", + "id": "https://ror.org/0198v2949" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01g94x362.json b/v1.43/01g94x362.json new file mode 100644 index 000000000..79ddd42d7 --- /dev/null +++ b/v1.43/01g94x362.json @@ -0,0 +1,105 @@ +{ + "locations": [ + { + "geonames_id": 2800866, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0550 8872" + ], + "preferred": "0000 0001 0550 8872" + }, + { + "type": "wikidata", + "all": [ + "Q108367206" + ], + "preferred": "Q108367206" + }, + { + "type": "fundref", + "all": [ + "501100012285" + ], + "preferred": "501100012285" + } + ], + "id": "https://ror.org/01g94x362", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ewi-vlaanderen.be" + } + ], + "names": [ + { + "value": "Departement Economie, Wetenschap & Innovatie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Departement Economie, Wetenschap en Innovatie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Department of Economy, Sciency and Innovation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Department of Economy, Sciency & Innovation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "DEWI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Flemish Government", + "type": "parent", + "id": "https://ror.org/04qxsrb28" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01gghaa40.json b/v1.43/01gghaa40.json new file mode 100644 index 000000000..a32c40ff9 --- /dev/null +++ b/v1.43/01gghaa40.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 965X" + ], + "preferred": "0000 0004 9225 965X" + }, + { + "type": "fundref", + "all": [ + "501100015504" + ], + "preferred": "501100015504" + } + ], + "id": "https://ror.org/01gghaa40", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://sidb.org.uk" + } + ], + "names": [ + { + "value": "Simons Initiative for the Developing Brain", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SIDB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01gm5f004.json b/v1.43/01gm5f004.json new file mode 100644 index 000000000..193419547 --- /dev/null +++ b/v1.43/01gm5f004.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 3104324, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.65606, + "lng": -0.87734, + "name": "Zaragoza" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1763 291X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100005053" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.429738.3" + ], + "preferred": "grid.429738.3" + } + ], + "id": "https://ror.org/01gm5f004", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciber-bbn.es" + } + ], + "names": [ + { + "value": "Biomedical Research Networking Center in Bioengineering, Biomaterials and Nanomedicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centro de Investigación Biomédica en Red en Bioingeniería, Biomateriales y Nanomedicina", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "CIBER-BBN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01h6dtw92.json b/v1.43/01h6dtw92.json new file mode 100644 index 000000000..00a9811f5 --- /dev/null +++ b/v1.43/01h6dtw92.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5883102, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 52.28333, + "lng": -117.469, + "name": "Alberta" + } + } + ], + "established": 1965, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0262 6338" + ], + "preferred": "0000 0005 0262 6338" + }, + { + "type": "wikidata", + "all": [ + "Q28233223" + ], + "preferred": "Q28233223" + }, + { + "type": "fundref", + "all": [ + "100011787" + ], + "preferred": "100011787" + } + ], + "id": "https://ror.org/01h6dtw92", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.tav.ca" + } + ], + "names": [ + { + "value": "TAV College", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "TAV", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01h6pze39.json b/v1.43/01h6pze39.json new file mode 100644 index 000000000..c51f396d8 --- /dev/null +++ b/v1.43/01h6pze39.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1890, + "external_ids": [ + { + "all": [ + "grid.412770.7" + ], + "preferred": "grid.412770.7", + "type": "grid" + }, + { + "all": [ + "0000 0004 0401 9796" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1276602" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01h6pze39", + "links": [ + { + "type": "website", + "value": "http://www.sf.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Saint_Francis_(Indiana)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.1306, + "lng": -85.12886, + "name": "Fort Wayne" + }, + "geonames_id": 4920423 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "USF" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de Saint Francis" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Saint Francis" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/01hn2pk88.json b/v1.43/01hn2pk88.json new file mode 100644 index 000000000..4184a0020 --- /dev/null +++ b/v1.43/01hn2pk88.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 1260445, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 22.40418, + "lng": 87.71746, + "name": "Pānskura" + } + } + ], + "established": 1960, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 0073" + ], + "preferred": "0000 0004 9225 0073" + }, + { + "type": "wikidata", + "all": [ + "Q7131589" + ], + "preferred": "Q7131589" + } + ], + "id": "https://ror.org/01hn2pk88", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.panskurabanamalicollege.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Panskura_Banamali_College" + } + ], + "names": [ + { + "value": "Panskura Banamali College", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Panskura Banamali Autonomous College", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PBC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Vidyasagar University", + "type": "related", + "id": "https://ror.org/027jsza11" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01hx2yw16.json b/v1.43/01hx2yw16.json new file mode 100644 index 000000000..f92aee1b2 --- /dev/null +++ b/v1.43/01hx2yw16.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 146268, + "geonames_details": { + "country_code": "CY", + "country_name": "Cyprus", + "lat": 35.17531, + "lng": 33.3642, + "name": "Nicosia" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/01hx2yw16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://medicover-genetics.com" + } + ], + "names": [ + { + "value": "Medicover Genetics (Cyprus)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NIPD Genetics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIPD Genetics Public Company Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Medicover Genetics", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01j98sy69.json b/v1.43/01j98sy69.json new file mode 100644 index 000000000..4f6226c6f --- /dev/null +++ b/v1.43/01j98sy69.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1957, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432414.4" + ], + "preferred": "grid.432414.4" + } + ], + "id": "https://ror.org/01j98sy69", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.anaip.es" + } + ], + "names": [ + { + "value": "Asociación Española de Industriales de Plásticos", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ANAIP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01js2sh04.json b/v1.43/01js2sh04.json new file mode 100644 index 000000000..d4edc089f --- /dev/null +++ b/v1.43/01js2sh04.json @@ -0,0 +1,121 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1959, + "external_ids": [ + { + "all": [ + "501100001647" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.7683.a" + ], + "preferred": "grid.7683.a", + "type": "grid" + }, + { + "all": [ + "0000 0004 0492 0453" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q311801", + "Q39901428" + ], + "preferred": "Q311801", + "type": "wikidata" + } + ], + "id": "https://ror.org/01js2sh04", + "links": [ + { + "type": "website", + "value": "http://www.desy.de/index_eng.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/DESY" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 53.55073, + "lng": 9.99302, + "name": "Hamburg" + }, + "geonames_id": 2911298 + } + ], + "names": [ + { + "lang": "en", + "types": [ + "label" + ], + "value": "DESY" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Deutsches Elektronen-Synchrotron DESY" + } + ], + "relationships": [ + { + "label": "Center for Free-Electron Laser Science", + "type": "child", + "id": "https://ror.org/04fme8709" + }, + { + "label": "John von Neumann Institute for Computing", + "type": "child", + "id": "https://ror.org/02zmk8084" + }, + { + "label": "Centre for Structural Systems Biology", + "type": "child", + "id": "https://ror.org/04fhwda97" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "Helmholtz Association of German Research Centres", + "type": "parent", + "id": "https://ror.org/0281dp749" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/01jty7g66.json b/v1.43/01jty7g66.json new file mode 100644 index 000000000..216c5a6d5 --- /dev/null +++ b/v1.43/01jty7g66.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2879139, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.33962, + "lng": 12.37129, + "name": "Leipzig" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7470 3956" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100020056" + ], + "preferred": "501100020056" + }, + { + "type": "wikidata", + "all": [ + "Q1206134" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.421064.5" + ], + "preferred": "grid.421064.5" + } + ], + "id": "https://ror.org/01jty7g66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.idiv.de" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/German_Centre_for_Integrative_Biodiversity_Research_(iDiv)" + } + ], + "names": [ + { + "value": "German Centre for Integrative Biodiversity Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "German Center for Integrative Biodiversity Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Deutsches Zentrum für integrative Biodiversitätsforschung", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "iDiv", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01kdbb633.json b/v1.43/01kdbb633.json new file mode 100644 index 000000000..bb670ff75 --- /dev/null +++ b/v1.43/01kdbb633.json @@ -0,0 +1,110 @@ +{ + "locations": [ + { + "geonames_id": 2719111, + "geonames_details": { + "country_code": "SE", + "country_name": "Sweden", + "lat": 59.34, + "lng": 17.94, + "name": "Bromma" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0618 2159" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3652398" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462882.2" + ], + "preferred": "grid.462882.2" + } + ], + "id": "https://ror.org/01kdbb633", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ehs.se" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Stockholm_School_of_Theology" + } + ], + "names": [ + { + "value": "University College Stockholm", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stockholm School of Theology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Teologiska högskolan Stockholm", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Enskilda Högskolan Stockholm", + "types": [ + "label" + ], + "lang": "sv" + }, + { + "value": "THS", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "EHS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01kde4v59.json b/v1.43/01kde4v59.json new file mode 100644 index 000000000..dd917963f --- /dev/null +++ b/v1.43/01kde4v59.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2792482, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.87959, + "lng": 4.70093, + "name": "Leuven" + } + } + ], + "established": 2018, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 9756" + ], + "preferred": "0000 0004 9225 9756" + }, + { + "type": "wikidata", + "all": [ + "Q112085345" + ], + "preferred": "Q112085345" + }, + { + "type": "fundref", + "all": [ + "100016326" + ], + "preferred": "100016326" + } + ], + "id": "https://ror.org/01kde4v59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.eitfood.eu" + } + ], + "names": [ + { + "value": "EIT Food", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "EIT Food iVZW", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "European Institute of Innovation & Technology Food", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Food4Future", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "European Institute of Innovation and Technology", + "type": "parent", + "id": "https://ror.org/036dxts37" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01kj2bm70.json b/v1.43/01kj2bm70.json new file mode 100644 index 000000000..26235f7d5 --- /dev/null +++ b/v1.43/01kj2bm70.json @@ -0,0 +1,151 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-06-22", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1834, + "external_ids": [ + { + "all": [ + "501100008406", + "501100000774" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.1006.7" + ], + "preferred": "grid.1006.7", + "type": "grid" + }, + { + "all": [ + "0000 0001 0462 7212" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q837164" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01kj2bm70", + "links": [ + { + "type": "website", + "value": "http://www.ncl.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Newcastle_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 54.97328, + "lng": -1.61396, + "name": "Newcastle upon Tyne" + }, + "geonames_id": 2641673 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Newcastle University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Newcastle upon Tyne" + } + ], + "relationships": [ + { + "label": "Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics", + "type": "child", + "id": "https://ror.org/047d2d387" + }, + { + "label": "Wellcome Centre for Mitochondrial Research", + "type": "child", + "id": "https://ror.org/03myjph80" + }, + { + "label": "National Gear Metrology Laboratory", + "type": "child", + "id": "https://ror.org/05akpmt68" + }, + { + "label": "Freeman Hospital", + "type": "related", + "id": "https://ror.org/00cdwy346" + }, + { + "label": "NIHR Newcastle Biomedical Research Centre", + "type": "related", + "id": "https://ror.org/044m9mw93" + }, + { + "label": "Newcastle Hospitals - Campus for Ageing and Vitality", + "type": "related", + "id": "https://ror.org/051qy7v07" + }, + { + "label": "Newcastle University Medicine Malaysia", + "type": "related", + "id": "https://ror.org/009e9eq52" + }, + { + "label": "Newcastle University Singapore", + "type": "related", + "id": "https://ror.org/00mbfhq81" + }, + { + "label": "Queen Elizabeth Hospital", + "type": "related", + "id": "https://ror.org/015dyrs73" + }, + { + "label": "Royal Victoria Infirmary", + "type": "related", + "id": "https://ror.org/01p19k166" + }, + { + "label": "University Hospital of North Durham", + "type": "related", + "id": "https://ror.org/04qgcgz06" + }, + { + "label": "National Centre for Energy Systems Integration", + "type": "child", + "id": "https://ror.org/02r4fqa76" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/01kk86953.json b/v1.43/01kk86953.json new file mode 100644 index 000000000..dcc130797 --- /dev/null +++ b/v1.43/01kk86953.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2158177, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -37.814, + "lng": 144.96332, + "name": "Melbourne" + } + } + ], + "established": 2020, + "external_ids": [], + "id": "https://ror.org/01kk86953", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.climate-resource.com" + } + ], + "names": [ + { + "value": "Climate Resource (Australia)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Climate Resource", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Climate Resource Pty Ltd", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Climate Resource Ltd", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01kn3j525.json b/v1.43/01kn3j525.json new file mode 100644 index 000000000..804c803bd --- /dev/null +++ b/v1.43/01kn3j525.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 4143861, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.68372, + "lng": -75.74966, + "name": "Newark" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7863 322X" + ], + "preferred": "0000 0004 7863 322X" + }, + { + "type": "fundref", + "all": [ + "100013429" + ], + "preferred": "100013429" + } + ], + "id": "https://ror.org/01kn3j525", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://de-inbre.org" + } + ], + "names": [ + { + "value": "Delaware INBRE", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Delaware IDeA Network of Biomedical Research Excellence", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01mhxe537.json b/v1.43/01mhxe537.json new file mode 100644 index 000000000..7735154fe --- /dev/null +++ b/v1.43/01mhxe537.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 6359078, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.46712, + "lng": -2.44541, + "name": "Logroño" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30256933" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434800.b" + ], + "preferred": "grid.434800.b" + } + ], + "id": "https://ror.org/01mhxe537", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.geolica.com/" + } + ], + "names": [ + { + "value": "Geolica Innovations (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01n6r0e97.json b/v1.43/01n6r0e97.json new file mode 100644 index 000000000..8afd5baff --- /dev/null +++ b/v1.43/01n6r0e97.json @@ -0,0 +1,594 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1990, + "external_ids": [ + { + "all": [ + "0000 0001 2224 3060" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100001664" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q680090" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.413453.4" + ], + "preferred": "grid.413453.4", + "type": "grid" + } + ], + "id": "https://ror.org/01n6r0e97", + "links": [ + { + "type": "website", + "value": "http://www.leibniz-gemeinschaft.de/en/home/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Leibniz_Association" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + }, + "geonames_id": 2950159 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Leibniz Association" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Leibniz-Gemeinschaft" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LG" + } + ], + "relationships": [ + { + "label": "ARL – Academy for Territorial Development in the Leibniz Association", + "type": "child", + "id": "https://ror.org/010b6ag76" + }, + { + "label": "Bernhard Nocht Institute for Tropical Medicine", + "type": "child", + "id": "https://ror.org/01evwfd48" + }, + { + "label": "Leibniz-Centre for Contemporary History", + "type": "child", + "id": "https://ror.org/005xmsp39" + }, + { + "label": "Centre for European Economic Research", + "type": "child", + "id": "https://ror.org/02qnsw591" + }, + { + "label": "DWI – Leibniz Institute for Interactive Materials", + "type": "child", + "id": "https://ror.org/0186h8060" + }, + { + "label": "Deutsches Museum", + "type": "child", + "id": "https://ror.org/00a7n7g54" + }, + { + "label": "Deutsches Schiffahrtsmuseum", + "type": "child", + "id": "https://ror.org/02hdxnq28" + }, + { + "label": "FIZ Karlsruhe – Leibniz Institute for Information Infrastructure", + "type": "child", + "id": "https://ror.org/0387prb75" + }, + { + "label": "Ferdinand-Braun-Institut", + "type": "child", + "id": "https://ror.org/02be22443" + }, + { + "label": "Leibniz Institute for Educational Media | Georg Eckert Institute", + "type": "child", + "id": "https://ror.org/01hnv8x68" + }, + { + "label": "Deutsches Diabetes-Zentrum e.V.", + "type": "child", + "id": "https://ror.org/04ews3245" + }, + { + "label": "German Institute for Adult Education", + "type": "child", + "id": "https://ror.org/04565hy55" + }, + { + "label": "German Institute for Economic Research", + "type": "child", + "id": "https://ror.org/0050vmv35" + }, + { + "label": "German Institute for Global and Area Studies", + "type": "child", + "id": "https://ror.org/00681ts17" + }, + { + "label": "DIPF | Leibniz Institute for Research and Information in Education", + "type": "child", + "id": "https://ror.org/0327sr118" + }, + { + "label": "German Institute of Human Nutrition", + "type": "child", + "id": "https://ror.org/05xdczy51" + }, + { + "label": "Deutsches Bergbau-Museum Bochum", + "type": "child", + "id": "https://ror.org/03k7cjr94" + }, + { + "label": "ZBW – Leibniz-Informationszentrum Wirtschaft", + "type": "child", + "id": "https://ror.org/03a96gc12" + }, + { + "label": "Technische Informationsbibliothek (TIB)", + "type": "child", + "id": "https://ror.org/04aj4c181" + }, + { + "label": "German Primate Center", + "type": "child", + "id": "https://ror.org/02f99v835" + }, + { + "label": "German Rheumatism Research Centre", + "type": "child", + "id": "https://ror.org/00shv0x82" + }, + { + "label": "Germanisches Nationalmuseum", + "type": "child", + "id": "https://ror.org/02fv99722" + }, + { + "label": "Halle Institute for Economic Research", + "type": "child", + "id": "https://ror.org/03gjpvv92" + }, + { + "label": "Hans Knöll Institute", + "type": "child", + "id": "https://ror.org/055s37c97" + }, + { + "label": "Hans-Bredow-Institute", + "type": "child", + "id": "https://ror.org/021eps607" + }, + { + "label": "Leibniz Institute of Virology (LIV)", + "type": "child", + "id": "https://ror.org/02r2q1d96" + }, + { + "label": "Herder Institute", + "type": "child", + "id": "https://ror.org/00sngv739" + }, + { + "label": "Ifo Institute for Economic Research", + "type": "child", + "id": "https://ror.org/045495t75" + }, + { + "label": "Innovations for High Performance Microelectronics", + "type": "child", + "id": "https://ror.org/0489gab80" + }, + { + "label": "Institut für Zeitgeschichte München–Berlin", + "type": "child", + "id": "https://ror.org/008pp7a77" + }, + { + "label": "Leibniz Institute of Plant Genetics and Crop Plant Research", + "type": "child", + "id": "https://ror.org/02skbsp27" + }, + { + "label": "Kiel Institute for the World Economy", + "type": "child", + "id": "https://ror.org/032yym934" + }, + { + "label": "Leibniz Centre for Agricultural Landscape Research", + "type": "child", + "id": "https://ror.org/01ygyzs83" + }, + { + "label": "Leibniz Centre for Tropical Marine Research", + "type": "child", + "id": "https://ror.org/019w00969" + }, + { + "label": "Leibniz Institute DSMZ – German Collection of Microorganisms and Cell Cultures", + "type": "child", + "id": "https://ror.org/02tyer376" + }, + { + "label": "Leibniz Institute for Agricultural Engineering and Bioeconomy", + "type": "child", + "id": "https://ror.org/04d62a771" + }, + { + "label": "Leibniz Institute for Analytical Sciences - ISAS", + "type": "child", + "id": "https://ror.org/02jhqqg57" + }, + { + "label": "Leibniz Institute for Applied Geophysics", + "type": "child", + "id": "https://ror.org/05txczf44" + }, + { + "label": "Leibniz Institute for Astrophysics Potsdam", + "type": "child", + "id": "https://ror.org/03mrbr458" + }, + { + "label": "Leibniz Institute for Baltic Sea Research", + "type": "child", + "id": "https://ror.org/03xh9nq73" + }, + { + "label": "Leibniz Institute for Catalysis", + "type": "child", + "id": "https://ror.org/029hg0311" + }, + { + "label": "Leibniz Institute for Crystal Growth", + "type": "child", + "id": "https://ror.org/037p86664" + }, + { + "label": "Leibniz Institute for East and Southeast European Studies", + "type": "child", + "id": "https://ror.org/039s64n79" + }, + { + "label": "Leibniz Institute for Educational Trajectories", + "type": "child", + "id": "https://ror.org/04c14rw28" + }, + { + "label": "Leibniz Institute for Financial Research SAFE", + "type": "child", + "id": "https://ror.org/05wxywg93" + }, + { + "label": "Leibniz Institute for Jewish History and Culture – Simon Dubnow", + "type": "child", + "id": "https://ror.org/03j1wg370" + }, + { + "label": "Leibniz-Institut für Werkstofforientierte Technologien - IWT", + "type": "child", + "id": "https://ror.org/01xc6bj88" + }, + { + "label": "Leibniz Institute for Neurobiology", + "type": "child", + "id": "https://ror.org/01zwmgk08" + }, + { + "label": "Leibniz Institute for Plasma Science and Technology", + "type": "child", + "id": "https://ror.org/004hd5y14" + }, + { + "label": "Leibniz Institute for Prevention Research and Epidemiology - BIPS", + "type": "child", + "id": "https://ror.org/02c22vc57" + }, + { + "label": "Leibniz Institute for Psychology", + "type": "child", + "id": "https://ror.org/0165gz615" + }, + { + "label": "Leibniz Institute for Regional Geography", + "type": "child", + "id": "https://ror.org/02wt6e634" + }, + { + "label": "Leibniz Institute for Research on Society and Space", + "type": "child", + "id": "https://ror.org/01rkqb281" + }, + { + "label": "Leibniz Institute for Resilience Research", + "type": "child", + "id": "https://ror.org/00q5t0010" + }, + { + "label": "Leibniz Institute for Science and Mathematics Education", + "type": "child", + "id": "https://ror.org/008n8dd57" + }, + { + "label": "Leibniz Institute for Solid State and Materials Research", + "type": "child", + "id": "https://ror.org/04zb59n70" + }, + { + "label": "Leibniz Institute for Tropospheric Research", + "type": "child", + "id": "https://ror.org/03a5xsc56" + }, + { + "label": "Leibniz Institute for Zoo and Wildlife Research", + "type": "child", + "id": "https://ror.org/05nywn832" + }, + { + "label": "Leibniz Institute for the German Language", + "type": "child", + "id": "https://ror.org/00hvwkt50" + }, + { + "label": "Leibniz Institute for the History and Culture of Eastern Europe (GWZO)", + "type": "child", + "id": "https://ror.org/04tjfqn96" + }, + { + "label": "GESIS - Leibniz-Institute for the Social Sciences", + "type": "child", + "id": "https://ror.org/018afyw53" + }, + { + "label": "Leibniz Institute of Agricultural Development in Transition Economies", + "type": "child", + "id": "https://ror.org/03hkr1v69" + }, + { + "label": "Leibniz Institute of Atmospheric Physics at the Rostock University", + "type": "child", + "id": "https://ror.org/04enhpe73" + }, + { + "label": "Leibniz Institute of Ecological Urban and Regional Development", + "type": "child", + "id": "https://ror.org/02t26g637" + }, + { + "label": "Leibniz Institute of Environmental Medicine", + "type": "child", + "id": "https://ror.org/0163xqp73" + }, + { + "label": "Leibniz Institute of European History", + "type": "child", + "id": "https://ror.org/059dyrr28" + }, + { + "label": "Leibniz Institute of Freshwater Ecology and Inland Fisheries", + "type": "child", + "id": "https://ror.org/01nftxb06" + }, + { + "label": "Leibniz Institute of Photonic Technology", + "type": "child", + "id": "https://ror.org/02se0t636" + }, + { + "label": "Leibniz Institute of Plant Biochemistry", + "type": "child", + "id": "https://ror.org/01mzk5576" + }, + { + "label": "Leibniz Institute of Polymer Research", + "type": "child", + "id": "https://ror.org/01tspta37" + }, + { + "label": "Leibniz Institute of Surface Engineering", + "type": "child", + "id": "https://ror.org/04vx4mk32" + }, + { + "label": "Leibniz Institute of Vegetable and Ornamental Crops", + "type": "child", + "id": "https://ror.org/01a62v145" + }, + { + "label": "Leibniz Institute on Aging – Fritz Lipmann Institute", + "type": "child", + "id": "https://ror.org/039a53269" + }, + { + "label": "Leibniz Research Centre for Working Environment and Human Factors", + "type": "child", + "id": "https://ror.org/05cj29x94" + }, + { + "label": "Leibniz-Centre General Linguistics", + "type": "child", + "id": "https://ror.org/03wz9xk91" + }, + { + "label": "Leibniz-Forschungsinstitut für Molekulare Pharmakologie", + "type": "child", + "id": "https://ror.org/010s54n03" + }, + { + "label": "Leibniz-Institut für Sonnenphysik", + "type": "child", + "id": "https://ror.org/006g31f33" + }, + { + "label": "Leibniz-Institut für Wissensmedien", + "type": "child", + "id": "https://ror.org/03hv28176" + }, + { + "label": "Leibniz-Institute for Food Systems Biology at the Technical University of Munich", + "type": "child", + "id": "https://ror.org/04sy7nb49" + }, + { + "label": "Leibniz-Institute for New Materials", + "type": "child", + "id": "https://ror.org/00g656d67" + }, + { + "label": "Leibniz-Zentrum Moderner Orient", + "type": "child", + "id": "https://ror.org/03ty9wj75" + }, + { + "label": "Leibniz-Zentrum für Literatur- und Kulturforschung", + "type": "child", + "id": "https://ror.org/00bpta863" + }, + { + "label": "Mathematical Research Institute of Oberwolfach", + "type": "child", + "id": "https://ror.org/001zbj766" + }, + { + "label": "Max-Born-Institute for Nonlinear Optics and Short Pulse Spectroscopy", + "type": "child", + "id": "https://ror.org/03jbf6q27" + }, + { + "label": "Museum für Naturkunde", + "type": "child", + "id": "https://ror.org/052d1a351" + }, + { + "label": "Paul Drude Institute for Solid State Electronics", + "type": "child", + "id": "https://ror.org/01mk1hj86" + }, + { + "label": "Peace Research Institute Frankfurt", + "type": "child", + "id": "https://ror.org/021k10z87" + }, + { + "label": "Potsdam Institute for Climate Impact Research", + "type": "child", + "id": "https://ror.org/03e8s1d88" + }, + { + "label": "RWI – Leibniz Institute for Economic Research", + "type": "child", + "id": "https://ror.org/02pse8162" + }, + { + "label": "Research Center Borstel - Leibniz Lung Center", + "type": "child", + "id": "https://ror.org/036ragn25" + }, + { + "label": "LEIZA - Leibniz-Zentrum für Archäologie", + "type": "child", + "id": "https://ror.org/0483qx226" + }, + { + "label": "Schloss Dagstuhl – Leibniz Center for Informatics", + "type": "child", + "id": "https://ror.org/00k4h2615" + }, + { + "label": "Senckenberg Society for Nature Research", + "type": "child", + "id": "https://ror.org/00xmqmx64" + }, + { + "label": "WZB Berlin Social Science Center", + "type": "child", + "id": "https://ror.org/03k0z2z93" + }, + { + "label": "Weierstrass Institute for Applied Analysis and Stochastics", + "type": "child", + "id": "https://ror.org/00h1x4t21" + }, + { + "label": "Zoological Research Museum Alexander Koenig", + "type": "child", + "id": "https://ror.org/00wz4b049" + }, + { + "label": "Leibniz Institute for Immunotherapy", + "type": "child", + "id": "https://ror.org/00xn1pr13" + }, + { + "label": "Leibniz Institute for the Analysis of Biodiversity Change", + "type": "child", + "id": "https://ror.org/03k5bhd83" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/01nrxwf90.json b/v1.43/01nrxwf90.json new file mode 100644 index 000000000..d2dac8140 --- /dev/null +++ b/v1.43/01nrxwf90.json @@ -0,0 +1,193 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1582, + "external_ids": [ + { + "all": [ + "501100000848", + "501100000635", + "501100005698", + "501100002754" + ], + "preferred": "501100000848", + "type": "fundref" + }, + { + "all": [ + "grid.4305.2" + ], + "preferred": "grid.4305.2", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 7988" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q160302" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01nrxwf90", + "links": [ + { + "type": "website", + "value": "http://www.ed.ac.uk/home" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Edinburgh" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + }, + "geonames_id": 2650225 + } + ], + "names": [ + { + "lang": "gd", + "types": [ + "label" + ], + "value": "Oilthigh Dhùn Èideann" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Edinburgh" + } + ], + "relationships": [ + { + "label": "British Heart Foundation Centre for Cardiovascular Science", + "type": "child", + "id": "https://ror.org/002g4nt27" + }, + { + "label": "Edinburgh Cancer Research", + "type": "child", + "id": "https://ror.org/05a7t9b67" + }, + { + "label": "Centre for Inflammation Research", + "type": "child", + "id": "https://ror.org/05wcr1b38" + }, + { + "label": "International Centre for Mathematical Sciences", + "type": "child", + "id": "https://ror.org/03ab8zv57" + }, + { + "label": "MRC Centre for Regenerative Medicine", + "type": "child", + "id": "https://ror.org/01x802g65" + }, + { + "label": "MRC Centre for Reproductive Health", + "type": "child", + "id": "https://ror.org/02f4tsf92" + }, + { + "label": "MRC Institute of Genetics and Molecular Medicine", + "type": "child", + "id": "https://ror.org/05hygey35" + }, + { + "label": "Maxwell Institute for Mathematical Sciences", + "type": "child", + "id": "https://ror.org/02tsqtg57" + }, + { + "label": "Roslin Institute", + "type": "child", + "id": "https://ror.org/01920rj20" + }, + { + "label": "Scottish Collaboration for Public Health Research and Policy", + "type": "child", + "id": "https://ror.org/05x7p8987" + }, + { + "label": "The Queen's Medical Research Institute", + "type": "child", + "id": "https://ror.org/059zxg644" + }, + { + "label": "Wellcome Centre for Cell Biology", + "type": "child", + "id": "https://ror.org/03xbccz06" + }, + { + "label": "Zhejiang University-University of Edinburgh Institute", + "type": "child", + "id": "https://ror.org/04jth1r26" + }, + { + "label": "MRC Human Genetics Unit", + "type": "child", + "id": "https://ror.org/011jsc803" + }, + { + "label": "Edinburgh Royal Infirmary", + "type": "related", + "id": "https://ror.org/009bsy196" + }, + { + "label": "Royal Hospital for Sick Children", + "type": "related", + "id": "https://ror.org/01w7h4t60" + }, + { + "label": "St John's Hospital", + "type": "related", + "id": "https://ror.org/01hssm416" + }, + { + "label": "Western General Hospital", + "type": "related", + "id": "https://ror.org/009kr6r15" + }, + { + "label": "Scottish Confederation of University and Research Libraries", + "type": "related", + "id": "https://ror.org/03hkzcg46" + }, + { + "label": "Asthma UK Centre for Applied Research", + "type": "child", + "id": "https://ror.org/04ect1284" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/01nry9c15.json b/v1.43/01nry9c15.json new file mode 100644 index 000000000..cccc65ae0 --- /dev/null +++ b/v1.43/01nry9c15.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q4886787" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.430077.7" + ], + "preferred": "grid.430077.7" + } + ], + "id": "https://ror.org/01nry9c15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fpmaragall.org/en/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Pasqual_Maragall_Foundation" + } + ], + "names": [ + { + "value": "Pasqual Maragall Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fundació Pasqual Maragall", + "types": [ + "label" + ], + "lang": "ca" + } + ], + "relationships": [ + { + "label": "Barcelonaβeta Brain Research Center", + "type": "child", + "id": "https://ror.org/03k4wdb90" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01nv2xf68.json b/v1.43/01nv2xf68.json new file mode 100644 index 000000000..529630e23 --- /dev/null +++ b/v1.43/01nv2xf68.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q15470" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.417656.7" + ], + "preferred": "grid.417656.7" + } + ], + "id": "https://ror.org/01nv2xf68", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.l-h.cat/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/L%27Hospitalet_de_Llobregat" + } + ], + "names": [ + { + "value": "Ajuntament de L’Hospitalet", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ayuntamiento de Hospitalet de Llobregat", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hospitalet de Llobregat City Council", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Institut d'Investigació Biomédica de Bellvitge", + "type": "child", + "id": "https://ror.org/0008xqs48" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01nxm2y98.json b/v1.43/01nxm2y98.json new file mode 100644 index 000000000..bc0b1e886 --- /dev/null +++ b/v1.43/01nxm2y98.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2639864, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.95753, + "lng": -0.5128, + "name": "Pulborough" + } + } + ], + "established": 1841, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9224 0406" + ], + "preferred": "0000 0004 9224 0406" + }, + { + "type": "wikidata", + "all": [ + "Q5561481" + ], + "preferred": "Q5561481" + }, + { + "type": "fundref", + "all": [ + "100015651" + ], + "preferred": "100015651" + } + ], + "id": "https://ror.org/01nxm2y98", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.gilchristgrants.org.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Gilchrist_Educational_Trust" + } + ], + "names": [ + { + "value": "Gilchrist Educational Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "GET", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01p07y544.json b/v1.43/01p07y544.json new file mode 100644 index 000000000..edcdd18cd --- /dev/null +++ b/v1.43/01p07y544.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 703448, + "geonames_details": { + "country_code": "UA", + "country_name": "Ukraine", + "lat": 50.45466, + "lng": 30.5238, + "name": "Kyiv" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q12139846" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.446267.5" + ], + "preferred": "grid.446267.5" + } + ], + "id": "https://ror.org/01p07y544", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uhsp.edu.ua" + } + ], + "names": [ + { + "value": "Hryhorii Skovoroda University in Pereiaslav", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Переяслав-Хмельницький державний педагогічний університет імені Григорія Сковороди", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Університет Григорія Сковороди в Переяславі", + "types": [ + "label" + ], + "lang": "uk" + }, + { + "value": "PCDPU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01pd2sz18.json b/v1.43/01pd2sz18.json new file mode 100644 index 000000000..88ef9458a --- /dev/null +++ b/v1.43/01pd2sz18.json @@ -0,0 +1,94 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0458 7507" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q51778778" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.503406.4" + ], + "preferred": "grid.503406.4", + "type": "grid" + } + ], + "id": "https://ror.org/01pd2sz18", + "links": [ + { + "type": "website", + "value": "https://www6.montpellier.inra.fr/mistea_eng/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Mathématiques, Informatique et Statistique pour l'Environnement et l'Agronomie" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MISTEA" + } + ], + "relationships": [ + { + "label": "Centre Occitanie-Montpellier", + "type": "parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Département Mathématiques et Informatique Appliquées", + "type": "parent", + "id": "https://ror.org/011emb038" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/01q4vax14.json b/v1.43/01q4vax14.json new file mode 100644 index 000000000..c06fd3271 --- /dev/null +++ b/v1.43/01q4vax14.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 4781708, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.55376, + "lng": -77.46026, + "name": "Richmond" + } + } + ], + "established": 1788, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q5589334" + ], + "preferred": "Q5589334" + }, + { + "type": "fundref", + "all": [ + "100006822" + ], + "preferred": "100006822" + } + ], + "id": "https://ror.org/01q4vax14", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.virginia.gov" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Government_of_Virginia" + } + ], + "names": [ + { + "value": "Commonwealth of Virginia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Government of Virginia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Government of Virginia", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01q6sg345.json b/v1.43/01q6sg345.json new file mode 100644 index 000000000..7d0ebfe41 --- /dev/null +++ b/v1.43/01q6sg345.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 1645524, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -6.4, + "lng": 106.81861, + "name": "Depok" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0599 5729" + ], + "preferred": "0000 0005 0599 5729" + }, + { + "type": "wikidata", + "all": [ + "Q28723622" + ], + "preferred": "Q28723622" + } + ], + "id": "https://ror.org/01q6sg345", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uiii.ac.id" + }, + { + "type": "wikipedia", + "value": "https://id.wikipedia.org/wiki/Universitas_Islam_Internasional_Indonesia" + } + ], + "names": [ + { + "value": "Universitas Islam Internasional Indonesia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Indonesian International Islamic University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UIII", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "IIIU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01q76b368.json b/v1.43/01q76b368.json new file mode 100644 index 000000000..85f2aaf96 --- /dev/null +++ b/v1.43/01q76b368.json @@ -0,0 +1,341 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0253 7563" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100017216" + ], + "preferred": "501100017216" + }, + { + "type": "wikidata", + "all": [ + "Q24935880" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457013.4" + ], + "preferred": "grid.457013.4" + } + ], + "id": "https://ror.org/01q76b368", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/inee/" + } + ], + "names": [ + { + "value": "Institut Écologie et Environnement", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INEE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Adaptation and Diversity in the Marine Environment", + "type": "child", + "id": "https://ror.org/0293jn610" + }, + { + "label": "Adaptative Mechanisms & Evolution", + "type": "child", + "id": "https://ror.org/041tgdz97" + }, + { + "label": "Archéozoologie et Archéobotanique", + "type": "child", + "id": "https://ror.org/03j82q602" + }, + { + "label": "Laboratoire d'Ecogéochimie des Environnements Benthiques", + "type": "child", + "id": "https://ror.org/049xh5y45" + }, + { + "label": "Biogéosciences", + "type": "child", + "id": "https://ror.org/04mzqjs78" + }, + { + "label": "Biologie des Organismes et Écosystèmes Aquatiques", + "type": "child", + "id": "https://ror.org/01tp1c480" + }, + { + "label": "Biometry and Evolutionary Biology Laboratory", + "type": "child", + "id": "https://ror.org/03skt0t88" + }, + { + "label": "Centre d'Etudes Biologiques de Chizé", + "type": "child", + "id": "https://ror.org/00s8hq550" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Recherches Insulaires et Observatoire de l'Environnement", + "type": "child", + "id": "https://ror.org/02tp7mm44" + }, + { + "label": "Centre d'Écologie et des Sciences de la Conservation", + "type": "child", + "id": "https://ror.org/00sad8321" + }, + { + "label": "Cereep Ecotron Île-de-France", + "type": "child", + "id": "https://ror.org/05j6qf006" + }, + { + "label": "Chrono-Environment Laboratory", + "type": "child", + "id": "https://ror.org/028cef883" + }, + { + "label": "Communication Molecules and Adapation of Micro-organisms", + "type": "child", + "id": "https://ror.org/04xfycm61" + }, + { + "label": "Cultures et Environnements. Préhistoire, Antiquité, Moyen Âge", + "type": "child", + "id": "https://ror.org/04n9van71" + }, + { + "label": "De la Préhistoire à l'Actuel : Culture, Environnement et Anthropologie", + "type": "child", + "id": "https://ror.org/027mnq498" + }, + { + "label": "Ecology and Dynamics of Human Influenced Systems", + "type": "child", + "id": "https://ror.org/02bhp7a56" + }, + { + "label": "Ecosystèmes, Biodiversité, Evolution", + "type": "child", + "id": "https://ror.org/005fjj927" + }, + { + "label": "Environment, City, Society", + "type": "child", + "id": "https://ror.org/0256r1e04" + }, + { + "label": "Biologie évolutive et écologie des algues", + "type": "child", + "id": "https://ror.org/051k70002" + }, + { + "label": "Histoire Naturelle de l’Homme Préhistorique", + "type": "child", + "id": "https://ror.org/00c3ta789" + }, + { + "label": "Institut de Systématique, Évolution, Biodiversité", + "type": "child", + "id": "https://ror.org/01dadvw90" + }, + { + "label": "Institut des Sciences de l'Evolution de Montpellier", + "type": "child", + "id": "https://ror.org/01cah1n37" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institute of Paleoprimatology Human Paleontology Evolution and Paleoenvironments", + "type": "child", + "id": "https://ror.org/0325zb480" + }, + { + "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 Image, Ville, Environnement", + "type": "child", + "id": "https://ror.org/03x8fem72" + }, + { + "label": "Laboratoire Microorganismes Génome et Environnement", + "type": "child", + "id": "https://ror.org/020ahr442" + }, + { + "label": "Laboratoire Méditerranéen de Préhistoire Europe Afrique", + "type": "child", + "id": "https://ror.org/011gea244" + }, + { + "label": "Laboratoire d'Écologie Alpine", + "type": "child", + "id": "https://ror.org/03x1z2w73" + }, + { + "label": "Laboratoire de Biodiversité et Biotechnologies Microbiennes", + "type": "child", + "id": "https://ror.org/039p01270" + }, + { + "label": "Laboratoire de Génétique & Evolution des Populations Végétales", + "type": "child", + "id": "https://ror.org/01h0a3k64" + }, + { + "label": "Laboratoire de Géographie Physique", + "type": "child", + "id": "https://ror.org/054v0s666" + }, + { + "label": "Laboratoire de Géographie Physique et Environnementale", + "type": "child", + "id": "https://ror.org/00e4pqm50" + }, + { + "label": "Laboratoire des Sciences de l'Environnement Marin", + "type": "child", + "id": "https://ror.org/05h929866" + }, + { + "label": "Laboratoire Écologie Fonctionnelle et Environnement", + "type": "child", + "id": "https://ror.org/027rbaq21" + }, + { + "label": "Laboratory Evolution and Biological Diversity", + "type": "child", + "id": "https://ror.org/02xh23b55" + }, + { + "label": "Laboratory of Molecular Anthropology and Image Synthesis", + "type": "child", + "id": "https://ror.org/05w482q29" + }, + { + "label": "Maladies Infectieuses et Vecteurs: Écologie, Génétique, Évolution et Contrôle", + "type": "child", + "id": "https://ror.org/00357kh21" + }, + { + "label": "Mediterranean Institute of Marine and Terrestrial Biodiversity and Ecology", + "type": "child", + "id": "https://ror.org/0409c3995" + }, + { + "label": "Microbial Ecology", + "type": "child", + "id": "https://ror.org/053vv7851" + }, + { + "label": "Milieux environnementaux, transferts et interactions dans les hydrosystèmes et les sols", + "type": "child", + "id": "https://ror.org/0229z0679" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Station Biologique de Roscoff", + "type": "child", + "id": "https://ror.org/03s0pzj56" + }, + { + "label": "Station d’Écologie Théorique et Expérimentale", + "type": "child", + "id": "https://ror.org/05d6wfd23" + }, + { + "label": "Travaux et Recherches Archéologiques sur les Cultures, les Espaces et les Sociétés", + "type": "child", + "id": "https://ror.org/04pfm5x27" + }, + { + "label": "Éco-Anthropologie", + "type": "child", + "id": "https://ror.org/03x0yny97" + }, + { + "label": "Écologie Marine Tropicale des Océans Pacifique et Indien", + "type": "child", + "id": "https://ror.org/05kxt4539" + }, + { + "label": "Écologie et Biologie des Interactions", + "type": "child", + "id": "https://ror.org/051f3f740" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01q7cq281.json b/v1.43/01q7cq281.json new file mode 100644 index 000000000..253a54168 --- /dev/null +++ b/v1.43/01q7cq281.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3106672, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.65518, + "lng": -4.72372, + "name": "Valladolid" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q14866877" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.472213.1" + ], + "preferred": "grid.472213.1" + } + ], + "id": "https://ror.org/01q7cq281", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://wikimedia.es" + } + ], + "names": [ + { + "value": "Wikimedia España", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01qew8q20.json b/v1.43/01qew8q20.json new file mode 100644 index 000000000..596c69536 --- /dev/null +++ b/v1.43/01qew8q20.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3114472, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.81687, + "lng": -1.64323, + "name": "Pamplona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1273 0083" + ], + "preferred": "0000 0005 1273 0083" + } + ], + "id": "https://ror.org/01qew8q20", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cima.cun.es" + } + ], + "names": [ + { + "value": "Fundación para la Investigación Médica Aplicada", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FIMA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Universidad de Navarra", + "type": "related", + "id": "https://ror.org/02rxc7m23" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01qgecw57.json b/v1.43/01qgecw57.json new file mode 100644 index 000000000..2ecb2e524 --- /dev/null +++ b/v1.43/01qgecw57.json @@ -0,0 +1,102 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2001, + "external_ids": [ + { + "all": [ + "0000 0004 0399 4960" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4969002" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.415172.4" + ], + "preferred": "grid.415172.4", + "type": "grid" + } + ], + "id": "https://ror.org/01qgecw57", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/bristol-royal-hospital-for-children/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Bristol_Royal_Hospital_for_Children" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bristol Royal Hospital for Children" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bristol Children's Hospital" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bristol Royal Hospital for Sick Children" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BRHC" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/01qgn1839.json b/v1.43/01qgn1839.json new file mode 100644 index 000000000..d8e12db81 --- /dev/null +++ b/v1.43/01qgn1839.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2649808, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.7236, + "lng": -3.52751, + "name": "Exeter" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9129 3549" + ], + "preferred": "0000 0004 9129 3549" + }, + { + "type": "fundref", + "all": [ + "501100019219" + ], + "preferred": "501100019219" + } + ], + "id": "https://ror.org/01qgn1839", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://arc-swp.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Applied Research Collaboration South West Peninsula", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PenARC", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Applied Research Collaboration South West Peninsula", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR ARC South West Peninsula", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01qh08519.json b/v1.43/01qh08519.json new file mode 100644 index 000000000..d43085e9c --- /dev/null +++ b/v1.43/01qh08519.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2023, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q123492521" + ], + "preferred": "Q123492521" + } + ], + "id": "https://ror.org/01qh08519", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://portal.mineco.gob.es" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Ministerio_de_Transformaci%C3%B3n_Digital" + } + ], + "names": [ + { + "value": "Ministerio para la Transformación Digital y de la Función Pública", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministerio para la Transformación Digital y de la Función Pública de España", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spanish Ministry of Digital Transformation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Digital Transformation, Spain", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MTDFP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ministerio de Asuntos Económicos y Transformación Digital", + "type": "predecessor", + "id": "https://ror.org/03sv46s19" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01qv3ez98.json b/v1.43/01qv3ez98.json new file mode 100644 index 000000000..d9e2f8e20 --- /dev/null +++ b/v1.43/01qv3ez98.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2163355, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -42.87936, + "lng": 147.32941, + "name": "Hobart" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q64085930" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.510152.2" + ], + "preferred": "grid.510152.2" + } + ], + "id": "https://ror.org/01qv3ez98", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.csiro.au/en/about/facilities-collections/Collections/ANACC" + } + ], + "names": [ + { + "value": "Australian National Algae Culture Collection", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ANACC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Commonwealth Scientific and Industrial Research Organisation", + "type": "parent", + "id": "https://ror.org/03qn8fb07" + } + ], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01r7awg59.json b/v1.43/01r7awg59.json new file mode 100644 index 000000000..3e3a2b89c --- /dev/null +++ b/v1.43/01r7awg59.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1964, + "external_ids": [ + { + "all": [ + "100008986" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.34429.38" + ], + "preferred": "grid.34429.38", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 8198" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q795988" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01r7awg59", + "links": [ + { + "type": "website", + "value": "http://www.uoguelph.ca/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Guelph" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.54594, + "lng": -80.25599, + "name": "Guelph" + }, + "geonames_id": 5967629 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Guelph" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de guelph" + } + ], + "relationships": [ + { + "label": "Ontario Veterinary College", + "type": "child", + "id": "https://ror.org/04frvgs13" + }, + { + "label": "Ontario Agri-Food Innovation Alliance", + "type": "related", + "id": "https://ror.org/02ftfma65" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/01r9z8p25.json b/v1.43/01r9z8p25.json new file mode 100644 index 000000000..a06d2d836 --- /dev/null +++ b/v1.43/01r9z8p25.json @@ -0,0 +1,126 @@ +{ + "locations": [ + { + "geonames_id": 2511401, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 28.4853, + "lng": -16.32014, + "name": "San Cristóbal de La Laguna" + } + } + ], + "established": 1927, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2106 0879" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100015528" + ], + "preferred": "100015528" + }, + { + "type": "wikidata", + "all": [ + "Q539881" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.10041.34" + ], + "preferred": "grid.10041.34" + } + ], + "id": "https://ror.org/01r9z8p25", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ull.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_La_Laguna" + } + ], + "names": [ + { + "value": "Universidad de La Laguna", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of San Fernando de La Laguna", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidade de La Laguna", + "types": [ + "label" + ], + "lang": "gl" + }, + { + "value": "University of La Laguna", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ULL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Hospital Universitario de Canarias", + "type": "related", + "id": "https://ror.org/05qndj312" + }, + { + "label": "Instituto de Astrofísica de Canarias", + "type": "child", + "id": "https://ror.org/03cmntr54" + }, + { + "label": "Hospital Universitario Nuestra Señora de Candelaria", + "type": "related", + "id": "https://ror.org/005a3p084" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01sqena74.json b/v1.43/01sqena74.json new file mode 100644 index 000000000..16bc4c008 --- /dev/null +++ b/v1.43/01sqena74.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 1264527, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 13.08784, + "lng": 80.27847, + "name": "Chennai" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100013419" + ], + "preferred": "501100013419" + } + ], + "id": "https://ror.org/01sqena74", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ssn.edu.in" + } + ], + "names": [ + { + "value": "SSN Educational and Charitable Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SSN Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Sri Sivasubramaniya Nadar Trust", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01swzsf04.json b/v1.43/01swzsf04.json new file mode 100644 index 000000000..27f9da1db --- /dev/null +++ b/v1.43/01swzsf04.json @@ -0,0 +1,142 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1559, + "external_ids": [ + { + "all": [ + "501100006389" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.8591.5" + ], + "preferred": "grid.8591.5", + "type": "grid" + }, + { + "all": [ + "0000 0001 2322 4988", + "0000 0001 2175 2154" + ], + "preferred": "0000 0001 2175 2154", + "type": "isni" + }, + { + "all": [ + "Q503473" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01swzsf04", + "links": [ + { + "type": "website", + "value": "https://www.unige.ch/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Geneva" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.20222, + "lng": 6.14569, + "name": "Geneva" + }, + "geonames_id": 2660646 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Schola Genevensis" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNIGE" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Geneva" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Università di Ginevra" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Genève" + } + ], + "relationships": [ + { + "label": "NCCR Chemical Biology - Visualisation and Control of Biological Processes Using Chemistry", + "type": "child", + "id": "https://ror.org/033f9yy33" + }, + { + "label": "Swiss Cancer Center Léman", + "type": "child", + "id": "https://ror.org/03kwyfa97" + }, + { + "label": "Idiap Research Institute", + "type": "related", + "id": "https://ror.org/05932h694" + }, + { + "label": "University Hospital of Geneva", + "type": "related", + "id": "https://ror.org/01m1pv723" + }, + { + "label": "Swiss Centre for Applied Human Toxicology", + "type": "related", + "id": "https://ror.org/03wma5x57" + }, + { + "label": "NCCR SwissMAP", + "type": "child", + "id": "https://ror.org/00xzacp61" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/01tm9b530.json b/v1.43/01tm9b530.json new file mode 100644 index 000000000..9da61f90f --- /dev/null +++ b/v1.43/01tm9b530.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 4931972, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.3751, + "lng": -71.10561, + "name": "Cambridge" + } + } + ], + "established": 2007, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q22073896" + ], + "preferred": "Q22073896" + }, + { + "type": "fundref", + "all": [ + "100013113" + ], + "preferred": "100013113" + } + ], + "id": "https://ror.org/01tm9b530", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.broadinstitute.org/stanley-center-for-psychiatric-research" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Stanley_Center_for_Psychiatric_Research_at_Broad_Institute" + } + ], + "names": [ + { + "value": "Stanley Center for Psychiatric Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stanley Center for Psychiatric Research at Broad Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Stanley Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Stanley Center for Psychiatric Research at the Broad Institute", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Broad Institute", + "type": "parent", + "id": "https://ror.org/05a0ya142" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01v2rax29.json b/v1.43/01v2rax29.json new file mode 100644 index 000000000..a57cedfac --- /dev/null +++ b/v1.43/01v2rax29.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.502774.3" + ], + "preferred": "grid.502774.3" + } + ], + "id": "https://ror.org/01v2rax29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://designforall.org" + } + ], + "names": [ + { + "value": "Design for All Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01v376g59.json b/v1.43/01v376g59.json new file mode 100644 index 000000000..e93ffb23a --- /dev/null +++ b/v1.43/01v376g59.json @@ -0,0 +1,128 @@ +{ + "locations": [ + { + "geonames_id": 2953436, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.22683, + "lng": 8.61816, + "name": "Bad Homburg" + } + } + ], + "established": 1912, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0451 3831" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q705361" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462236.7" + ], + "preferred": "grid.462236.7" + } + ], + "id": "https://ror.org/01v376g59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fresenius.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Fresenius_(company)" + } + ], + "names": [ + { + "value": "Fresenius (Germany)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fresenius SE & Co. KGaA", + "types": [ + "label" + ], + "lang": "de" + } + ], + "relationships": [ + { + "label": "Fresenius Kabi (China)", + "type": "child", + "id": "https://ror.org/03r86y726" + }, + { + "label": "Fresenius Kabi (Czechia)", + "type": "child", + "id": "https://ror.org/034bznj45" + }, + { + "label": "Fresenius Kabi (India)", + "type": "child", + "id": "https://ror.org/01axjm922" + }, + { + "label": "Fresenius Kabi (Netherlands)", + "type": "child", + "id": "https://ror.org/030yesb42" + }, + { + "label": "Fresenius Kabi (South Korea)", + "type": "child", + "id": "https://ror.org/0050zy157" + }, + { + "label": "Fresenius Kabi (United States)", + "type": "child", + "id": "https://ror.org/04rzhfa50" + }, + { + "label": "Fresenius Medical Care (India)", + "type": "child", + "id": "https://ror.org/04z11gw67" + }, + { + "label": "Fresenius Medical Care (United States)", + "type": "child", + "id": "https://ror.org/02avws951" + }, + { + "label": "Fresenius Medical Care (Germany)", + "type": "related", + "id": "https://ror.org/04sk0bj73" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01v5xwf23.json b/v1.43/01v5xwf23.json new file mode 100644 index 000000000..5fedcc812 --- /dev/null +++ b/v1.43/01v5xwf23.json @@ -0,0 +1,146 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1866, + "external_ids": [ + { + "all": [ + "grid.419905.0" + ], + "preferred": "grid.419905.0", + "type": "grid" + }, + { + "all": [ + "0000 0001 0066 4948" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q160746" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01v5xwf23", + "links": [ + { + "type": "website", + "value": "http://www.nestle.ch/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Nestl%C3%A9" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.46299, + "lng": 6.84345, + "name": "Vevey" + }, + "geonames_id": 2658145 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Nestlé (Switzerland)" + } + ], + "relationships": [ + { + "label": "Nestlé (Belgium)", + "type": "child", + "id": "https://ror.org/036yvkz90" + }, + { + "label": "Nestlé (Brazil)", + "type": "child", + "id": "https://ror.org/0498w0n61" + }, + { + "label": "Nestlé (Canada)", + "type": "child", + "id": "https://ror.org/0199b8691" + }, + { + "label": "Nestlé (China)", + "type": "child", + "id": "https://ror.org/03gn7k041" + }, + { + "label": "Nestlé (France)", + "type": "child", + "id": "https://ror.org/05m1qxf57" + }, + { + "label": "Nestlé (Germany)", + "type": "child", + "id": "https://ror.org/00nc2d154" + }, + { + "label": "Nestlé (India)", + "type": "child", + "id": "https://ror.org/04s5pra58" + }, + { + "label": "Nestlé (Netherlands)", + "type": "child", + "id": "https://ror.org/02drjk215" + }, + { + "label": "Nestlé (Singapore)", + "type": "child", + "id": "https://ror.org/03w84vf57" + }, + { + "label": "Nestlé (South Africa)", + "type": "child", + "id": "https://ror.org/008vha608" + }, + { + "label": "Nestlé (Sweden)", + "type": "child", + "id": "https://ror.org/024rmzz69" + }, + { + "label": "Nestlé (United Kingdom)", + "type": "child", + "id": "https://ror.org/00knakc29" + }, + { + "label": "Nestlé (United States)", + "type": "child", + "id": "https://ror.org/0368qtc02" + }, + { + "label": "Nestlé Health Science (United States)", + "type": "child", + "id": "https://ror.org/03y8jvk69" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/01v7jrq42.json b/v1.43/01v7jrq42.json new file mode 100644 index 000000000..6336c0887 --- /dev/null +++ b/v1.43/01v7jrq42.json @@ -0,0 +1,111 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1991, + "external_ids": [ + { + "all": [ + "grid.422445.1" + ], + "preferred": "grid.422445.1", + "type": "grid" + }, + { + "all": [ + "0000 0001 0681 5145" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q122141" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01v7jrq42", + "links": [ + { + "type": "website", + "value": "http://www.vodafone.com/content/index.html" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Vodafone" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.40148, + "lng": -1.32471, + "name": "Newbury" + }, + "geonames_id": 2641689 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Vodafone (United Kingdom)" + } + ], + "relationships": [ + { + "label": "Vodafone (Germany)", + "type": "child", + "id": "https://ror.org/044qwkx83" + }, + { + "label": "Vodafone (Greece)", + "type": "child", + "id": "https://ror.org/01cwasn33" + }, + { + "label": "Vodafone (Italy)", + "type": "child", + "id": "https://ror.org/009hdbz24" + }, + { + "label": "Vodafone (Portugal)", + "type": "child", + "id": "https://ror.org/00y7x8f51" + }, + { + "label": "Vodafone (Qatar)", + "type": "child", + "id": "https://ror.org/02ps68973" + }, + { + "label": "Vodafone (Spain)", + "type": "child", + "id": "https://ror.org/00wzstx67" + }, + { + "label": "Vodafone Foundation", + "type": "child", + "id": "https://ror.org/03thdsj80" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/01v9qfq10.json b/v1.43/01v9qfq10.json new file mode 100644 index 000000000..063448365 --- /dev/null +++ b/v1.43/01v9qfq10.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2037013, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 45.75, + "lng": 126.65, + "name": "Harbin" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/01v9qfq10", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.hilem.cn" + } + ], + "names": [ + { + "value": "Harbin Institute of Large Electric Machinery", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "哈尔滨大电机研究所", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "HILEM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01vbgty78.json b/v1.43/01vbgty78.json new file mode 100644 index 000000000..ec395d47d --- /dev/null +++ b/v1.43/01vbgty78.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 3109402, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.49109, + "lng": 2.14079, + "name": "Cerdanyola del Vallès" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1793 4897" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5918072" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.450286.d" + ], + "preferred": "grid.450286.d" + } + ], + "id": "https://ror.org/01vbgty78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ice.csic.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Institut_de_Ci%C3%A8ncies_de_l'Espai" + } + ], + "names": [ + { + "value": "Institute of Space Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut de Ciències de l'Espai", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Instituto de Ciencias del Espacio", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "ICE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Consejo Superior de Investigaciones Científicas", + "type": "parent", + "id": "https://ror.org/02gfc7t72" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01vt9w950.json b/v1.43/01vt9w950.json new file mode 100644 index 000000000..e6c7e4aab --- /dev/null +++ b/v1.43/01vt9w950.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 3452925, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -30.03283, + "lng": -51.23019, + "name": "Porto Alegre" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6088 6907" + ], + "preferred": "0000 0004 6088 6907" + }, + { + "type": "wikidata", + "all": [ + "Q10302596" + ], + "preferred": "Q10302596" + }, + { + "type": "fundref", + "all": [ + "501100007762" + ], + "preferred": "501100007762" + } + ], + "id": "https://ror.org/01vt9w950", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://pt.wikipedia.org/wiki/Instituto_Nacional_de_Ci%C3%AAncia_e_Tecnologia_Translacional_em_Medicina" + } + ], + "names": [ + { + "value": "Instituto Nacional de Ciência e Tecnologia Translacional em Medicina", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Science and Technology Institute for Translational Medicine", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "INCT-TM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Universidade Federal do Rio Grande do Sul", + "type": "parent", + "id": "https://ror.org/041yk2d64" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01vw4c203.json b/v1.43/01vw4c203.json new file mode 100644 index 000000000..6c10a1166 --- /dev/null +++ b/v1.43/01vw4c203.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 2217" + ], + "preferred": "0000 0004 0369 2217" + }, + { + "type": "wikidata", + "all": [ + "Q102872417" + ], + "preferred": "Q102872417" + }, + { + "type": "fundref", + "all": [ + "501100018814" + ], + "preferred": "501100018814" + } + ], + "id": "https://ror.org/01vw4c203", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://environment-health.ac.uk" + } + ], + "names": [ + { + "value": "MRC Centre for Environment and Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Medical Research Council Centre for Environment and Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MRC-PHE Centre for Environment & Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MRC CE&H", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Imperial College London", + "type": "parent", + "id": "https://ror.org/041kmwe10" + }, + { + "label": "Medical Research Council", + "type": "parent", + "id": "https://ror.org/03x94j517" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01w151e64.json b/v1.43/01w151e64.json new file mode 100644 index 000000000..a148de097 --- /dev/null +++ b/v1.43/01w151e64.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1808, + "external_ids": [ + { + "all": [ + "0000 0004 0399 4581" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q22000442" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.415175.3" + ], + "preferred": "grid.415175.3", + "type": "grid" + } + ], + "id": "https://ror.org/01w151e64", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/bristol-eye-hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Bristol_Eye_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bristol Eye Hospital" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BEH" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/01wjyqy10.json b/v1.43/01wjyqy10.json new file mode 100644 index 000000000..43464f35f --- /dev/null +++ b/v1.43/01wjyqy10.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q116776100" + ], + "preferred": "Q116776100" + }, + { + "type": "fundref", + "all": [ + "100017151" + ], + "preferred": "100017151" + } + ], + "id": "https://ror.org/01wjyqy10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.jubileetribute.org" + } + ], + "names": [ + { + "value": "Queen Elizabeth Diamond Jubilee Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Jubilee Tribute", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01wp2jz98.json b/v1.43/01wp2jz98.json new file mode 100644 index 000000000..75dbf9e80 --- /dev/null +++ b/v1.43/01wp2jz98.json @@ -0,0 +1,158 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2009, + "external_ids": [ + { + "all": [ + "grid.434729.f" + ], + "preferred": "grid.434729.f", + "type": "grid" + }, + { + "all": [ + "0000 0004 0590 2900" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q462592" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01wp2jz98", + "links": [ + { + "type": "website", + "value": "https://www.xfel.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/European_x-ray_free_electron_laser" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 54.05, + "lng": 9.48333, + "name": "Schenefeld" + }, + "geonames_id": 2839763 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "European X-Ray Free-Electron Laser" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "European XFEL" + } + ], + "relationships": [ + { + "label": "Deutsches Elektronen-Synchrotron DESY", + "type": "parent", + "id": "https://ror.org/01js2sh04" + }, + { + "label": "Danish Agency for Science and Higher Education", + "type": "parent", + "id": "https://ror.org/02sptwz63" + }, + { + "label": "Atomic Energy and Alternative Energies Commission", + "type": "parent", + "id": "https://ror.org/00jjx8s55" + }, + { + "label": "National Council for Scientific Research", + "type": "parent", + "id": "https://ror.org/00x9ewr78" + }, + { + "label": "National Research, Development and Innovation Office", + "type": "parent", + "id": "https://ror.org/03g2am276" + }, + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "National Research Council", + "type": "parent", + "id": "https://ror.org/04zaypm56" + }, + { + "label": "National Centre for Nuclear Research", + "type": "parent", + "id": "https://ror.org/00nzsxq20" + }, + { + "label": "Kurchatov Institute", + "type": "parent", + "id": "https://ror.org/00n1nz186" + }, + { + "label": "Ministry of Education, Science, Research and Sport of the Slovak Republic", + "type": "parent", + "id": "https://ror.org/044gwpv05" + }, + { + "label": "Ministerio de Ciencia, Innovación y Universidades", + "type": "parent", + "id": "https://ror.org/05r0vyz12" + }, + { + "label": "Swedish Research Council", + "type": "parent", + "id": "https://ror.org/03zttf063" + }, + { + "label": "UK Research and Innovation", + "type": "parent", + "id": "https://ror.org/001aqnf71" + }, + { + "label": "State Secretariat for Education, Research and Innovation", + "type": "parent", + "id": "https://ror.org/00mt8k932" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/01xc6bj88.json b/v1.43/01xc6bj88.json new file mode 100644 index 000000000..cc58088a6 --- /dev/null +++ b/v1.43/01xc6bj88.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 2944388, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 53.07582, + "lng": 8.80717, + "name": "Bremen" + } + } + ], + "established": 1950, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9457 1808" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1665037" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.425971.c" + ], + "preferred": "grid.425971.c" + } + ], + "id": "https://ror.org/01xc6bj88", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iwt-bremen.de" + } + ], + "names": [ + { + "value": "Leibniz-Institut für Werkstofforientierte Technologien - IWT", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Leibniz Institute for Materials Engineering", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Leibniz-Institut für Werkstofforientierte Technologien", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "IWT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01y64my43.json b/v1.43/01y64my43.json new file mode 100644 index 000000000..fbe7a442a --- /dev/null +++ b/v1.43/01y64my43.json @@ -0,0 +1,180 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-29", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1846, + "external_ids": [ + { + "all": [ + "100008209", + "100008210", + "100007509" + ], + "preferred": "100008209", + "type": "fundref" + }, + { + "all": [ + "grid.273335.3" + ], + "preferred": "grid.273335.3", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 9887" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q681025" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01y64my43", + "links": [ + { + "type": "website", + "value": "https://www.buffalo.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_at_Buffalo" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.88645, + "lng": -78.87837, + "name": "Buffalo" + }, + "geonames_id": 5110629 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "SUNY Buffalo" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UB" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de Búfalo" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University at Buffalo, State University of New York" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Buffalo" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État de new york à buffalo" + } + ], + "relationships": [ + { + "label": "Advanced Cyberinfrastructure Coordination Ecosystem: Services & Support", + "type": "child", + "id": "https://ror.org/01v6d0b34" + }, + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Buffalo General Medical Center", + "type": "related", + "id": "https://ror.org/04ngv0f69" + }, + { + "label": "Erie County Medical Center", + "type": "related", + "id": "https://ror.org/019e4dr88" + }, + { + "label": "Hauptman-Woodward Medical Research Institute", + "type": "related", + "id": "https://ror.org/02e1cpg76" + }, + { + "label": "Kaleida Health", + "type": "related", + "id": "https://ror.org/02sb3pg33" + }, + { + "label": "Millard Fillmore Suburban Hospital", + "type": "related", + "id": "https://ror.org/01ska0k70" + }, + { + "label": "Roswell Park Cancer Institute", + "type": "related", + "id": "https://ror.org/0499dwk57" + }, + { + "label": "Sisters of Charity Hospital", + "type": "related", + "id": "https://ror.org/02xxgh713" + }, + { + "label": "VA Western New York Healthcare System", + "type": "related", + "id": "https://ror.org/00a1c5n07" + }, + { + "label": "Women & Children's Hospital of Buffalo", + "type": "related", + "id": "https://ror.org/00kg66g91" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/01y8j9r24.json b/v1.43/01y8j9r24.json new file mode 100644 index 000000000..25a9f8d2a --- /dev/null +++ b/v1.43/01y8j9r24.json @@ -0,0 +1,115 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.457079.8" + ], + "preferred": "grid.457079.8" + } + ], + "id": "https://ror.org/01y8j9r24", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.dr4.cnrs.fr/" + } + ], + "names": [ + { + "value": "Délégation Ile-de-France Sud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DR04", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "parent", + "id": "https://ror.org/03yz3tz18" + }, + { + "label": "Centre de Génétique Moléculaire", + "type": "child", + "id": "https://ror.org/052ahj806" + }, + { + "label": "Heteroelements and Coordination Chemistry Lab", + "type": "child", + "id": "https://ror.org/02cf97417" + }, + { + "label": "Institut de Biochimie et Biophysique Moléculaire et Cellulaire", + "type": "child", + "id": "https://ror.org/006je8v76" + }, + { + "label": "Laboratoire Archéomatériaux et Prévision de l'Altération", + "type": "child", + "id": "https://ror.org/01xpreq28" + }, + { + "label": "Laboratoire Structure et Dynamique par Résonance Magnétique", + "type": "child", + "id": "https://ror.org/0378sf364" + }, + { + "label": "Laboratoire de Neurobiologie Cellulaire et Moléculaire", + "type": "child", + "id": "https://ror.org/0452rtt80" + }, + { + "label": "Laboratoire de Virologie Moléculaire et Structurale", + "type": "child", + "id": "https://ror.org/01dz5cg19" + }, + { + "label": "Service Interdisciplinaire sur les Systèmes Moléculaires et les Matériaux", + "type": "child", + "id": "https://ror.org/00enct420" + }, + { + "label": "Signalisation, Neurobiologie et Cancer", + "type": "child", + "id": "https://ror.org/01cmdpn82" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01yc7t268.json b/v1.43/01yc7t268.json new file mode 100644 index 000000000..27ea50a1f --- /dev/null +++ b/v1.43/01yc7t268.json @@ -0,0 +1,143 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1853, + "external_ids": [ + { + "all": [ + "100007268", + "100007930", + "100009607", + "100006586", + "100011912" + ], + "preferred": "100007268", + "type": "fundref" + }, + { + "all": [ + "grid.4367.6" + ], + "preferred": "grid.4367.6", + "type": "grid" + }, + { + "all": [ + "0000 0001 2355 7002" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q777403" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01yc7t268", + "links": [ + { + "type": "website", + "value": "http://wustl.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Washington_University_in_St._Louis" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.62727, + "lng": -90.19789, + "name": "St Louis" + }, + "geonames_id": 4407066 + } + ], + "names": [ + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Washington en San Luis" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université Washington à Saint-louis" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "WUSTL" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Washington University in St. Louis" + } + ], + "relationships": [ + { + "label": "Children’s Discovery Institute", + "type": "child", + "id": "https://ror.org/02swjdp46" + }, + { + "label": "Washington University Physicians", + "type": "child", + "id": "https://ror.org/03qn8ky51" + }, + { + "label": "Barnes-Jewish Hospital", + "type": "related", + "id": "https://ror.org/04wyvkr12" + }, + { + "label": "Central Institute for the Deaf", + "type": "related", + "id": "https://ror.org/04ymee833" + }, + { + "label": "St. Louis Children's Hospital", + "type": "related", + "id": "https://ror.org/00qw1qw03" + }, + { + "label": "Washington University Medical Center", + "type": "related", + "id": "https://ror.org/036c27j91" + }, + { + "label": "Taylor Family Institute for Innovative Psychiatric Research", + "type": "child", + "id": "https://ror.org/03x3g5467" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/01ydb3330.json b/v1.43/01ydb3330.json new file mode 100644 index 000000000..a2775e12a --- /dev/null +++ b/v1.43/01ydb3330.json @@ -0,0 +1,91 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-04-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2006, + "external_ids": [ + { + "all": [ + "grid.426328.9" + ], + "preferred": "grid.426328.9", + "type": "grid" + }, + { + "all": [ + "Q112513" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01ydb3330", + "links": [ + { + "type": "website", + "value": "http://www.synchrotron-soleil.fr/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/SOLEIL" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + }, + "geonames_id": 3016078 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Soleil Synchrotron" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Synchrotron soleil" + } + ], + "relationships": [ + { + "label": "CEA Saclay", + "type": "parent", + "id": "https://ror.org/03n15ch10" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/01yg1g961.json b/v1.43/01yg1g961.json new file mode 100644 index 000000000..b43f18a1a --- /dev/null +++ b/v1.43/01yg1g961.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 3660434, + "geonames_details": { + "country_code": "EC", + "country_name": "Ecuador", + "lat": -2.73969, + "lng": -78.8486, + "name": "Azogues" + } + } + ], + "established": 2014, + "external_ids": [], + "id": "https://ror.org/01yg1g961", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://unae.edu.ec" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Universidad_Nacional_de_Educaci%C3%B3n_(UNAE)" + } + ], + "names": [ + { + "value": "Universidad Nacional de Educación", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National University Of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidad Nacional De Educación, Ecuador", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidad Nacional de Educación del Ecuador", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UNAE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01yh3na84.json b/v1.43/01yh3na84.json new file mode 100644 index 000000000..679e4a1b0 --- /dev/null +++ b/v1.43/01yh3na84.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1621177, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -7.80139, + "lng": 110.36472, + "name": "Yogyakarta" + } + } + ], + "established": 2020, + "external_ids": [], + "id": "https://ror.org/01yh3na84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://idpublishing.org" + } + ], + "names": [ + { + "value": "Indonesian Journal Publisher (Indonesia)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IDPublishing", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Indonesian Journal Publisher", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Penerbit Jurnal Indonesia", + "types": [ + "label" + ], + "lang": "id" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01ym3w380.json b/v1.43/01ym3w380.json new file mode 100644 index 000000000..adc6f4874 --- /dev/null +++ b/v1.43/01ym3w380.json @@ -0,0 +1,69 @@ +{ + "admin": { + "created": { + "date": "2024-02-21", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1997, + "external_ids": [], + "id": "https://ror.org/01ym3w380", + "links": [ + { + "type": "website", + "value": "https://www.globusetlocus.org" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + }, + "geonames_id": 3173435 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Association Globus et Locus" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "GL" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Globus et Locus" + } + ], + "relationships": [ + { + "label": "Fondazione Giannino Bassetti", + "type": "related", + "id": "https://ror.org/027620g33" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/v1.43/01ythxj32.json b/v1.43/01ythxj32.json new file mode 100644 index 000000000..904c3d068 --- /dev/null +++ b/v1.43/01ythxj32.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1957, + "external_ids": [ + { + "all": [ + "0000 0001 2219 916X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100017115" + ], + "preferred": "100017115", + "type": "fundref" + }, + { + "all": [ + "Q782116" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.261277.7" + ], + "preferred": "grid.261277.7", + "type": "grid" + } + ], + "id": "https://ror.org/01ythxj32", + "links": [ + { + "type": "website", + "value": "http://wwwp.oakland.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Oakland_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.68059, + "lng": -83.13382, + "name": "Rochester" + }, + "geonames_id": 5007400 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Oakland University" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "OU" + } + ], + "relationships": [ + { + "label": "Beaumont Hospital, Royal Oak", + "type": "related", + "id": "https://ror.org/03artm726" + }, + { + "label": "Beaumont Hospital, Troy", + "type": "related", + "id": "https://ror.org/05x9ffc66" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/01z6fgx85.json b/v1.43/01z6fgx85.json new file mode 100644 index 000000000..85016b324 --- /dev/null +++ b/v1.43/01z6fgx85.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9291 8328" + ], + "preferred": "0000 0004 9291 8328" + }, + { + "type": "wikidata", + "all": [ + "Q38180956" + ], + "preferred": "Q38180956" + } + ], + "id": "https://ror.org/01z6fgx85", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ceic.com/gjnyjtwwEn/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/China_Energy_Investment" + } + ], + "names": [ + { + "value": "CHN Energy (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CHN Energy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CHN ENERGY Investment Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CHN ENERGY Investment Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CHN ENERGY Investment Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "国家能源投资集团", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01zvsh948.json b/v1.43/01zvsh948.json new file mode 100644 index 000000000..52edfb698 --- /dev/null +++ b/v1.43/01zvsh948.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 3128026, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1793 9217" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q571118" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.482032.f" + ], + "preferred": "grid.482032.f" + } + ], + "id": "https://ror.org/01zvsh948", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://osha.europa.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/European_Agency_for_Safety_and_Health_at_Work" + } + ], + "names": [ + { + "value": "European Agency for Safety and Health at Work", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Agencia Europea para la Seguridad y la Salud en el Trabajo", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "EU-OSHA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "European Union", + "type": "parent", + "id": "https://ror.org/019w4f821" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01zy2cs03.json b/v1.43/01zy2cs03.json new file mode 100644 index 000000000..698b1823e --- /dev/null +++ b/v1.43/01zy2cs03.json @@ -0,0 +1,115 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-04-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1992, + "external_ids": [ + { + "all": [ + "501100014754" + ], + "preferred": "501100014754", + "type": "fundref" + }, + { + "all": [ + "grid.40602.30" + ], + "preferred": "grid.40602.30", + "type": "grid" + }, + { + "all": [ + "0000 0001 2158 0612" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q883545" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/01zy2cs03", + "links": [ + { + "type": "website", + "value": "https://www.hzdr.de" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Helmholtz-Zentrum_Dresden-Rossendorf" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.05089, + "lng": 13.73832, + "name": "Dresden" + }, + "geonames_id": 2935022 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "HZDR" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Helmholtz-Zentrum Dresden-Rossendorf" + } + ], + "relationships": [ + { + "label": "Helmholtz Institute Freiberg for Resource Technology", + "type": "child", + "id": "https://ror.org/04kdb0j04" + }, + { + "label": "Center for Advanced Systems Understanding", + "type": "child", + "id": "https://ror.org/042b69396" + }, + { + "label": "Nationales Centrum für Tumorerkrankungen Dresden", + "type": "child", + "id": "https://ror.org/01zy07c70" + }, + { + "label": "Helmholtz Association of German Research Centres", + "type": "parent", + "id": "https://ror.org/0281dp749" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/020g0rw41.json b/v1.43/020g0rw41.json new file mode 100644 index 000000000..e6565cbc2 --- /dev/null +++ b/v1.43/020g0rw41.json @@ -0,0 +1,104 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0506 8418" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q30262248" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.463866.9" + ], + "preferred": "grid.463866.9", + "type": "grid" + } + ], + "id": "https://ror.org/020g0rw41", + "links": [ + { + "type": "website", + "value": "http://www.g-eau.fr/index.php/fr/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Gestion de l'Eau, Acteurs, Usages" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "G-EAU" + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/020q9r015.json b/v1.43/020q9r015.json new file mode 100644 index 000000000..f0485e22d --- /dev/null +++ b/v1.43/020q9r015.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": 1950, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100018939" + ], + "preferred": "100018939" + }, + { + "type": "grid", + "all": [ + "grid.466622.2" + ], + "preferred": "grid.466622.2" + }, + { + "type": "wikidata", + "all": [ + "Q30263765" + ], + "preferred": "Q30263765" + } + ], + "id": "https://ror.org/020q9r015", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cbma.com.cn" + } + ], + "names": [ + { + "value": "China Building Materials Academy Co., Ltd.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "China Building Materials Academy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中国建筑材料科学研究", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "CBMA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/020qm1538.json b/v1.43/020qm1538.json new file mode 100644 index 000000000..9948d5f0e --- /dev/null +++ b/v1.43/020qm1538.json @@ -0,0 +1,242 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1857, + "external_ids": [ + { + "all": [ + "100008134", + "100019336" + ], + "preferred": "100008134", + "type": "fundref" + }, + { + "all": [ + "grid.253552.6" + ], + "preferred": "grid.253552.6", + "type": "grid" + }, + { + "all": [ + "0000 0001 2219 4764" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q815352" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/020qm1538", + "links": [ + { + "type": "website", + "value": "http://www.calstate.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/California_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 33.76696, + "lng": -118.18923, + "name": "Long Beach" + }, + "geonames_id": 5367929 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CSU" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Cal State" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "California State University System" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal de California" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État de californie" + } + ], + "relationships": [ + { + "label": "California Maritime Academy", + "type": "child", + "id": "https://ror.org/051rrf637" + }, + { + "label": "California Polytechnic State University", + "type": "child", + "id": "https://ror.org/001gpfp45" + }, + { + "label": "California State Polytechnic University", + "type": "child", + "id": "https://ror.org/05by5hm18" + }, + { + "label": "California State University Los Angeles", + "type": "child", + "id": "https://ror.org/0294hxs80" + }, + { + "label": "California State University, Bakersfield", + "type": "child", + "id": "https://ror.org/019ts0j55" + }, + { + "label": "California State University, Channel Islands", + "type": "child", + "id": "https://ror.org/04v097707" + }, + { + "label": "California State University, Chico", + "type": "child", + "id": "https://ror.org/027bzz146" + }, + { + "label": "California State University, Dominguez Hills", + "type": "child", + "id": "https://ror.org/04pyvbw03" + }, + { + "label": "California State University, East Bay", + "type": "child", + "id": "https://ror.org/04jaeba88" + }, + { + "label": "California State University, Fresno", + "type": "child", + "id": "https://ror.org/03enmdz06" + }, + { + "label": "California State University, Fullerton", + "type": "child", + "id": "https://ror.org/02avqqw26" + }, + { + "label": "California State University, Long Beach", + "type": "child", + "id": "https://ror.org/0080fxk18" + }, + { + "label": "California State University, Monterey Bay", + "type": "child", + "id": "https://ror.org/00mjdtw98" + }, + { + "label": "California State University, Northridge", + "type": "child", + "id": "https://ror.org/005f5hv41" + }, + { + "label": "California State University, Sacramento", + "type": "child", + "id": "https://ror.org/03e26wv14" + }, + { + "label": "California State University, San Bernardino", + "type": "child", + "id": "https://ror.org/02n651896" + }, + { + "label": "California State University, San Marcos", + "type": "child", + "id": "https://ror.org/01j8e0j24" + }, + { + "label": "California State University, Stanislaus", + "type": "child", + "id": "https://ror.org/00ejm2g54" + }, + { + "label": "Humboldt State University", + "type": "child", + "id": "https://ror.org/02qt0xs84" + }, + { + "label": "Moss Landing Marine Laboratories", + "type": "child", + "id": "https://ror.org/01c8f2y33" + }, + { + "label": "San Diego State University", + "type": "child", + "id": "https://ror.org/0264fdx42" + }, + { + "label": "San Diego State University, Imperial Valley Campus", + "type": "child", + "id": "https://ror.org/048bd3118" + }, + { + "label": "San Francisco State University", + "type": "child", + "id": "https://ror.org/05ykr0121" + }, + { + "label": "San Jose State University", + "type": "child", + "id": "https://ror.org/04qyvz380" + }, + { + "label": "Sonoma State University", + "type": "child", + "id": "https://ror.org/04wjxkk25" + }, + { + "label": "Agricultural Research Institute", + "type": "child", + "id": "https://ror.org/00m98kt33" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/020rfvw83.json b/v1.43/020rfvw83.json new file mode 100644 index 000000000..7dbd333d6 --- /dev/null +++ b/v1.43/020rfvw83.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q10302791" + ], + "preferred": "Q10302791" + } + ], + "id": "https://ror.org/020rfvw83", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ics.ulisboa.pt" + }, + { + "type": "wikipedia", + "value": "https://pt.wikipedia.org/wiki/Instituto_de_Ci%C3%AAncias_Sociais_da_Universidade_de_Lisboa" + } + ], + "names": [ + { + "value": "Instituto de Ciências Sociais", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto de Ciências Sociais da Universidade de Lisboa", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institute of Social Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Lisbon Institute of Social Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ICS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Lisbon", + "type": "parent", + "id": "https://ror.org/01c27hj86" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0211r2z47.json b/v1.43/0211r2z47.json new file mode 100644 index 000000000..80ac6ce7b --- /dev/null +++ b/v1.43/0211r2z47.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.469497.1" + ], + "preferred": "grid.469497.1" + }, + { + "type": "wikidata", + "all": [ + "Q30264842" + ], + "preferred": "Q30264842" + } + ], + "id": "https://ror.org/0211r2z47", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ismo.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Institut des Sciences Moléculaires d'Orsay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Molecular Sciences of Orsay", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ISMO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/021354321.json b/v1.43/021354321.json new file mode 100644 index 000000000..8ecc8ae3f --- /dev/null +++ b/v1.43/021354321.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2800866, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6819 7604" + ], + "preferred": "0000 0004 6819 7604" + }, + { + "type": "fundref", + "all": [ + "501100011068" + ], + "preferred": "501100011068" + } + ], + "id": "https://ror.org/021354321", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fondationsaintluc.be" + } + ], + "names": [ + { + "value": "Fondation Saint-Luc", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fondation Saint Luc", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Saint Luc Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Saint-Luc Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Cliniques Universitaires Saint-Luc", + "type": "parent", + "id": "https://ror.org/03s4khd80" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/021954z67.json b/v1.43/021954z67.json new file mode 100644 index 000000000..a9bdf9930 --- /dev/null +++ b/v1.43/021954z67.json @@ -0,0 +1,112 @@ +{ + "locations": [ + { + "geonames_id": 2648108, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.45, + "lng": -2.23333, + "name": "Greater Manchester" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1089 7795" + ], + "preferred": "0000 0005 1089 7795" + }, + { + "type": "fundref", + "all": [ + "501100012358" + ], + "preferred": "501100012358" + } + ], + "id": "https://ror.org/021954z67", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://arc-gm.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Applied Research Collaboration Greater Manchester", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care Greater Manchester", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC Greater Manchester", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR Collaborations for Leadership in Applied Health Research and Care", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ARC-GM", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CLAHRC GM", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC GM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/021xexe56.json b/v1.43/021xexe56.json new file mode 100644 index 000000000..84f25b96b --- /dev/null +++ b/v1.43/021xexe56.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1927, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0623 5425" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462747.4" + ], + "preferred": "grid.462747.4" + } + ], + "id": "https://ror.org/021xexe56", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.lac.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratoire Aimé Cotton", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Aimé Cotton Laboratory", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LAC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/022dvs210.json b/v1.43/022dvs210.json new file mode 100644 index 000000000..6e7642bc8 --- /dev/null +++ b/v1.43/022dvs210.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0479 9817" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "grid.481814.0" + ], + "preferred": "grid.481814.0", + "type": "grid" + } + ], + "id": "https://ror.org/022dvs210", + "links": [ + { + "type": "website", + "value": "http://www.brc.hu/biochemistry.php?change_lang=en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 46.253, + "lng": 20.14824, + "name": "Szeged" + }, + "geonames_id": 715429 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute of Biochemistry" + }, + { + "lang": "hu", + "types": [ + "label" + ], + "value": "Biokémiai Intézet Szegedi Biológiai Kutatóközpont Magyar Tudományos Akadémia" + } + ], + "relationships": [ + { + "label": "HUN-REN Szegedi Biológiai Kutatóközpont", + "type": "parent", + "id": "https://ror.org/016gb1631" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/022fjwc94.json b/v1.43/022fjwc94.json new file mode 100644 index 000000000..ac1667a70 --- /dev/null +++ b/v1.43/022fjwc94.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1846, + "external_ids": [ + { + "all": [ + "grid.431714.4" + ], + "preferred": "grid.431714.4", + "type": "grid" + }, + { + "all": [ + "0000 0001 2294 2152" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1800537" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/022fjwc94", + "links": [ + { + "type": "website", + "value": "http://www.ctsfw.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Concordia_Theological_Seminary" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.1306, + "lng": -85.12886, + "name": "Fort Wayne" + }, + "geonames_id": 4920423 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CTSFW" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Concordia Theological Seminary" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/022pakb16.json b/v1.43/022pakb16.json new file mode 100644 index 000000000..85c344d53 --- /dev/null +++ b/v1.43/022pakb16.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3172394, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 40.85216, + "lng": 14.26811, + "name": "Naples" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/022pakb16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.create.unina.it" + } + ], + "names": [ + { + "value": "C.R.E.A.T.E. Consorzio Di Ricerca Per L'Energia E Le Applicazioni Technologiche Dell'Elettromagnetismo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Consorzio Di Ricerca Per L'Energia E Le Applicazioni Technologiche Dell'Elettromagnetismo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Consortium for Energy Research and Technological Applications of Electromagnetism", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CREATE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/022rydv31.json b/v1.43/022rydv31.json new file mode 100644 index 000000000..84d900457 --- /dev/null +++ b/v1.43/022rydv31.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2964574, + "geonames_details": { + "country_code": "IE", + "country_name": "Ireland", + "lat": 53.33306, + "lng": -6.24889, + "name": "Dublin" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0510 4503" + ], + "preferred": "0000 0004 0510 4503" + }, + { + "type": "fundref", + "all": [ + "501100012354" + ], + "preferred": "501100012354" + }, + { + "type": "wikidata", + "all": [ + "Q56278286" + ], + "preferred": "Q56278286" + } + ], + "id": "https://ror.org/022rydv31", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fisheriesireland.ie" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Inland_Fisheries_Ireland" + } + ], + "names": [ + { + "value": "Inland Fisheries Ireland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fishing in Ireland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Angling Ireland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Iascach Intíre Éireann", + "types": [ + "label" + ], + "lang": "ga" + }, + { + "value": "IFI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/023a2er20.json b/v1.43/023a2er20.json new file mode 100644 index 000000000..3f9a9d8b3 --- /dev/null +++ b/v1.43/023a2er20.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2653941, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.2, + "lng": 0.11667, + "name": "Cambridge" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100014679" + ], + "preferred": "501100014679" + } + ], + "id": "https://ror.org/023a2er20", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cruk.cam.ac.uk/research-groups/brindle-group/cancer-imaging-centre/" + } + ], + "names": [ + { + "value": "Cancer Imaging Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CRUK and EPSRC Cancer Imaging Centre in Cambridge and Manchester", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Cambridge", + "type": "parent", + "id": "https://ror.org/013meh722" + }, + { + "label": "University of Manchester", + "type": "parent", + "id": "https://ror.org/027m9bs27" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/023hj4e57.json b/v1.43/023hj4e57.json new file mode 100644 index 000000000..aadedaa1a --- /dev/null +++ b/v1.43/023hj4e57.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7677 6809" + ], + "preferred": "0000 0004 7677 6809" + } + ], + "id": "https://ror.org/023hj4e57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.barcelonabeta.org" + } + ], + "names": [ + { + "value": "Barcelonaβeta Brain Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Barcelonabeta Brain Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BBRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Barcelonaβeta Brain Research Center", + "type": "successor", + "id": "https://ror.org/03k4wdb90" + } + ], + "status": "withdrawn", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/023kaz366.json b/v1.43/023kaz366.json new file mode 100644 index 000000000..9ab611b5c --- /dev/null +++ b/v1.43/023kaz366.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3646738, + "geonames_details": { + "country_code": "VE", + "country_name": "Venezuela", + "lat": 10.48801, + "lng": -66.87919, + "name": "Caracas" + } + } + ], + "established": 1987, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5901 7747" + ], + "preferred": "0000 0004 5901 7747" + }, + { + "type": "fundref", + "all": [ + "501100004246" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.469370.f" + ], + "preferred": "grid.469370.f" + }, + { + "type": "wikidata", + "all": [ + "Q29052472" + ], + "preferred": "Q29052472" + } + ], + "id": "https://ror.org/023kaz366", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.provita.org.ve" + } + ], + "names": [ + { + "value": "Provita", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02495e989.json b/v1.43/02495e989.json new file mode 100644 index 000000000..b26595039 --- /dev/null +++ b/v1.43/02495e989.json @@ -0,0 +1,130 @@ +{ + "locations": [ + { + "geonames_id": 2792073, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.66829, + "lng": 4.61443, + "name": "Louvain-la-Neuve" + } + } + ], + "established": 1425, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2294 713X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100007355", + "100007370", + "501100005041", + "501100008135", + "501100005043" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q378134" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.7942.8" + ], + "preferred": "grid.7942.8" + } + ], + "id": "https://ror.org/02495e989", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uclouvain.be" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Universit%C3%A9_catholique_de_Louvain" + } + ], + "names": [ + { + "value": "UCLouvain", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Université catholique de Belgique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université catholique de Louvain", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Catholic University of Louvain", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UCL", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "CHU Dinant Godinne UCL Namur", + "type": "related", + "id": "https://ror.org/00ntbvq76" + }, + { + "label": "Cliniques Universitaires Saint-Luc", + "type": "related", + "id": "https://ror.org/03s4khd80" + }, + { + "label": "UCLouvain Saint-Louis Brussels", + "type": "child", + "id": "https://ror.org/02ygek028" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/024mrxd33.json b/v1.43/024mrxd33.json new file mode 100644 index 000000000..93217aa23 --- /dev/null +++ b/v1.43/024mrxd33.json @@ -0,0 +1,138 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-08-30", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1904, + "external_ids": [ + { + "all": [ + "501100000777", + "501100003466", + "501100004294" + ], + "preferred": "501100000777", + "type": "fundref" + }, + { + "all": [ + "grid.9909.9" + ], + "preferred": "grid.9909.9", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 8403" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q503424", + "Q26226240" + ], + "preferred": "Q503424", + "type": "wikidata" + } + ], + "id": "https://ror.org/024mrxd33", + "links": [ + { + "type": "website", + "value": "http://www.leeds.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Leeds" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.79648, + "lng": -1.54785, + "name": "Leeds" + }, + "geonames_id": 2644688 + } + ], + "names": [ + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Prifysgol Leeds" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Leeds" + } + ], + "relationships": [ + { + "label": "Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics", + "type": "child", + "id": "https://ror.org/047d2d387" + }, + { + "label": "Bradford Royal Infirmary", + "type": "related", + "id": "https://ror.org/01ck0pr88" + }, + { + "label": "Leeds General Infirmary", + "type": "related", + "id": "https://ror.org/04hrjej96" + }, + { + "label": "NIHR Leeds Musculoskeletal Biomedical Research Unit", + "type": "related", + "id": "https://ror.org/035f5f914" + }, + { + "label": "St James's University Hospital", + "type": "related", + "id": "https://ror.org/013s89d74" + }, + { + "label": "St. Luke's Hospital", + "type": "related", + "id": "https://ror.org/02ajrkx50" + }, + { + "label": "Timescape Surveys", + "type": "related", + "id": "https://ror.org/00mbaq869" + }, + { + "label": "United Bank of Carbon", + "type": "related", + "id": "https://ror.org/0103we012" + }, + { + "label": "Centre for Climate Change Economics and Policy", + "type": "child", + "id": "https://ror.org/03tsg3y65" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/024nr0776.json b/v1.43/024nr0776.json new file mode 100644 index 000000000..1ca867460 --- /dev/null +++ b/v1.43/024nr0776.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.466086.a" + ], + "preferred": "grid.466086.a", + "type": "grid" + }, + { + "all": [ + "0000 0001 1010 8830" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/024nr0776", + "links": [ + { + "type": "website", + "value": "http://www.katho-nrw.de/en/katho-nrw/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.93333, + "lng": 6.95, + "name": "Cologne" + }, + "geonames_id": 2886242 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Catholic University of Applied Sciences of North Rhine – Westphalia" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "KatHO NRW" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Katholische Hochschule Nordrhein-Westfalen" + } + ], + "relationships": [ + { + "label": "Deutsche Institut für angewandte Pflegeforschung e.V.", + "type": "related", + "id": "https://ror.org/02bjrmf75" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/024pk8k39.json b/v1.43/024pk8k39.json new file mode 100644 index 000000000..b348d835b --- /dev/null +++ b/v1.43/024pk8k39.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2005, + "external_ids": [ + { + "all": [ + "Q30261221" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.461578.9" + ], + "preferred": "grid.461578.9", + "type": "grid" + } + ], + "id": "https://ror.org/024pk8k39", + "links": [ + { + "type": "website", + "value": "http://www.amaliakinderziekenhuis.nl/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + }, + "geonames_id": 2750053 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Amalia Kinderziekenhuis" + } + ], + "relationships": [ + { + "label": "Radboud University Medical Center", + "type": "parent", + "id": "https://ror.org/05wg1m734" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/024z2rq82.json b/v1.43/024z2rq82.json new file mode 100644 index 000000000..3a30b4dd5 --- /dev/null +++ b/v1.43/024z2rq82.json @@ -0,0 +1,118 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1965, + "external_ids": [ + { + "all": [ + "0000 0001 2176 9917" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100003484" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q317032", + "Q2496254" + ], + "preferred": "Q317032", + "type": "wikidata" + }, + { + "all": [ + "grid.411327.2" + ], + "preferred": "grid.411327.2", + "type": "grid" + } + ], + "id": "https://ror.org/024z2rq82", + "links": [ + { + "type": "website", + "value": "http://www.uni-duesseldorf.de/home/en/home.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_D%C3%BCsseldorf" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.22172, + "lng": 6.77616, + "name": "Düsseldorf" + }, + "geonames_id": 2934246 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Heinrich Heine University Düsseldorf" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Heinrich-Heine-Universität Düsseldorf" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "HHU" + } + ], + "relationships": [ + { + "label": "Düsseldorf University Hospital", + "type": "related", + "id": "https://ror.org/006k2kk72" + }, + { + "label": "Cluster of Excellence on Plant Sciences", + "type": "child", + "id": "https://ror.org/034waa237" + }, + { + "label": "Deutsches Diabetes-Zentrum e.V.", + "type": "child", + "id": "https://ror.org/04ews3245" + }, + { + "label": "CRC183 - Entangled States of Matter", + "type": "child", + "id": "https://ror.org/015wtqn87" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/02525b202.json b/v1.43/02525b202.json new file mode 100644 index 000000000..a8ecdbf04 --- /dev/null +++ b/v1.43/02525b202.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02525b202", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.rechsand.com" + } + ], + "names": [ + { + "value": "Beijing Renchuang Technology Group Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Beijing Renchuang Technology Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Beijing Renchuang Technology Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Beijing Renchuang Technology Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Beijing Renchuang Technology Group Company Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "北京仁创科技集团有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0259fwx54.json b/v1.43/0259fwx54.json new file mode 100644 index 000000000..5e5881c1c --- /dev/null +++ b/v1.43/0259fwx54.json @@ -0,0 +1,117 @@ +{ + "locations": [ + { + "geonames_id": 2886242, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.93333, + "lng": 6.95, + "name": "Cologne" + } + } + ], + "established": 1973, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2167 4053" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1204536" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.461646.7" + ], + "preferred": "grid.461646.7" + } + ], + "id": "https://ror.org/0259fwx54", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.zbmed.de" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/German_National_Library_of_Medicine" + } + ], + "names": [ + { + "value": "ZB MED - Information Centre for Life Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "German National Library of Medicine (ZB MED) - Information Centre for Life Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Deutsche Zentralbibliothek für Medizin (ZB MED) - Informationszentrum Lebenswissenschaften", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "German National Library of Medicine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Deutsche Zentralbibliothek für Medizin", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ZBMED - Informationszentrum Lebenswissenschaften", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "ZB MED", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/025dmzr60.json b/v1.43/025dmzr60.json new file mode 100644 index 000000000..473a12d20 --- /dev/null +++ b/v1.43/025dmzr60.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 4177887, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 26.71534, + "lng": -80.05337, + "name": "West Palm Beach" + } + } + ], + "established": 1903, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0508 0660" + ], + "preferred": "0000 0004 0508 0660" + }, + { + "type": "wikidata", + "all": [ + "Q4743883" + ], + "preferred": "Q4743883" + } + ], + "id": "https://ror.org/025dmzr60", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.theaga.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/American_Genetic_Association" + } + ], + "names": [ + { + "value": "American Genetic Association", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AGA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/025ecp212.json b/v1.43/025ecp212.json new file mode 100644 index 000000000..5de1ebaa7 --- /dev/null +++ b/v1.43/025ecp212.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2004, + "external_ids": [ + { + "all": [ + "100011417" + ], + "preferred": "100011417", + "type": "fundref" + }, + { + "all": [ + "grid.451398.2" + ], + "preferred": "grid.451398.2", + "type": "grid" + } + ], + "id": "https://ror.org/025ecp212", + "links": [ + { + "type": "website", + "value": "http://www.ukcrc.org/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "UK Clinical Research Collaboration" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UKCRC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "United Kingdom Clinical Research Collaboration" + } + ], + "relationships": [ + { + "label": "Communicating Diet and Activity Research", + "type": "related", + "id": "https://ror.org/05tamah23" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/025r5qe02.json b/v1.43/025r5qe02.json new file mode 100644 index 000000000..cf7c6c611 --- /dev/null +++ b/v1.43/025r5qe02.json @@ -0,0 +1,125 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-06-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1870, + "external_ids": [ + { + "all": [ + "100007126", + "100008568" + ], + "preferred": "100007126", + "type": "fundref" + }, + { + "all": [ + "grid.264484.8" + ], + "preferred": "grid.264484.8", + "type": "grid" + }, + { + "all": [ + "0000 0001 2189 1568" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q617433" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/025r5qe02", + "links": [ + { + "type": "website", + "value": "http://www.syr.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Syracuse_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.04812, + "lng": -76.14742, + "name": "Syracuse" + }, + "geonames_id": 5140405 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Syracuse University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de Siracusa" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de syracuse" + } + ], + "relationships": [ + { + "label": "Qualitative Data Repository", + "type": "child", + "id": "https://ror.org/014trz974" + }, + { + "label": "Syracuse VA Medical Center", + "type": "related", + "id": "https://ror.org/0332k3m42" + }, + { + "label": "Hubbard Brook Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/00mkh7345" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/0262br971.json b/v1.43/0262br971.json new file mode 100644 index 000000000..99515a740 --- /dev/null +++ b/v1.43/0262br971.json @@ -0,0 +1,87 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 0455 2011" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q30261417" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.462283.9" + ], + "preferred": "grid.462283.9", + "type": "grid" + } + ], + "id": "https://ror.org/0262br971", + "links": [ + { + "type": "website", + "value": "https://umr-innovation.cirad.fr/en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Innovation and Development in Agriculture and Food" + } + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/026z37f85.json b/v1.43/026z37f85.json new file mode 100644 index 000000000..53a93b808 --- /dev/null +++ b/v1.43/026z37f85.json @@ -0,0 +1,94 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q9077957" + ], + "preferred": "Q9077957" + } + ], + "id": "https://ror.org/026z37f85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.sanidad.gob.es/organizacion/sns/home.htm" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Spanish_National_Health_System" + } + ], + "names": [ + { + "value": "Sistema Nacional de Salud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Sistema Nacional de Salud de España", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spanish National Health System", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Health System of Spain", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Instituto Nacional de la Salud", + "type": "predecessor", + "id": "https://ror.org/04t4b6y41" + }, + { + "label": "Ministry of Health", + "type": "parent", + "id": "https://ror.org/00y6q9n79" + } + ], + "status": "active", + "types": [ + "government", + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/027620g33.json b/v1.43/027620g33.json new file mode 100644 index 000000000..614fbf359 --- /dev/null +++ b/v1.43/027620g33.json @@ -0,0 +1,62 @@ +{ + "locations": [ + { + "geonames_id": 3173435, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + } + } + ], + "established": 1994, + "external_ids": [], + "id": "https://ror.org/027620g33", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fondazionebassetti.org" + } + ], + "names": [ + { + "value": "Fondazione Giannino Bassetti", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FGB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Globus et Locus", + "type": "related", + "id": "https://ror.org/01ym3w380" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/027a33v57.json b/v1.43/027a33v57.json new file mode 100644 index 000000000..b8d9771b6 --- /dev/null +++ b/v1.43/027a33v57.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1906, + "external_ids": [ + { + "all": [ + "0000 0004 0399 5138" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q22909562" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.415174.2" + ], + "preferred": "grid.415174.2", + "type": "grid" + } + ], + "id": "https://ror.org/027a33v57", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/university-of-bristol-dental-hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Bristol_Dental_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University Of Bristol Dental Hospital" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/027jsza11.json b/v1.43/027jsza11.json new file mode 100644 index 000000000..bd58482f6 --- /dev/null +++ b/v1.43/027jsza11.json @@ -0,0 +1,97 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1981, + "external_ids": [ + { + "all": [ + "100018263" + ], + "preferred": "100018263", + "type": "fundref" + }, + { + "all": [ + "grid.412834.8" + ], + "preferred": "grid.412834.8", + "type": "grid" + }, + { + "all": [ + "0000 0000 9152 1805" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7928229", + "Q6734116", + "Q30633403" + ], + "preferred": "Q7928229", + "type": "wikidata" + } + ], + "id": "https://ror.org/027jsza11", + "links": [ + { + "type": "website", + "value": "http://www.vidyasagar.ac.in/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Vidyasagar_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 22.42114, + "lng": 87.32257, + "name": "Medinīpur" + }, + "geonames_id": 1263220 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Vidyasagar University" + }, + { + "lang": "bn", + "types": [ + "label" + ], + "value": "বিদ্যাসাগর বিশ্ববিদ্যালয়" + } + ], + "relationships": [ + { + "label": "Panskura Banamali College", + "type": "related", + "id": "https://ror.org/01hn2pk88" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/027m9bs27.json b/v1.43/027m9bs27.json new file mode 100644 index 000000000..42e6497ac --- /dev/null +++ b/v1.43/027m9bs27.json @@ -0,0 +1,186 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1824, + "external_ids": [ + { + "all": [ + "501100000770", + "100007545", + "100007546", + "501100000584", + "501100006628", + "100012371" + ], + "preferred": "501100000770", + "type": "fundref" + }, + { + "all": [ + "grid.5379.8" + ], + "preferred": "grid.5379.8", + "type": "grid" + }, + { + "all": [ + "0000 0001 2166 2407" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q230899" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/027m9bs27", + "links": [ + { + "type": "website", + "value": "http://www.manchester.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Manchester" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.48095, + "lng": -2.23743, + "name": "Manchester" + }, + "geonames_id": 2643123 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Manchester University" + }, + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Prifysgol Manceinion" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Manchester" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Manchester Institute of Science and Technology" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Victoria University of Manchester" + } + ], + "relationships": [ + { + "label": "Manchester School of Architecture", + "type": "child", + "id": "https://ror.org/03xxxrq06" + }, + { + "label": "Wellcome Centre for Cell-Matrix Research", + "type": "child", + "id": "https://ror.org/0094tm228" + }, + { + "label": "Centre for Epidemiology Versus Arthritis", + "type": "child", + "id": "https://ror.org/05eev2q71" + }, + { + "label": "Lancashire Teaching Hospitals NHS Foundation Trust", + "type": "related", + "id": "https://ror.org/02j7n9748" + }, + { + "label": "Manchester Royal Eye Hospital", + "type": "related", + "id": "https://ror.org/04xtpk854" + }, + { + "label": "Manchester Royal Infirmary", + "type": "related", + "id": "https://ror.org/03kr30n36" + }, + { + "label": "Manchester University NHS Foundation Trust", + "type": "related", + "id": "https://ror.org/00he80998" + }, + { + "label": "North Manchester General Hospital", + "type": "related", + "id": "https://ror.org/02xesw687" + }, + { + "label": "Royal Manchester Children's Hospital", + "type": "related", + "id": "https://ror.org/052vjje65" + }, + { + "label": "Salford Royal Hospital", + "type": "related", + "id": "https://ror.org/027rkpb34" + }, + { + "label": "Trafford General Hospital", + "type": "related", + "id": "https://ror.org/02snwfx66" + }, + { + "label": "University Dental Hospital of Manchester", + "type": "related", + "id": "https://ror.org/019bxes45" + }, + { + "label": "Cancer Research UK Manchester Centre", + "type": "child", + "id": "https://ror.org/033svsm10" + }, + { + "label": "Cancer Imaging Centre", + "type": "child", + "id": "https://ror.org/023a2er20" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/027t90e82.json b/v1.43/027t90e82.json new file mode 100644 index 000000000..764da1cb9 --- /dev/null +++ b/v1.43/027t90e82.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 620127, + "geonames_details": { + "country_code": "BY", + "country_name": "Belarus", + "lat": 55.1904, + "lng": 30.2049, + "name": "Vitebsk" + } + } + ], + "established": 1924, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5928 8379" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q4112332" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.445309.f" + ], + "preferred": "grid.445309.f" + } + ], + "id": "https://ror.org/027t90e82", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vsavm.by" + } + ], + "names": [ + { + "value": "Vitebsk State Academy of Veterinary Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Віцебская дзяржаўная акадэмія ветэрынарнай медыцыны", + "types": [ + "label" + ], + "lang": "be" + }, + { + "value": "VGAVM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/027yspv17.json b/v1.43/027yspv17.json new file mode 100644 index 000000000..2adeaad95 --- /dev/null +++ b/v1.43/027yspv17.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3109718, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.46472, + "lng": -3.80444, + "name": "Santander" + } + } + ], + "established": 1973, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30292337" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.438705.d" + ], + "preferred": "grid.438705.d" + } + ], + "id": "https://ror.org/027yspv17", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.tinamenor.es/" + } + ], + "names": [ + { + "value": "Tinamenor (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02805zw73.json b/v1.43/02805zw73.json new file mode 100644 index 000000000..09c0099f1 --- /dev/null +++ b/v1.43/02805zw73.json @@ -0,0 +1,73 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-06-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1875, + "external_ids": [ + { + "all": [ + "grid.459275.8" + ], + "preferred": "grid.459275.8", + "type": "grid" + } + ], + "id": "https://ror.org/02805zw73", + "links": [ + { + "type": "website", + "value": "http://www.csss-iugs.ca/details-article-hitorique/detail/2008-11-24/d-youville-le-premier-hopital-de-sherbrooke" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.40008, + "lng": -71.89908, + "name": "Sherbrooke" + }, + "geonames_id": 6146143 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hôpital d'Youville de Sherbrooke" + } + ], + "relationships": [ + { + "label": "Centre intégré de santé et de services sociaux de Chaudière-Appalaches", + "type": "parent", + "id": "https://ror.org/05ghbjx71" + }, + { + "label": "Cégep Beauce-Appalaches", + "type": "child", + "id": "https://ror.org/05sz3st37" + }, + { + "label": "Cégep Beauce-Appalaches", + "type": "parent", + "id": "https://ror.org/05sz3st37" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/028696h48.json b/v1.43/028696h48.json new file mode 100644 index 000000000..e2b6481b3 --- /dev/null +++ b/v1.43/028696h48.json @@ -0,0 +1,72 @@ +{ + "locations": [ + { + "geonames_id": 2761369, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.20849, + "lng": 16.37208, + "name": "Vienna" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/028696h48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bioimaging-austria.at" + } + ], + "names": [ + { + "value": "Austrian BioImaging/CMI", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Austrian BioImaging Correlated Multimodal Imaging (CMI)", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Vienna BioCenter Core Facilities", + "type": "parent", + "id": "https://ror.org/01w64ht88" + }, + { + "label": "Euro-BioImaging ERIC", + "type": "related", + "id": "https://ror.org/05d78xc36" + }, + { + "label": "Medical University of Vienna", + "type": "related", + "id": "https://ror.org/05n3x4p02" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0289cxp23.json b/v1.43/0289cxp23.json new file mode 100644 index 000000000..e60e2ffda --- /dev/null +++ b/v1.43/0289cxp23.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2510409, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.8581, + "lng": -4.02263, + "name": "Toledo" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1795 0563" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.413514.6" + ], + "preferred": "grid.413514.6" + } + ], + "id": "https://ror.org/0289cxp23", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cht.es/cht/cm/cht/tkContent?pgseed=1493207263184&idContent=6060&locale=es_ES&textOnly=false" + } + ], + "names": [ + { + "value": "Hospital Virgen de la Salud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CHT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Complejo Hospitalario Universitario de Toledo", + "type": "parent", + "id": "https://ror.org/04q4ppz72" + }, + { + "label": "Hospital Universitario de Toledo", + "type": "successor", + "id": "https://ror.org/00wxgxz56" + } + ], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/028rypz17.json b/v1.43/028rypz17.json new file mode 100644 index 000000000..980cb3a45 --- /dev/null +++ b/v1.43/028rypz17.json @@ -0,0 +1,134 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1971, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2171 2558" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100007486" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1480643" + ], + "preferred": "Q1480643" + }, + { + "type": "grid", + "all": [ + "grid.5842.b" + ], + "preferred": "grid.5842.b" + } + ], + "id": "https://ror.org/028rypz17", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.u-psud.fr/en/index.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Paris-Sud" + } + ], + "names": [ + { + "value": "University of Paris-Sud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Paris XI", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université Paris-Sud", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "Universitat de París Sud", + "types": [ + "label" + ], + "lang": "ca" + } + ], + "relationships": [ + { + "label": "Hôpital Marie Lannelongue", + "type": "related", + "id": "https://ror.org/02ndr3r66" + }, + { + "label": "Biology of Extremophiles Laboratory", + "type": "child", + "id": "https://ror.org/036mest28" + }, + { + "label": "Stabilité génétique et oncogenèse", + "type": "child", + "id": "https://ror.org/055s8hs34" + }, + { + "label": "Geosciences Paris Sud", + "type": "child", + "id": "https://ror.org/03s92mv58" + }, + { + "label": "Laboratory Signaling and Cardiovascular Pathophysiology", + "type": "child", + "id": "https://ror.org/04bkzce69" + }, + { + "label": "University of Paris-Saclay", + "type": "successor", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "inactive", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/028vrr082.json b/v1.43/028vrr082.json new file mode 100644 index 000000000..d30b438fb --- /dev/null +++ b/v1.43/028vrr082.json @@ -0,0 +1,98 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1911, + "external_ids": [ + { + "all": [ + "100007246", + "100009870", + "100005150" + ], + "preferred": "100007246", + "type": "fundref" + }, + { + "all": [ + "grid.467419.9" + ], + "preferred": "grid.467419.9", + "type": "grid" + }, + { + "all": [ + "Q695087" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/028vrr082", + "links": [ + { + "type": "website", + "value": "http://www.mars.com/global/index.aspx" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Mars,_Incorporated" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.93428, + "lng": -77.17748, + "name": "McLean" + }, + "geonames_id": 4772354 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Mars (United States)" + } + ], + "relationships": [ + { + "label": "Mars (France)", + "type": "child", + "id": "https://ror.org/01b1e4b88" + }, + { + "label": "Mars (United Kingdom)", + "type": "child", + "id": "https://ror.org/01qa19b44" + }, + { + "label": "Wisdom Health (United States)", + "type": "child", + "id": "https://ror.org/02538qk16" + }, + { + "label": "Waltham Centre for Pet Nutrition", + "type": "child", + "id": "https://ror.org/00p7f7z86" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/029gxzx35.json b/v1.43/029gxzx35.json new file mode 100644 index 000000000..24d4cf0bc --- /dev/null +++ b/v1.43/029gxzx35.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3002650, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.78889, + "lng": 2.27078, + "name": "Le Plessis-Robinson" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0266 7990" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.417823.b" + ], + "preferred": "grid.417823.b" + } + ], + "id": "https://ror.org/029gxzx35", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ccml.fr/en/index_en.php" + } + ], + "names": [ + { + "value": "Centre Chirurgical Marie Lannelongue", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CCML", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02a2pkk25.json b/v1.43/02a2pkk25.json new file mode 100644 index 000000000..4bde04206 --- /dev/null +++ b/v1.43/02a2pkk25.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02a2pkk25", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.forum-transregionale-studien.de" + } + ], + "names": [ + { + "value": "Forum transregionale Studien e.V.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Forum transregionale Studien", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Forum for Transregional Studies", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02a37a132.json b/v1.43/02a37a132.json new file mode 100644 index 000000000..bc79161f6 --- /dev/null +++ b/v1.43/02a37a132.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1248991, + "geonames_details": { + "country_code": "LK", + "country_name": "Sri Lanka", + "lat": 6.93548, + "lng": 79.84868, + "name": "Colombo" + } + } + ], + "established": 2000, + "external_ids": [], + "id": "https://ror.org/02a37a132", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://icbt.lk" + } + ], + "names": [ + { + "value": "International College of Business and Technology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "International College of Business & Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ICBT Campus", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ICBT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02ackr434.json b/v1.43/02ackr434.json new file mode 100644 index 000000000..bee094421 --- /dev/null +++ b/v1.43/02ackr434.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 4931972, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.3751, + "lng": -71.10561, + "name": "Cambridge" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0599 7276" + ], + "preferred": "0000 0004 0599 7276" + }, + { + "type": "wikidata", + "all": [ + "Q19604401" + ], + "preferred": "Q19604401" + }, + { + "type": "fundref", + "all": [ + "100019714" + ], + "preferred": "100019714" + } + ], + "id": "https://ror.org/02ackr434", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.foundationmedicine.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Foundation_Medicine" + } + ], + "names": [ + { + "value": "Foundation Medicine (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Foundation Medicine", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Roche (Switzerland)", + "type": "parent", + "id": "https://ror.org/00by1q217" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02ag0aq56.json b/v1.43/02ag0aq56.json new file mode 100644 index 000000000..763d3dfdf --- /dev/null +++ b/v1.43/02ag0aq56.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2509402, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 38.61365, + "lng": -1.11468, + "name": "Yecla" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8337 666X" + ], + "preferred": "0000 0004 8337 666X" + }, + { + "type": "grid", + "all": [ + "grid.432405.4" + ], + "preferred": "grid.432405.4" + } + ], + "id": "https://ror.org/02ag0aq56", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cetem.es" + } + ], + "names": [ + { + "value": "Centro Tecnológico del Mueble y la Madera de la Región de Murcia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Technological Centre of Furniture and Wood of the Region of Murcia", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CETEM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02ahxdd04.json b/v1.43/02ahxdd04.json new file mode 100644 index 000000000..8d071e5aa --- /dev/null +++ b/v1.43/02ahxdd04.json @@ -0,0 +1,120 @@ +{ + "locations": [ + { + "geonames_id": 4994358, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.96336, + "lng": -85.66809, + "name": "Grand Rapids" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0406 3236" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100001347" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q7575297" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.416230.2" + ], + "preferred": "grid.416230.2" + } + ], + "id": "https://ror.org/02ahxdd04", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.spectrumhealth.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Spectrum_Health" + } + ], + "names": [ + { + "value": "Spectrum Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spectrum Health System", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Corewell Health Butterworth Hospital", + "type": "child", + "id": "https://ror.org/05x643e19" + }, + { + "label": "Helen DeVos Children's Hospital", + "type": "child", + "id": "https://ror.org/03bk8p931" + }, + { + "label": "Corewell Health Blodgett Hospital", + "type": "child", + "id": "https://ror.org/00qy68j92" + }, + { + "label": "Corewell Health Reed City Hospital", + "type": "child", + "id": "https://ror.org/04xcq9q51" + }, + { + "label": "Corewell Health Zeeland Hospital", + "type": "child", + "id": "https://ror.org/053jm8142" + }, + { + "label": "Corewell Health", + "type": "successor", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02aj13c28.json b/v1.43/02aj13c28.json new file mode 100644 index 000000000..462d91d8b --- /dev/null +++ b/v1.43/02aj13c28.json @@ -0,0 +1,94 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2009, + "external_ids": [ + { + "all": [ + "100013110" + ], + "preferred": "100013110", + "type": "fundref" + }, + { + "all": [ + "grid.424048.e" + ], + "preferred": "grid.424048.e", + "type": "grid" + }, + { + "all": [ + "0000 0001 1090 3682" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q314578", + "Q316122" + ], + "preferred": "Q314578", + "type": "wikidata" + } + ], + "id": "https://ror.org/02aj13c28", + "links": [ + { + "type": "website", + "value": "https://www.helmholtz-berlin.de/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Helmholtz-Zentrum_Berlin" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + }, + "geonames_id": 2950159 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Helmholtz-Zentrum Berlin für Materialien und Energie" + } + ], + "relationships": [ + { + "label": "Helmholtz Association of German Research Centres", + "type": "parent", + "id": "https://ror.org/0281dp749" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/02am8se85.json b/v1.43/02am8se85.json new file mode 100644 index 000000000..bec100374 --- /dev/null +++ b/v1.43/02am8se85.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2859147, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.25, + "lng": 11.56667, + "name": "Oberschleißheim" + } + } + ], + "established": 1979, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.506439.d" + ], + "preferred": "grid.506439.d" + } + ], + "id": "https://ror.org/02am8se85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.schweine.vetmed.uni-muenchen.de/index.html" + } + ], + "names": [ + { + "value": "Klinik für Schweine", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Zentrum für Klinische Tiermedizin", + "type": "parent", + "id": "https://ror.org/02qqvpd39" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02aqatz67.json b/v1.43/02aqatz67.json new file mode 100644 index 000000000..f712847d9 --- /dev/null +++ b/v1.43/02aqatz67.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 1790492, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 27.85, + "lng": 112.9, + "name": "Xiangtan" + } + } + ], + "established": 1936, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6844 1494" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q55454149" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.497222.8" + ], + "preferred": "grid.497222.8" + } + ], + "id": "https://ror.org/02aqatz67", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.xemc.com.cn" + } + ], + "names": [ + { + "value": "Xiangtan Electric Manufacturing Group (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Xiangtan Electric Manufacturing Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Xiangtan Electric Manufacturing Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Xiangtan Electric Manufacturing Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "湘电集团", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "湘潭电机股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "XEMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02aqsxs83.json b/v1.43/02aqsxs83.json new file mode 100644 index 000000000..69e5fb7e6 --- /dev/null +++ b/v1.43/02aqsxs83.json @@ -0,0 +1,131 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-09-14", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1890, + "external_ids": [ + { + "all": [ + "100007926", + "100008937", + "100008271", + "100013827" + ], + "preferred": "100007926", + "type": "fundref" + }, + { + "all": [ + "grid.266900.b" + ], + "preferred": "grid.266900.b", + "type": "grid" + }, + { + "all": [ + "0000 0004 0447 0018" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q640652", + "Q39056078" + ], + "preferred": "Q640652", + "type": "wikidata" + } + ], + "id": "https://ror.org/02aqsxs83", + "links": [ + { + "type": "website", + "value": "http://www.ou.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Oklahoma" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 35.22257, + "lng": -97.43948, + "name": "Norman" + }, + "geonames_id": 4543762 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UO" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de Oklahoma" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Oklahoma" + } + ], + "relationships": [ + { + "label": "Oklahoma Space Grant Consortium", + "type": "child", + "id": "https://ror.org/020xgge28" + }, + { + "label": "South Central Climate Adaptation Science Center", + "type": "child", + "id": "https://ror.org/05066y189" + }, + { + "label": "Oklahoma City VA Medical Center", + "type": "related", + "id": "https://ror.org/010md9d18" + }, + { + "label": "University of Oklahoma Health Sciences Center", + "type": "related", + "id": "https://ror.org/0457zbj98" + }, + { + "label": "University of Oklahoma Medical Center", + "type": "related", + "id": "https://ror.org/01w8whh21" + }, + { + "label": "University of Oklahoma - Tulsa", + "type": "child", + "id": "https://ror.org/04g1a0w27" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/02aswte26.json b/v1.43/02aswte26.json new file mode 100644 index 000000000..7c1ccb864 --- /dev/null +++ b/v1.43/02aswte26.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1860, + "external_ids": [ + { + "all": [ + "grid.449071.f" + ], + "preferred": "grid.449071.f", + "type": "grid" + }, + { + "all": [ + "0000 0004 0445 3429" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q6747552" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02aswte26", + "links": [ + { + "type": "website", + "value": "http://www.manchester.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Manchester_University_(Indiana)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.1306, + "lng": -85.12886, + "name": "Fort Wayne" + }, + "geonames_id": 4920423 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MU" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Manchester College" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Manchester University" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/02avhnb77.json b/v1.43/02avhnb77.json new file mode 100644 index 000000000..348c6416f --- /dev/null +++ b/v1.43/02avhnb77.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-11", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1967, + "external_ids": [ + { + "all": [ + "100013537" + ], + "preferred": "100013537", + "type": "fundref" + }, + { + "all": [ + "grid.431949.2" + ], + "preferred": "grid.431949.2", + "type": "grid" + }, + { + "all": [ + "0000 0004 0379 4459" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1335379" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02avhnb77", + "links": [ + { + "type": "website", + "value": "https://www.emeraldgrouppublishing.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Emerald_Group_Publishing" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.84861, + "lng": -1.83857, + "name": "Bingley" + }, + "geonames_id": 2655642 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Emerald Group Publishing (United Kingdom)" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "MCB UP Ltd" + } + ], + "relationships": [ + { + "label": "The Emerald Foundation", + "type": "child", + "id": "https://ror.org/031tb8x29" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/02b42av24.json b/v1.43/02b42av24.json new file mode 100644 index 000000000..11ad3e5c5 --- /dev/null +++ b/v1.43/02b42av24.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 601294, + "geonames_details": { + "country_code": "UZ", + "country_name": "Uzbekistan", + "lat": 42.45306, + "lng": 59.61028, + "name": "Nukus" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/02b42av24", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://tdaunukus.uz" + } + ], + "names": [ + { + "value": "Institute of Agriculture and Agrotechnologies of Karakalpakstan", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Karakalpak Institute of Agriculture and Agrotechnologies", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Институт сельского хозяйства и агротехнологий Каракалпакстана", + "types": [ + "label" + ], + "lang": "ru" + }, + { + "value": "Qoraqalpog'iston qishloq xo'jaligi va agrotexnologiyalar instituti", + "types": [ + "label" + ], + "lang": "uz" + }, + { + "value": "Qaraqalpaqstan awıl xojalıǵı hám agrotexnologiyalar institutı", + "types": [ + "label" + ], + "lang": "tt" + }, + { + "value": "IAAK", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02bf8e216.json b/v1.43/02bf8e216.json new file mode 100644 index 000000000..315cb7784 --- /dev/null +++ b/v1.43/02bf8e216.json @@ -0,0 +1,74 @@ +{ + "locations": [ + { + "geonames_id": 3435910, + "geonames_details": { + "country_code": "AR", + "country_name": "Argentina", + "lat": -34.61315, + "lng": -58.37723, + "name": "Buenos Aires" + } + } + ], + "established": 2007, + "external_ids": [], + "id": "https://ror.org/02bf8e216", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.editorialteseo.com" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Editorial_Teseo" + } + ], + "names": [ + { + "value": "Teseo (Argentina)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Editorial Teseo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TeseoPress", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Teseo", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02bjrmf75.json b/v1.43/02bjrmf75.json new file mode 100644 index 000000000..9ee98da9d --- /dev/null +++ b/v1.43/02bjrmf75.json @@ -0,0 +1,76 @@ +{ + "locations": [ + { + "geonames_id": 2886242, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.93333, + "lng": 6.95, + "name": "Cologne" + } + } + ], + "established": 1999, + "external_ids": [], + "id": "https://ror.org/02bjrmf75", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.dip.de" + } + ], + "names": [ + { + "value": "Deutsche Institut für angewandte Pflegeforschung e.V.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Deutsche Institut für angewandte Pflegeforschung", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "German Institute of Applied Nursing Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DIP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Catholic University of Applied Sciences of North Rhine – Westphalia", + "type": "related", + "id": "https://ror.org/024nr0776" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02by8jy67.json b/v1.43/02by8jy67.json new file mode 100644 index 000000000..d02832a47 --- /dev/null +++ b/v1.43/02by8jy67.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3435910, + "geonames_details": { + "country_code": "AR", + "country_name": "Argentina", + "lat": -34.61315, + "lng": -58.37723, + "name": "Buenos Aires" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.502315.0" + ], + "preferred": "grid.502315.0" + }, + { + "type": "wikidata", + "all": [ + "Q61931966" + ], + "preferred": "Q61931966" + } + ], + "id": "https://ror.org/02by8jy67", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.typa.org.ar" + } + ], + "names": [ + { + "value": "Fundación TyPA", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Teoría y Práctica de las Artes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TyPA Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02byv2846.json b/v1.43/02byv2846.json new file mode 100644 index 000000000..aaf5c165b --- /dev/null +++ b/v1.43/02byv2846.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 9697" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463850.c" + ], + "preferred": "grid.463850.c" + } + ], + "id": "https://ror.org/02byv2846", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.fast.u-psud.fr" + } + ], + "names": [ + { + "value": "Fluides, Automatique et Systèmes Thermiques", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FAST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02caz1f24.json b/v1.43/02caz1f24.json new file mode 100644 index 000000000..c5fb62fae --- /dev/null +++ b/v1.43/02caz1f24.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1832, + "external_ids": [ + { + "all": [ + "501100000374" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.431398.4" + ], + "preferred": "grid.431398.4", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 8489" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q919715" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02caz1f24", + "links": [ + { + "type": "website", + "value": "http://bma.org.uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/British_Medical_Association" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BMA" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "British Medical Association" + } + ], + "relationships": [ + { + "label": "BMJ Publishing Group (United Kingdom)", + "type": "child", + "id": "https://ror.org/05m5x8198" + }, + { + "label": "BMA Foundation for Medical Research", + "type": "child", + "id": "https://ror.org/03hvdbf98" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/v1.43/02cc3ss06.json b/v1.43/02cc3ss06.json new file mode 100644 index 000000000..65f65edec --- /dev/null +++ b/v1.43/02cc3ss06.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0630 7561" + ], + "preferred": "0000 0005 0630 7561" + }, + { + "type": "fundref", + "all": [ + "501100022111" + ], + "preferred": "501100022111" + } + ], + "id": "https://ror.org/02cc3ss06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://huofamilyfoundation.org" + } + ], + "names": [ + { + "value": "Huo Family Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02chvqy57.json b/v1.43/02chvqy57.json new file mode 100644 index 000000000..4c243e26f --- /dev/null +++ b/v1.43/02chvqy57.json @@ -0,0 +1,106 @@ +{ + "locations": [ + { + "geonames_id": 2972315, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.60426, + "lng": 1.44367, + "name": "Toulouse" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0384 4620" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q51782431" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503277.4" + ], + "preferred": "grid.503277.4" + } + ], + "id": "https://ror.org/02chvqy57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.legos.omp.eu" + } + ], + "names": [ + { + "value": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory of Space Geophysical and Oceanographic Studies", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LEGOS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Centre National d'Études Spatiales", + "type": "parent", + "id": "https://ror.org/04h1h0y33" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Université Toulouse III - Paul Sabatier", + "type": "parent", + "id": "https://ror.org/02v6kpv12" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02cptmd52.json b/v1.43/02cptmd52.json new file mode 100644 index 000000000..db1d6bdbf --- /dev/null +++ b/v1.43/02cptmd52.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q51785613" + ], + "preferred": "Q51785613" + } + ], + "id": "https://ror.org/02cptmd52", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://agronomie.versailles-grignon.hub.inrae.fr" + } + ], + "names": [ + { + "value": "Agronomie", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02cq2e244.json b/v1.43/02cq2e244.json new file mode 100644 index 000000000..3126a4714 --- /dev/null +++ b/v1.43/02cq2e244.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 5327684, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.87159, + "lng": -122.27275, + "name": "Berkeley" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2299 1026" + ], + "preferred": "0000 0001 2299 1026" + }, + { + "type": "fundref", + "all": [ + "100012597" + ], + "preferred": "100012597" + } + ], + "id": "https://ror.org/02cq2e244", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://peer.berkeley.edu" + } + ], + "names": [ + { + "value": "Pacific Earthquake Engineering Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "UC Berkeley Pacific Earthquake Engineering Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of California Berkeley Pacific Earthquake Engineering Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PEER", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "UCB PEER", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of California, Berkeley", + "type": "parent", + "id": "https://ror.org/01an7q238" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02cr20t12.json b/v1.43/02cr20t12.json new file mode 100644 index 000000000..869e1e8c9 --- /dev/null +++ b/v1.43/02cr20t12.json @@ -0,0 +1,110 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1712, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q750403" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.432858.0" + ], + "preferred": "grid.432858.0" + } + ], + "id": "https://ror.org/02cr20t12", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bne.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Biblioteca_Nacional_de_Espa%C3%B1a" + } + ], + "names": [ + { + "value": "Biblioteca Nacional de España", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Palace Public Library", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biblioteca Pública de Palacio", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Biblioteca Nacional d'Espanya", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Espainiako Liburutegi Nazionala", + "types": [ + "label" + ], + "lang": "eu" + }, + { + "value": "National Library of Spain", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "BNE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02cte4b68.json b/v1.43/02cte4b68.json new file mode 100644 index 000000000..91ebb6bc4 --- /dev/null +++ b/v1.43/02cte4b68.json @@ -0,0 +1,596 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0626 358X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100017217" + ], + "preferred": "501100017217" + }, + { + "type": "wikidata", + "all": [ + "Q3152386" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457012.5" + ], + "preferred": "grid.457012.5" + } + ], + "id": "https://ror.org/02cte4b68", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/inc/index.htm" + } + ], + "names": [ + { + "value": "Institut de Chimie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "CNRT Matériaux", + "type": "child", + "id": "https://ror.org/05jw85995" + }, + { + "label": "Catalysis and Spectrochemistry Laboratory", + "type": "child", + "id": "https://ror.org/01gan4k05" + }, + { + "label": "Centre de Recherches sur les Macromolécules Végétales", + "type": "child", + "id": "https://ror.org/0003ege03" + }, + { + "label": "Ceramic Synthesis and Functionalization Laboratory", + "type": "child", + "id": "https://ror.org/04nd4kk51" + }, + { + "label": "Chemistry And Interdisciplinarité, Synthesis, Analyze, Modeling", + "type": "child", + "id": "https://ror.org/04ysg2a58" + }, + { + "label": "Chimie de la Matière Condensée de Paris", + "type": "child", + "id": "https://ror.org/028ta1f94" + }, + { + "label": "Chimie et Biologie des Membranes et des Nanoobjects", + "type": "child", + "id": "https://ror.org/03jtzcc30" + }, + { + "label": "Conditions Extrêmes et Matériaux Haute Température et Irradiation", + "type": "child", + "id": "https://ror.org/02zs48f23" + }, + { + "label": "Département de Chimie Moléculaire", + "type": "child", + "id": "https://ror.org/010rs2a38" + }, + { + "label": "East Paris Institute of Chemistry and Materials Science", + "type": "child", + "id": "https://ror.org/04c3cen15" + }, + { + "label": "Gulliver", + "type": "child", + "id": "https://ror.org/058z3vf87" + }, + { + "label": "Institut Charles Gerhardt", + "type": "child", + "id": "https://ror.org/028wq3277" + }, + { + "label": "Institut Charles Sadron", + "type": "child", + "id": "https://ror.org/05whrjc31" + }, + { + "label": "Institut Européen de Chimie et Biologie", + "type": "child", + "id": "https://ror.org/04agqs597" + }, + { + "label": "Institut Européen des Membranes", + "type": "child", + "id": "https://ror.org/04nmj9827" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut Jean Lamour", + "type": "child", + "id": "https://ror.org/05k1smh27" + }, + { + "label": "Institut Lavoisier de Versailles", + "type": "child", + "id": "https://ror.org/05mzd8v39" + }, + { + "label": "Institut Parisien de Chimie Moléculaire", + "type": "child", + "id": "https://ror.org/04qwfwm19" + }, + { + "label": "Institut de Chimie Moléculaire de Grenoble", + "type": "child", + "id": "https://ror.org/04g26vc28" + }, + { + "label": "Institut de Chimie Radicalaire", + "type": "child", + "id": "https://ror.org/000d5zy28" + }, + { + "label": "Institut de Chimie de Nice", + "type": "child", + "id": "https://ror.org/000pvc513" + }, + { + "label": "Institut de Chimie de Strasbourg", + "type": "child", + "id": "https://ror.org/00se7bf12" + }, + { + "label": "Institut de Chimie de la Matière Condensée de Bordeaux", + "type": "child", + "id": "https://ror.org/01nw6qk38" + }, + { + "label": "Institut de Chimie des Milieux et des Matériaux de Poitiers", + "type": "child", + "id": "https://ror.org/001n7ee52" + }, + { + "label": "Institut de Chimie et Biochimie Moléculaires et Supramoléculaires", + "type": "child", + "id": "https://ror.org/00gj33s30" + }, + { + "label": "Institut de Recherche de Chimie Paris", + "type": "child", + "id": "https://ror.org/02s6m8n84" + }, + { + "label": "Institut de Science et d'Ingénierie Supramoléculaires", + "type": "child", + "id": "https://ror.org/00xts7d02" + }, + { + "label": "Institut de Sciences des Matériaux de Mulhouse", + "type": "child", + "id": "https://ror.org/012wxdw12" + }, + { + "label": "Institut des Biomolécules Max Mousseron", + "type": "child", + "id": "https://ror.org/05d1e6v30" + }, + { + "label": "Institut des Matériaux Jean Rouxel", + "type": "child", + "id": "https://ror.org/00cqpd580" + }, + { + "label": "Institut des Molécules et Matériaux du Mans", + "type": "child", + "id": "https://ror.org/03a9gd656" + }, + { + "label": "Institut des Sciences Analytiques et de Physico-Chimie pour l'Environnement et les Matériaux", + "type": "child", + "id": "https://ror.org/00222yk13" + }, + { + "label": "Institut des Sciences Chimiques de Rennes", + "type": "child", + "id": "https://ror.org/00adwkx90" + }, + { + "label": "Institut des Sciences Moléculaires de Marseille", + "type": "child", + "id": "https://ror.org/05xr3b330" + }, + { + "label": "Institut des Sciences et Technologies Moléculaires d'Angers", + "type": "child", + "id": "https://ror.org/039yyx623" + }, + { + "label": "Institute for the Separation Chemistry in Marcoule", + "type": "child", + "id": "https://ror.org/04fr7pd94" + }, + { + "label": "Institute of Analytical Sciences", + "type": "child", + "id": "https://ror.org/03s5z5x70" + }, + { + "label": "Institute of Chemistry and Processes for Energy, Environment and Health", + "type": "child", + "id": "https://ror.org/02tn0tm63" + }, + { + "label": "Institute of Chemistry of Clermont-Ferrand", + "type": "child", + "id": "https://ror.org/045qszf23" + }, + { + "label": "Institute of Molecular Chemistry Reims", + "type": "child", + "id": "https://ror.org/03c0nx407" + }, + { + "label": "Institute of Molecular Sciences", + "type": "child", + "id": "https://ror.org/00r8jkk54" + }, + { + "label": "Institute of Organic and Analytical Chemistry", + "type": "child", + "id": "https://ror.org/03ywn7d79" + }, + { + "label": "Institute of Researches on Catalysis and Environment in Lyon", + "type": "child", + "id": "https://ror.org/04fy20a51" + }, + { + "label": "Interfaces Traitements Organisation et Dynamique des Systèmes", + "type": "child", + "id": "https://ror.org/03edms940" + }, + { + "label": "Interuniversity Center of Materials Research and Engineering", + "type": "child", + "id": "https://ror.org/03xhggy77" + }, + { + "label": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "type": "child", + "id": "https://ror.org/00wwxk695" + }, + { + "label": "Laboratoire Chimie Electrochimie Moléculaires et Chimie Analytique", + "type": "child", + "id": "https://ror.org/02bhhaf78" + }, + { + "label": "Laboratoire Chimie de l'Environnement", + "type": "child", + "id": "https://ror.org/02pr0xw82" + }, + { + "label": "Laboratoire Hydrazines et Composés Energétiques Polyazotés", + "type": "child", + "id": "https://ror.org/01racwh88" + }, + { + "label": "Laboratoire Hétérochimie Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/02v2svk17" + }, + { + "label": "Laboratoire Interfaces et Systèmes Électrochimiques", + "type": "child", + "id": "https://ror.org/00jb20a14" + }, + { + "label": "Chimie Moléculaire, Macromoléculaire, Matériaux", + "type": "child", + "id": "https://ror.org/007sc9r91" + }, + { + "label": "Laboratoire d'Electrochimie Moléculaire", + "type": "child", + "id": "https://ror.org/03atapr58" + }, + { + "label": "Laboratoire de Chimie", + "type": "child", + "id": "https://ror.org/02gaw1s20" + }, + { + "label": "Laboratoire de Chimie Moléculaire et Thioorganique", + "type": "child", + "id": "https://ror.org/03q7p3t30" + }, + { + "label": "Laboratoire de Chimie Physique - Matière et Rayonnement", + "type": "child", + "id": "https://ror.org/03z20vp15" + }, + { + "label": "Laboratoire de Chimie Physique et Microbiologie pour l'Environnement", + "type": "child", + "id": "https://ror.org/03nknpw16" + }, + { + "label": "Laboratoire de Chimie Théorique", + "type": "child", + "id": "https://ror.org/00tmb7y09" + }, + { + "label": "Laboratoire de Chimie de Coordination", + "type": "child", + "id": "https://ror.org/01rtzw447" + }, + { + "label": "Laboratoire de Chimie des Polymères Organiques", + "type": "child", + "id": "https://ror.org/056n05x05" + }, + { + "label": "Laboratoire de chimie des processus biologiques", + "type": "child", + "id": "https://ror.org/02fv42846" + }, + { + "label": "Laboratoire de Chimie et Biochimie Pharmacologiques et Toxicologiques", + "type": "child", + "id": "https://ror.org/028qedy27" + }, + { + "label": "Laboratoire de Chimie et Biologie des Métaux", + "type": "child", + "id": "https://ror.org/02dd25k08" + }, + { + "label": "Laboratoire de Chimie et Physique Quantiques", + "type": "child", + "id": "https://ror.org/056g7f250" + }, + { + "label": "Laboratoire de Cristallographie et Sciences des Matériaux", + "type": "child", + "id": "https://ror.org/04310tc15" + }, + { + "label": "Laboratoire de Photophysique et Photochimie Supramoléculaires et Macromoléculaires", + "type": "child", + "id": "https://ror.org/03r7eh527" + }, + { + "label": "Laboratoire de Réactivité de Surface", + "type": "child", + "id": "https://ror.org/04vthwx70" + }, + { + "label": "Laboratoire de Réactivité et Chimie des Solides", + "type": "child", + "id": "https://ror.org/02m9cs548" + }, + { + "label": "Laboratoire de Spectroscopie pour les Interactions, la Réactivité et l'Environnement", + "type": "child", + "id": "https://ror.org/01tv2ca73" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire des Composites Thermo Structuraux", + "type": "child", + "id": "https://ror.org/02n2h9t24" + }, + { + "label": "Laboratoire des Interactions Moléculaires et Réactivité Chimique et Photochimique", + "type": "child", + "id": "https://ror.org/0171mae58" + }, + { + "label": "Laboratoire des Multimatériaux et Interfaces", + "type": "child", + "id": "https://ror.org/03cfem402" + }, + { + "label": "Laboratoire du Futur", + "type": "child", + "id": "https://ror.org/04qq0qp34" + }, + { + "label": "Laboratoire d’Archéologie Moléculaire et Structurale", + "type": "child", + "id": "https://ror.org/02ctqqq48" + }, + { + "label": "Laboratoire d’Electrochimie et de Physico-chimie des Matériaux et des Interfaces", + "type": "child", + "id": "https://ror.org/04axb9j69" + }, + { + "label": "Laboratory Glycochemistry, of Antimicrobials and Agroressources", + "type": "child", + "id": "https://ror.org/01gje7n16" + }, + { + "label": "Laboratory for Therapeutic Innovation", + "type": "child", + "id": "https://ror.org/02g4mxc89" + }, + { + "label": "Laboratory of Catalysis and Solid State Chemistry", + "type": "child", + "id": "https://ror.org/04vrqzz54" + }, + { + "label": "Laboratory of Design and Application of Bioactive Molecules", + "type": "child", + "id": "https://ror.org/00rh71z37" + }, + { + "label": "Laboratory of Organic Synthesis", + "type": "child", + "id": "https://ror.org/04qgfge56" + }, + { + "label": "Laboratory of Polymer Materials Engineering", + "type": "child", + "id": "https://ror.org/02160my55" + }, + { + "label": "Laboratory of Theoretical Biochemistry", + "type": "child", + "id": "https://ror.org/00nvjgv40" + }, + { + "label": "Materials and Physical Engineering Laboratory", + "type": "child", + "id": "https://ror.org/014n97s28" + }, + { + "label": "Miniaturisation pour la Synthèse, l'Analyse et la Protéomique", + "type": "child", + "id": "https://ror.org/02s4dmd79" + }, + { + "label": "Molécule aux Nanos-objets : Réactivité, Interactions et Spectroscopies", + "type": "child", + "id": "https://ror.org/02jkg8m11" + }, + { + "label": "Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes", + "type": "child", + "id": "https://ror.org/00b4q1853" + }, + { + "label": "Nanosciences et Innovation pour les Matériaux, la Biomédecine et l'Énergie", + "type": "child", + "id": "https://ror.org/04vg26t07" + }, + { + "label": "Organic and Analytical Chemistry Laboratory", + "type": "child", + "id": "https://ror.org/04e8pda19" + }, + { + "label": "Paul Pascal Research Center", + "type": "child", + "id": "https://ror.org/043a21x04" + }, + { + "label": "PHENIX laboratory", + "type": "child", + "id": "https://ror.org/046htjf88" + }, + { + "label": "Polymères, Biopolymères, Surfaces", + "type": "child", + "id": "https://ror.org/04hd6wf14" + }, + { + "label": "Processus d'Activation Sélective par Transfert d'Énergie Uni-électronique ou Radiatif", + "type": "child", + "id": "https://ror.org/033t7vz72" + }, + { + "label": "Science et Ingénierie des Matériaux et Procédés", + "type": "child", + "id": "https://ror.org/00m7zca23" + }, + { + "label": "Science of Ceramic Processing and Surface Treatments", + "type": "child", + "id": "https://ror.org/044qpwz88" + }, + { + "label": "Sciences et Ingénierie de la Matière Molle", + "type": "child", + "id": "https://ror.org/03f0z1g15" + }, + { + "label": "Structure et Instabilité des Génomes", + "type": "child", + "id": "https://ror.org/05pchb838" + }, + { + "label": "Unité Matériaux et Transformations", + "type": "child", + "id": "https://ror.org/03q99v794" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Centre de Biophysique Moléculaire", + "type": "child", + "id": "https://ror.org/02dpqcy73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02cwv3a12.json b/v1.43/02cwv3a12.json new file mode 100644 index 000000000..279c58ed8 --- /dev/null +++ b/v1.43/02cwv3a12.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2654588, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.40606, + "lng": 0.01519, + "name": "Bromley" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7782 4876" + ], + "preferred": "0000 0004 7782 4876" + }, + { + "type": "wikidata", + "all": [ + "Q116236067" + ], + "preferred": "Q116236067" + }, + { + "type": "fundref", + "all": [ + "100013421" + ], + "preferred": "100013421" + } + ], + "id": "https://ror.org/02cwv3a12", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pinkribbonfoundation.org.uk" + } + ], + "names": [ + { + "value": "Pink Ribbon Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PRF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02dg0pv02.json b/v1.43/02dg0pv02.json new file mode 100644 index 000000000..540d65adf --- /dev/null +++ b/v1.43/02dg0pv02.json @@ -0,0 +1,137 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1946, + "external_ids": [ + { + "all": [ + "100006641" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.420318.c" + ], + "preferred": "grid.420318.c", + "type": "grid" + }, + { + "all": [ + "0000 0004 0402 478X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q740308" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02dg0pv02", + "links": [ + { + "type": "website", + "value": "http://www.unicef.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/UNICEF" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.71427, + "lng": -74.00597, + "name": "New York" + }, + "geonames_id": 5128581 + } + ], + "names": [ + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Fonds des Nations Unies pour l'Enfance" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNICEF" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "United Nations Children's Fund" + } + ], + "relationships": [ + { + "label": "United Nations Children's Fund Cameroon", + "type": "child", + "id": "https://ror.org/01fxrnx65" + }, + { + "label": "United Nations Children's Fund Canada", + "type": "child", + "id": "https://ror.org/05r7zv414" + }, + { + "label": "United Nations Children's Fund India", + "type": "child", + "id": "https://ror.org/05388c580" + }, + { + "label": "United Nations Children's Fund Kosovo", + "type": "child", + "id": "https://ror.org/01m1ej943" + }, + { + "label": "United Nations Children's Fund Niger", + "type": "child", + "id": "https://ror.org/014ezsb26" + }, + { + "label": "United Nations Children's Fund Zambia", + "type": "child", + "id": "https://ror.org/00xdt7j93" + }, + { + "label": "United Nations", + "type": "parent", + "id": "https://ror.org/006kxhp52" + }, + { + "label": "Special Programme for Research and Training in Tropical Diseases", + "type": "child", + "id": "https://ror.org/046j7pv84" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/v1.43/02drdmm93.json b/v1.43/02drdmm93.json new file mode 100644 index 000000000..f24b4b283 --- /dev/null +++ b/v1.43/02drdmm93.json @@ -0,0 +1,177 @@ +{ + "admin": { + "created": { + "date": "2019-11-07", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1956, + "external_ids": [ + { + "all": [ + "grid.506261.6" + ], + "preferred": "grid.506261.6", + "type": "grid" + }, + { + "all": [ + "0000 0001 0706 7839" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q10873318" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02drdmm93", + "links": [ + { + "type": "website", + "value": "http://www.cams.ac.cn/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Peking_Union_Medical_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + }, + "geonames_id": 1816670 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CAMS" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CAMS&PUMC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Chinese Academy of Medical Sciences" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Chinese Academy of Medical Sciences & Peking Union Medical College" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "PUMC" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Peking Union Medical College" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "中国医学科学院" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "中国医学科学院北京协和医学院" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "北京协和医学院" + } + ], + "relationships": [ + { + "label": "State Key Laboratory of Virus Genetic Engineering", + "type": "child", + "id": "https://ror.org/0311ezn83" + }, + { + "label": "Institute of Basic Medical Sciences of the Chinese Academy of Medical Sciences", + "type": "child", + "id": "https://ror.org/055qbch41" + }, + { + "label": "Cancer Hospital of Chinese Academy of Medical Sciences", + "type": "related", + "id": "https://ror.org/03x937183" + }, + { + "label": "Chinese Academy of Medical Sciences Dermatology Hospital", + "type": "related", + "id": "https://ror.org/01z6cw088" + }, + { + "label": "Fu Wai Hospital", + "type": "related", + "id": "https://ror.org/0590dnz19" + }, + { + "label": "Institute of Hematology & Blood Diseases Hospital", + "type": "related", + "id": "https://ror.org/04n16t016" + }, + { + "label": "Peking Union Medical College Hospital", + "type": "related", + "id": "https://ror.org/04jztag35" + }, + { + "label": "Tsinghua University", + "type": "related", + "id": "https://ror.org/03cve4549" + }, + { + "label": "Institute of Chinese Materia Medica", + "type": "child", + "id": "https://ror.org/04kn56m50" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/02dyaew97.json b/v1.43/02dyaew97.json new file mode 100644 index 000000000..82050a2eb --- /dev/null +++ b/v1.43/02dyaew97.json @@ -0,0 +1,100 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1959, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9404 6552" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3214477" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462447.7" + ], + "preferred": "grid.462447.7" + } + ], + "id": "https://ror.org/02dyaew97", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lps.u-psud.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Laboratory_of_Solid_State_Physics" + } + ], + "names": [ + { + "value": "Laboratoire de physique des Solides", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory of Solid State Physics", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LPS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02dzjmc73.json b/v1.43/02dzjmc73.json new file mode 100644 index 000000000..30622f9ba --- /dev/null +++ b/v1.43/02dzjmc73.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 738329, + "geonames_details": { + "country_code": "TR", + "country_name": "Türkiye", + "lat": 41.02274, + "lng": 29.01366, + "name": "Scutari" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0495 1268" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q6063394" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.464712.2" + ], + "preferred": "grid.464712.2" + } + ], + "id": "https://ror.org/02dzjmc73", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uskudar.edu.tr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/%C3%9Csk%C3%BCdar_University" + } + ], + "names": [ + { + "value": "Üsküdar University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Üsküdar Üniversitesi", + "types": [ + "label" + ], + "lang": "tr" + } + ], + "relationships": [ + { + "label": "Npistanbul Brain Hospital", + "type": "related", + "id": "https://ror.org/00hhtwx28" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02e3wq066.json b/v1.43/02e3wq066.json new file mode 100644 index 000000000..fc55bb97c --- /dev/null +++ b/v1.43/02e3wq066.json @@ -0,0 +1,94 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1991, + "external_ids": [ + { + "all": [ + "100006086" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.454854.c" + ], + "preferred": "grid.454854.c", + "type": "grid" + }, + { + "all": [ + "0000 0004 0430 6277" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/02e3wq066", + "links": [ + { + "type": "website", + "value": "http://dpcpsi.nih.gov/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.98067, + "lng": -77.10026, + "name": "Bethesda" + }, + "geonames_id": 4348599 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DPCPSI" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Division of Program Coordination Planning and Strategic Initiatives" + } + ], + "relationships": [ + { + "label": "Office of Data Science Strategy", + "type": "child", + "id": "https://ror.org/04g4sf283" + }, + { + "label": "Office of the Director", + "type": "parent", + "id": "https://ror.org/00fj8a872" + }, + { + "label": "NIH Common Fund", + "type": "child", + "id": "https://ror.org/001d55x84" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/v1.43/02eegq373.json b/v1.43/02eegq373.json new file mode 100644 index 000000000..652fdf548 --- /dev/null +++ b/v1.43/02eegq373.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9390 6995" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434664.7" + ], + "preferred": "grid.434664.7" + } + ], + "id": "https://ror.org/02eegq373", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ffe.es" + } + ], + "names": [ + { + "value": "Fundación de los Ferrocarriles Españoles", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spanish Railway Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02en5vm52.json b/v1.43/02en5vm52.json new file mode 100644 index 000000000..9ba3e6c0a --- /dev/null +++ b/v1.43/02en5vm52.json @@ -0,0 +1,1129 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2010, + "external_ids": [ + { + "all": [ + "0000 0001 2308 1657" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100005737", + "501100019125", + "100012946" + ], + "preferred": "501100019125", + "type": "fundref" + }, + { + "all": [ + "Q41497113", + "Q3491150", + "Q546118", + "Q1144549" + ], + "preferred": "Q41497113", + "type": "wikidata" + }, + { + "all": [ + "grid.462844.8" + ], + "preferred": "grid.462844.8", + "type": "grid" + } + ], + "id": "https://ror.org/02en5vm52", + "links": [ + { + "type": "website", + "value": "https://www.sorbonne-universite.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Sorbonne_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Sorbonne Université" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Paris-Sorbonne" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Pierre and Marie Curie University" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Sorbonne University" + } + ], + "relationships": [ + { + "label": "Institut d'Astrophysique de Paris", + "type": "related", + "id": "https://ror.org/022bnxw24" + }, + { + "label": "Adaptation and Diversity in the Marine Environment", + "type": "child", + "id": "https://ror.org/0293jn610" + }, + { + "label": "Laboratoire d'Ecogéochimie des Environnements Benthiques", + "type": "child", + "id": "https://ror.org/049xh5y45" + }, + { + "label": "Biologie Intégrative des Organismes Marins", + "type": "child", + "id": "https://ror.org/03wg93s13" + }, + { + "label": "Biologie des Organismes et Écosystèmes Aquatiques", + "type": "child", + "id": "https://ror.org/01tp1c480" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Centre André-Chastel", + "type": "child", + "id": "https://ror.org/03jqm0b89" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre d’étude de la langue et des littératures françaises", + "type": "child", + "id": "https://ror.org/059v8sw69" + }, + { + "label": "Centre de Recherche Saint-Antoine", + "type": "child", + "id": "https://ror.org/03wxndv36" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de recherches sur la pensée antique", + "type": "child", + "id": "https://ror.org/02d19mr69" + }, + { + "label": "Centre d'Écologie et des Sciences de la Conservation", + "type": "child", + "id": "https://ror.org/00sad8321" + }, + { + "label": "Chimie de la Matière Condensée de Paris", + "type": "child", + "id": "https://ror.org/028ta1f94" + }, + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Biologie évolutive et écologie des algues", + "type": "child", + "id": "https://ror.org/051k70002" + }, + { + "label": "Géoazur", + "type": "child", + "id": "https://ror.org/05xtktk35" + }, + { + "label": "Groupe d'Étude des Méthodes de l'Analyse Sociologique de la Sorbonne", + "type": "child", + "id": "https://ror.org/00kzsxx38" + }, + { + "label": "Institut Henri Poincaré", + "type": "child", + "id": "https://ror.org/05dfxeg46" + }, + { + "label": "Institut Jean Le Rond d'Alembert", + "type": "child", + "id": "https://ror.org/043we9s22" + }, + { + "label": "Institut Parisien de Chimie Moléculaire", + "type": "child", + "id": "https://ror.org/04qwfwm19" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Mathématiques de Jussieu-Paris Rive Gauche", + "type": "child", + "id": "https://ror.org/03fk87k11" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut de Systématique, Évolution, Biodiversité", + "type": "child", + "id": "https://ror.org/01dadvw90" + }, + { + "label": "Institut des Sciences de la Terre de Paris", + "type": "child", + "id": "https://ror.org/00xagyq07" + }, + { + "label": "Institut du Cerveau", + "type": "child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Fer à Moulin", + "type": "child", + "id": "https://ror.org/03x9frp33" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institute of Mineralogy, Materials Physics and Cosmochemistry", + "type": "child", + "id": "https://ror.org/05abgg682" + }, + { + "label": "Institut de Myologie", + "type": "child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Laboratoire Kastler Brossel", + "type": "child", + "id": "https://ror.org/01h14ww21" + }, + { + "label": "Laboratoire Interfaces et Systèmes Électrochimiques", + "type": "child", + "id": "https://ror.org/00jb20a14" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Jean Perrin", + "type": "child", + "id": "https://ror.org/01ghvgs84" + }, + { + "label": "Laboratoire d'Océanographie et du Climat : Expérimentations et Approches Numériques", + "type": "child", + "id": "https://ror.org/05j3atf73" + }, + { + "label": "Laboratoire d'études sur les monothéismes", + "type": "child", + "id": "https://ror.org/02m0hy518" + }, + { + "label": "Laboratoire de Biodiversité et Biotechnologies Microbiennes", + "type": "child", + "id": "https://ror.org/039p01270" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire de Biologie du Développement de Villefranche-sur-Mer", + "type": "child", + "id": "https://ror.org/04hke8425" + }, + { + "label": "Laboratoire de Chimie Physique - Matière et Rayonnement", + "type": "child", + "id": "https://ror.org/03z20vp15" + }, + { + "label": "Laboratoire de Chimie Théorique", + "type": "child", + "id": "https://ror.org/00tmb7y09" + }, + { + "label": "Laboratoire de chimie des processus biologiques", + "type": "child", + "id": "https://ror.org/02fv42846" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire de Météorologie Dynamique", + "type": "child", + "id": "https://ror.org/000ehr937" + }, + { + "label": "Laboratoire de Physique Nucléaire et de Hautes Énergies", + "type": "child", + "id": "https://ror.org/01hg8p552" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Laboratoire de Recherche en Informatique de Paris 6", + "type": "child", + "id": "https://ror.org/05krcen59" + }, + { + "label": "Laboratoire de Réactivité de Surface", + "type": "child", + "id": "https://ror.org/04vthwx70" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire d’Archéologie Moléculaire et Structurale", + "type": "child", + "id": "https://ror.org/02ctqqq48" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratory of Computational and Quantitative Biology", + "type": "child", + "id": "https://ror.org/00pcqj134" + }, + { + "label": "Laboratoire de Biologie Intégrative des Modèles Marins", + "type": "child", + "id": "https://ror.org/001c8pb03" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Laboratoire d'Océanographie Microbienne", + "type": "child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratoire de Biologie Moléculaire et Cellulaire des Eucaryotes", + "type": "child", + "id": "https://ror.org/05mx55f96" + }, + { + "label": "Laboratoire de Physique et d’Étude des Matériaux", + "type": "child", + "id": "https://ror.org/00a72jq18" + }, + { + "label": "Laboratoire d’études spatiales et d’instrumentation en astrophysique", + "type": "child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratoire de Physique Théorique de la Matière Condensée", + "type": "child", + "id": "https://ror.org/04zaaa143" + }, + { + "label": "Laboratoire de Physique Théorique et Hautes Energies", + "type": "child", + "id": "https://ror.org/02mph9k76" + }, + { + "label": "Institut Langevin", + "type": "child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Milieux environnementaux, transferts et interactions dans les hydrosystèmes et les sols", + "type": "child", + "id": "https://ror.org/0229z0679" + }, + { + "label": "Molécule aux Nanos-objets : Réactivité, Interactions et Spectroscopies", + "type": "child", + "id": "https://ror.org/02jkg8m11" + }, + { + "label": "Dynamique du noyau", + "type": "child", + "id": "https://ror.org/04team556" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Orient & Méditerranée", + "type": "child", + "id": "https://ror.org/051gvfp41" + }, + { + "label": "Institut des NanoSciences de Paris", + "type": "child", + "id": "https://ror.org/03t2f0a12" + }, + { + "label": "Physico-chimie Curie", + "type": "child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "PHENIX laboratory", + "type": "child", + "id": "https://ror.org/046htjf88" + }, + { + "label": "Biologie du chloroplaste et perception de la lumière chez les micro-algues", + "type": "child", + "id": "https://ror.org/001r32c80" + }, + { + "label": "Physique et Mécanique des Milieux Hétérogènes", + "type": "child", + "id": "https://ror.org/03kr50w79" + }, + { + "label": "Institut Pierre Louis d‘Épidémiologie et de Santé Publique", + "type": "child", + "id": "https://ror.org/02qqh1125" + }, + { + "label": "Processus d'Activation Sélective par Transfert d'Énergie Uni-électronique ou Radiatif", + "type": "child", + "id": "https://ror.org/033t7vz72" + }, + { + "label": "Unité de recherche sur les maladies cardiovasculaires et métaboliques", + "type": "child", + "id": "https://ror.org/043y2tx42" + }, + { + "label": "Station Biologique de Roscoff", + "type": "child", + "id": "https://ror.org/03s0pzj56" + }, + { + "label": "Sciences et Ingénierie de la Matière Molle", + "type": "child", + "id": "https://ror.org/03f0z1g15" + }, + { + "label": "Solid State Chemistry And Energy Lab", + "type": "child", + "id": "https://ror.org/03s877y45" + }, + { + "label": "Sorbonne - Identités, Relations Internationales et Civilisations de l’Europe", + "type": "child", + "id": "https://ror.org/03ae8w006" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Systèmes de Référence Temps-Espace", + "type": "child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Unité de Modélisation Mathématique et Informatique des Systèmes Complexes", + "type": "child", + "id": "https://ror.org/053kxkj53" + }, + { + "label": "Laboratoire d’Océanographie de Villefranche", + "type": "child", + "id": "https://ror.org/05r5y6641" + }, + { + "label": "European Marine Biological Resource Centre", + "type": "related", + "id": "https://ror.org/0038zss60" + }, + { + "label": "Fondation pour l'Innovation en Cardiométabolisme et Nutrition", + "type": "child", + "id": "https://ror.org/0045xgt95" + }, + { + "label": "Centre de Recherche sur l'Amérique Pré-hispanique", + "type": "child", + "id": "https://ror.org/000nfmp17" + }, + { + "label": "Centre d'investigation clinique Quinze-Vingts", + "type": "child", + "id": "https://ror.org/01exas502" + }, + { + "label": "Immunologie - Immunopathologie - Immunothérapie", + "type": "child", + "id": "https://ror.org/05dbe0t82" + }, + { + "label": "Centre de recherche en paléontologie - Paris", + "type": "child", + "id": "https://ror.org/05ax2x637" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "Europe orientale, balkanique et médiane", + "type": "child", + "id": "https://ror.org/03ygj8248" + }, + { + "label": "Institut de Recherche en Musicologie", + "type": "child", + "id": "https://ror.org/04gf9wd48" + }, + { + "label": "Neurophysiologie respiratoire expérimentale et clinique", + "type": "child", + "id": "https://ror.org/0259td381" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Génétique et biologie du développement", + "type": "child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Institut de la Vision", + "type": "child", + "id": "https://ror.org/000zhpw23" + }, + { + "label": "École des Neurosciences de Paris", + "type": "child", + "id": "https://ror.org/05re0sm29" + }, + { + "label": "Laboratoire atmosphères, milieux, observations spatiales", + "type": "child", + "id": "https://ror.org/05ppf7q77" + }, + { + "label": "ITER", + "type": "child", + "id": "https://ror.org/01d7n9638" + }, + { + "label": "UMI MajuLab", + "type": "child", + "id": "https://ror.org/027jrtw17" + }, + { + "label": "Laboratoire de Physique de l'ENS", + "type": "child", + "id": "https://ror.org/03a26mh11" + }, + { + "label": "Institut Pierre-Simon Laplace", + "type": "child", + "id": "https://ror.org/02haar591" + }, + { + "label": "Hôpital Armand-Trousseau", + "type": "related", + "id": "https://ror.org/00yfbr841" + }, + { + "label": "Tenon Hospital", + "type": "related", + "id": "https://ror.org/05h5v3c50" + }, + { + "label": "Hôpital Charles-Foix", + "type": "related", + "id": "https://ror.org/04v3xcy66" + }, + { + "label": "Hôpital Rothschild", + "type": "related", + "id": "https://ror.org/009kb8w74" + }, + { + "label": "Hôpital Saint-Antoine", + "type": "related", + "id": "https://ror.org/01875pg84" + }, + { + "label": "Pitié-Salpêtrière Hospital", + "type": "related", + "id": "https://ror.org/02mh9a093" + }, + { + "label": "Hôpital de la Roche-Guyon", + "type": "related", + "id": "https://ror.org/02t1zz428" + }, + { + "label": "Biologie du Chloroplaste et Perception de la Lumière chez les Microalgues", + "type": "child", + "id": "https://ror.org/04ezpxa16" + }, + { + "label": "Autonomia", + "type": "child", + "id": "https://ror.org/01ms54x07" + }, + { + "label": "Edition, Interprétation et traduction des textes anciens", + "type": "child", + "id": "https://ror.org/015cf0x85" + }, + { + "label": "Centre de Recherches Interdisciplinaires sur les Mondes Ibéro-américains Contemporains", + "type": "child", + "id": "https://ror.org/006jv0w93" + }, + { + "label": "Centre de Recherches sur l’Extrême Orient de Paris – Sorbonne", + "type": "child", + "id": "https://ror.org/04vwsc311" + }, + { + "label": "Centre d'histoire du XIXe siècle", + "type": "child", + "id": "https://ror.org/04hrxxd90" + }, + { + "label": "Métaphysique, histoires, transformations, actualités", + "type": "child", + "id": "https://ror.org/04sv5r538" + }, + { + "label": "Sciences et Technologies de la Musique et du Son", + "type": "child", + "id": "https://ror.org/025xvn046" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "UMS Phénotypage du petit animal", + "type": "child", + "id": "https://ror.org/05pm2xt51" + }, + { + "label": "Fédération de recherche en sciences mathématiques de Paris centre", + "type": "child", + "id": "https://ror.org/02jwwk370" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Troubles psychiatriques et développement", + "type": "child", + "id": "https://ror.org/04nc8v966" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Centre Expert en Endométriose", + "type": "child", + "id": "https://ror.org/00s0m4j44" + }, + { + "label": "Robotique et Innovation Chirurgicale", + "type": "child", + "id": "https://ror.org/04shr9s31" + }, + { + "label": "Handicap moteur et cognitif et réadaptation", + "type": "child", + "id": "https://ror.org/011gr5n11" + }, + { + "label": "Analyse, Recherche, Développement et Evaluation en Endourologie et Lithiase Urinaire", + "type": "child", + "id": "https://ror.org/03f1mtj27" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Groupe de recherche interdisciplinaire sur les processus d'information et de communication", + "type": "child", + "id": "https://ror.org/04p8das24" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Fondation Voir & Entendre", + "type": "child", + "id": "https://ror.org/01ph0t361" + }, + { + "label": "Centre de linguistique en Sorbonne", + "type": "child", + "id": "https://ror.org/02zzf0m94" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Réanimation et soins intensifs du patient en Insuffisance respiratoire aigüe", + "type": "child", + "id": "https://ror.org/02qvhgb32" + }, + { + "label": "Méthodes et Outils pour les Sciences Participatives", + "type": "child", + "id": "https://ror.org/05kytrf83" + }, + { + "label": "Maladies génétiques d’expression pédiatrique", + "type": "child", + "id": "https://ror.org/0387w4y93" + }, + { + "label": "Laboratoire Médiations", + "type": "child", + "id": "https://ror.org/04tb23024" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Transplantation et Thérapies Innovantes de la Cornée", + "type": "child", + "id": "https://ror.org/02g0s3c07" + }, + { + "label": "Biomarqueurs d’urgence et de réanimation", + "type": "child", + "id": "https://ror.org/01jnrzt83" + }, + { + "label": "Groupe de REcherche en Cardio Oncologie", + "type": "child", + "id": "https://ror.org/00b4yme84" + }, + { + "label": "Rome et ses renaissances", + "type": "child", + "id": "https://ror.org/011hja523" + }, + { + "label": "CERES - Centre d'expérimentation en méthodes numériques pour les recherches en sciences humaines et sociales", + "type": "child", + "id": "https://ror.org/00fyy4d45" + }, + { + "label": "Sciences, Normes, Démocratie", + "type": "child", + "id": "https://ror.org/033eqsk67" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Institut des Sciences du Calcul et des Données", + "type": "child", + "id": "https://ror.org/00y16rm59" + }, + { + "label": "Complications Cardiovasculaires et Métaboliques chez les patients vivant avec le VIH", + "type": "child", + "id": "https://ror.org/00njafa27" + }, + { + "label": "Groupe de Recherche Clinique en Neuro-urologie", + "type": "child", + "id": "https://ror.org/05gzcy376" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Alzheimer Precision Medicine", + "type": "child", + "id": "https://ror.org/058qr4y65" + }, + { + "label": "Onco-Urologie Prédictive", + "type": "child", + "id": "https://ror.org/0138eq662" + }, + { + "label": "Histoire et Archéologie Maritimes", + "type": "child", + "id": "https://ror.org/011mac819" + }, + { + "label": "Production et analyse de données en sciences de la vie et en santé", + "type": "child", + "id": "https://ror.org/03p2d3k93" + }, + { + "label": "Institut Parisien de Chimie Physique et Théorique", + "type": "child", + "id": "https://ror.org/00xwwwr97" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénieurie des Connaissances en e-Santé", + "type": "child", + "id": "https://ror.org/01jr1v359" + }, + { + "label": "Enzymologie de l'ARN", + "type": "child", + "id": "https://ror.org/05n2mnn68" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Building Blocks for Future Electronics Laboratory", + "type": "child", + "id": "https://ror.org/01w108f05" + }, + { + "label": "Institut de la Mer de Villefranche", + "type": "child", + "id": "https://ror.org/05jpad840" + }, + { + "label": "Histoire et Dynamique des Espaces Anglophones: du Réel au Virtuel", + "type": "child", + "id": "https://ror.org/03vkkad71" + }, + { + "label": "Étude et Édition de Textes Médiévaux", + "type": "child", + "id": "https://ror.org/037ptrs19" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Représentations et Identités. Espaces Germanique, Nordique et Néerlandophone", + "type": "child", + "id": "https://ror.org/053sj3y70" + }, + { + "label": "Centre d'Études Médiévales Anglaises", + "type": "child", + "id": "https://ror.org/01acw3598" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "Drépanocytose : groupe de Recherche de Paris – Sorbonne Université", + "type": "child", + "id": "https://ror.org/015tg7676" + }, + { + "label": "IMAGES : La médecine de la femme et de l’enfant assistée par l’image", + "type": "child", + "id": "https://ror.org/00x677422" + }, + { + "label": "Centre de Recherche en Myologie", + "type": "child", + "id": "https://ror.org/02e3eqz10" + }, + { + "label": "Civilisations et littératures d'Espagne et d'Amérique du Moyen-Age aux Lumières", + "type": "child", + "id": "https://ror.org/04xy2by41" + }, + { + "label": "Sens, Texte, Informatique, Histoire", + "type": "child", + "id": "https://ror.org/02q5emw59" + }, + { + "label": "Centre de Recherche en Littérature Comparée", + "type": "child", + "id": "https://ror.org/015th7t48" + }, + { + "label": "Équipe Littérature et Culture italiennes", + "type": "child", + "id": "https://ror.org/05ntgv723" + }, + { + "label": "Groupe d’Étude sur l’HyperTension Intra Crânienne idiopathique", + "type": "child", + "id": "https://ror.org/013s2ts57" + }, + { + "label": "Groupe de recherche clinique en anesthésie réanimation médecine périopératoire", + "type": "child", + "id": "https://ror.org/02zn90974" + }, + { + "label": "Groupe de recherche clinique – Tumeurs Thyroïdiennes", + "type": "child", + "id": "https://ror.org/04n40rk24" + }, + { + "label": "THERANOSCAN : Biomarqueurs Théranostiques des Cancers Bronchiques Non à Petites Cellules", + "type": "child", + "id": "https://ror.org/02qe0rk31" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Groupe de recherche clinique Amylose AA Sorbonne Université", + "type": "child", + "id": "https://ror.org/01zpxh127" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "NeurON : Interface Neuro-machine", + "type": "child", + "id": "https://ror.org/00a8q8z31" + }, + { + "label": "PremUP", + "type": "child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Voix Anglophones : Littérature et Esthétique", + "type": "child", + "id": "https://ror.org/02m26fm05" + }, + { + "label": "Nutrition et obésité : approches systémiques", + "type": "child", + "id": "https://ror.org/00qdphm77" + }, + { + "label": "Remodelage et Reparation du Tissu Renal", + "type": "child", + "id": "https://ror.org/01sra1980" + }, + { + "label": "Maladies rénales fréquentes et rares : des mécanismes moléculaires à la médecine personnalisée", + "type": "child", + "id": "https://ror.org/01x3ydm75" + }, + { + "label": "Centre hospitalier national d'ophtalmologie des Quinze-Vingts", + "type": "related", + "id": "https://ror.org/024v1ns19" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/02erddr56.json b/v1.43/02erddr56.json new file mode 100644 index 000000000..f6ad83f51 --- /dev/null +++ b/v1.43/02erddr56.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0382 1752" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q16511698" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462731.5" + ], + "preferred": "grid.462731.5" + } + ], + "id": "https://ror.org/02erddr56", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://laboratoire-albert-fert.cnrs-thales.fr" + } + ], + "names": [ + { + "value": "Laboratoire Albert Fert", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Albert Fert Laboratory", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Unité Mixte de Physique CNRS/Thales", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UMPhy", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Thales (France)", + "type": "parent", + "id": "https://ror.org/04emwm605" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02evec030.json b/v1.43/02evec030.json new file mode 100644 index 000000000..c02944ad4 --- /dev/null +++ b/v1.43/02evec030.json @@ -0,0 +1,111 @@ +{ + "locations": [ + { + "geonames_id": 2998324, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 50.63297, + "lng": 3.05858, + "name": "Lille" + } + } + ], + "established": 1963, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.466329.c" + ], + "preferred": "grid.466329.c" + }, + { + "type": "isni", + "all": [ + "0000 0004 7434 4981", + "0000 0001 2154 0303" + ], + "preferred": "0000 0004 7434 4981" + }, + { + "type": "wikidata", + "all": [ + "Q3117452" + ], + "preferred": "Q3117452" + } + ], + "id": "https://ror.org/02evec030", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.junia.com" + } + ], + "names": [ + { + "value": "JUNIA", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ISA Lille", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "JUNIA - Grande école d'ingénieurs", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Groupe Institut Supérieur d'Agriculture de Lille", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yncréa Hauts-de-France", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut Charles Viollette", + "type": "child", + "id": "https://ror.org/0018c4h73" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02faxbd19.json b/v1.43/02faxbd19.json new file mode 100644 index 000000000..2e37dae52 --- /dev/null +++ b/v1.43/02faxbd19.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1871, + "external_ids": [ + { + "all": [ + "grid.418297.1" + ], + "preferred": "grid.418297.1", + "type": "grid" + }, + { + "all": [ + "0000 0000 8888 5173" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q3445045" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02faxbd19", + "links": [ + { + "type": "website", + "value": "https://www.bethel.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Bethel_University_(Minnesota)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.94441, + "lng": -93.09327, + "name": "Saint Paul" + }, + "geonames_id": 5045360 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bethel College and Seminary" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bethel Junior College" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bethel University" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/02feahw73.json b/v1.43/02feahw73.json new file mode 100644 index 000000000..710ab1cf7 --- /dev/null +++ b/v1.43/02feahw73.json @@ -0,0 +1,1808 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1939, + "external_ids": [ + { + "all": [ + "501100004794" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.4444.0" + ], + "preferred": "grid.4444.0", + "type": "grid" + }, + { + "all": [ + "0000 0001 2259 7504" + ], + "preferred": "0000 0001 2259 7504", + "type": "isni" + }, + { + "all": [ + "Q280413", + "Q39411466" + ], + "preferred": "Q280413", + "type": "wikidata" + } + ], + "id": "https://ror.org/02feahw73", + "links": [ + { + "type": "website", + "value": "https://www.cnrs.fr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Centre_national_de_la_recherche_scientifique" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CNRS" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Centre National de la Recherche Scientifique" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "French National Centre for Scientific Research" + } + ], + "relationships": [ + { + "label": "Cancer Research Center of Toulouse", + "type": "child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Centre Max Weber", + "type": "child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Recherches Critiques sur le Droit", + "type": "child", + "id": "https://ror.org/01rzzcx32" + }, + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "child", + "id": "https://ror.org/03yz3tz18" + }, + { + "label": "Direction Générale Déléguée à la Science", + "type": "child", + "id": "https://ror.org/043nepn57" + }, + { + "label": "Délégation Bretagne et Pays de la Loire", + "type": "child", + "id": "https://ror.org/02t220m45" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Georgia Tech-CNRS Laboratory", + "type": "child", + "id": "https://ror.org/00avmbz91" + }, + { + "label": "Image and Pervasive Access Laboratory", + "type": "child", + "id": "https://ror.org/00m3mb357" + }, + { + "label": "Institut Clément Ader", + "type": "child", + "id": "https://ror.org/040smqw14" + }, + { + "label": "Institut Français d'Études Anatoliennes", + "type": "child", + "id": "https://ror.org/0331qyx19" + }, + { + "label": "Institut National de Physique Nucléaire et de Physique des Particules", + "type": "child", + "id": "https://ror.org/03fd77x13" + }, + { + "label": "Institut National des Sciences Mathématiques et de leurs Interactions", + "type": "child", + "id": "https://ror.org/050jcm728" + }, + { + "label": "Institut National des Sciences de l'Univers", + "type": "child", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "Institut Supérieur pour l'Étude des Religions et de la Laïcité", + "type": "child", + "id": "https://ror.org/01ap27310" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut de Chimie", + "type": "child", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "Institut de Physique", + "type": "child", + "id": "https://ror.org/00z54nq84" + }, + { + "label": "Institut de Recherche sur l'Architecture Antique", + "type": "child", + "id": "https://ror.org/03r0cdk24" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "child", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut des Sciences Humaines et Sociales", + "type": "child", + "id": "https://ror.org/04b0z7q78" + }, + { + "label": "Institut des Sciences de l'Information et de leurs Interactions", + "type": "child", + "id": "https://ror.org/04z22qz54" + }, + { + "label": "Institut des Sciences de l'Ingénierie et des Systèmes", + "type": "child", + "id": "https://ror.org/00s19x989" + }, + { + "label": "Institut Écologie et Environnement", + "type": "child", + "id": "https://ror.org/01q76b368" + }, + { + "label": "Institute of Mechanics and Engineering", + "type": "child", + "id": "https://ror.org/00wrnm709" + }, + { + "label": "Laboratoire Aménagement Économie Transports", + "type": "child", + "id": "https://ror.org/01yw97595" + }, + { + "label": "Laboratoire d'Annecy-le-Vieux de Physique Théorique", + "type": "child", + "id": "https://ror.org/010hz2d37" + }, + { + "label": "Laboratoire d'Informatique en Images et Systèmes d'Information", + "type": "child", + "id": "https://ror.org/04dv4he91" + }, + { + "label": "Laboratoire de Mécanique des Fluides de Lille - Kampé de Fériet", + "type": "child", + "id": "https://ror.org/02w8awt17" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Low Noise Inter-Disciplinary Underground Science & Technology", + "type": "child", + "id": "https://ror.org/05gscwg02" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Research Network on Electrochemical Energy Storage", + "type": "child", + "id": "https://ror.org/00190j002" + }, + { + "label": "Saclay Nuclear Research Centre", + "type": "child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Soleil Synchrotron", + "type": "child", + "id": "https://ror.org/01ydb3330" + }, + { + "label": "Triangle", + "type": "child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Institut Terre & Environnement de Strasbourg", + "type": "child", + "id": "https://ror.org/0530qwm02" + }, + { + "label": "Nançay Radio Observatory", + "type": "child", + "id": "https://ror.org/01vqrde47" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Histoire Judiciaire", + "type": "child", + "id": "https://ror.org/00g32ep81" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "Histoire, Archéologie et Littérature des Mondes Anciens", + "type": "child", + "id": "https://ror.org/01ja5aj48" + }, + { + "label": "AERIS/ICARE Data and Services Center", + "type": "child", + "id": "https://ror.org/013z99a51" + }, + { + "label": "Institut de Recherche sur les Composants logiciels et matériels pour l'Information et la Communication Avancée", + "type": "child", + "id": "https://ror.org/010nk4c68" + }, + { + "label": "Laboratoire de Mécanique, Multiphysique, Multiéchelle", + "type": "child", + "id": "https://ror.org/04f5rw142" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Arènes: politique, santé publique, environnement, médias", + "type": "child", + "id": "https://ror.org/00m4rxj18" + }, + { + "label": "Centre de Recherche en Archéologie, Archéosciences, Histoire", + "type": "child", + "id": "https://ror.org/02wgtm643" + }, + { + "label": "Espaces et Sociétés", + "type": "child", + "id": "https://ror.org/03237mt20" + }, + { + "label": "Littoral, Environnement, Télédétection, Géomatique", + "type": "child", + "id": "https://ror.org/05sat2s07" + }, + { + "label": "Institute of Genetics and Development of Rennes", + "type": "child", + "id": "https://ror.org/036xhtv26" + }, + { + "label": "Géosciences Rennes", + "type": "child", + "id": "https://ror.org/00vn0zc62" + }, + { + "label": "Ecosystèmes, Biodiversité, Evolution", + "type": "child", + "id": "https://ror.org/005fjj927" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Fonctions Optiques pour les Technologies de l’information", + "type": "child", + "id": "https://ror.org/03yn94905" + }, + { + "label": "Ethologie animale et humaine", + "type": "child", + "id": "https://ror.org/02evk6c51" + }, + { + "label": "Laboratoire d'études de genre et de sexualité", + "type": "child", + "id": "https://ror.org/005w2mm89" + }, + { + "label": "Institut d'Électronique et des Technologies du numéRique", + "type": "child", + "id": "https://ror.org/013q33h79" + }, + { + "label": "Western Institute of Law and Europe", + "type": "child", + "id": "https://ror.org/030ewzw66" + }, + { + "label": "Maison des Sciences de l'Homme Mondes", + "type": "child", + "id": "https://ror.org/00wx1mx58" + }, + { + "label": "Laboratoire de Physique et Chimie de l’Environnement et de l’Espace", + "type": "child", + "id": "https://ror.org/049k66y27" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Centre Émile Durkheim", + "type": "child", + "id": "https://ror.org/01k7w0p97" + }, + { + "label": "Laboratoire de Mathématiques de Besançon", + "type": "child", + "id": "https://ror.org/04nrhwg12" + }, + { + "label": "Laboratoire architecture anthropologie", + "type": "child", + "id": "https://ror.org/05wy2cj05" + }, + { + "label": "Biologie du Développement et Cellules Souches", + "type": "child", + "id": "https://ror.org/02af93v77" + }, + { + "label": "Centre de recherche sur les Inégalités Sociales", + "type": "child", + "id": "https://ror.org/02a4c5q78" + }, + { + "label": "Centre International de Rencontres Mathématiques", + "type": "child", + "id": "https://ror.org/04e3d6y73" + }, + { + "label": "École & Observatoire des Sciences de la Terre", + "type": "child", + "id": "https://ror.org/030qxve40" + }, + { + "label": "Musée Curie", + "type": "child", + "id": "https://ror.org/00tf8ca96" + }, + { + "label": "Architecture, Milieu, Paysage", + "type": "child", + "id": "https://ror.org/048289s82" + }, + { + "label": "Géographie de l'environnement", + "type": "child", + "id": "https://ror.org/01p4g5p84" + }, + { + "label": "Geo-Ocean", + "type": "child", + "id": "https://ror.org/007dbrz84" + }, + { + "label": "Centre d'Études et de Recherches sur le Développement International", + "type": "child", + "id": "https://ror.org/01hg13988" + }, + { + "label": "Laboratoire d'Acoustique de l'Université du Mans", + "type": "child", + "id": "https://ror.org/001aevc89" + }, + { + "label": "Histoire des Théories Linguistiques", + "type": "child", + "id": "https://ror.org/0546jt497" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Laboratoire de Médiévistique Occidentale de Paris", + "type": "child", + "id": "https://ror.org/00z0af360" + }, + { + "label": "Laboratoire d'électronique, systèmes de communication et microsystèmes", + "type": "child", + "id": "https://ror.org/01m83bk32" + }, + { + "label": "Laboratoire d'Ecologie des Hydrosystèmes Naturels et Anthropisés", + "type": "child", + "id": "https://ror.org/05pny1q12" + }, + { + "label": "Département de Pharmacochimie Moléculaire", + "type": "child", + "id": "https://ror.org/04fhvpc68" + }, + { + "label": "Centre de droit comparé du travail et de la sécurité sociale", + "type": "child", + "id": "https://ror.org/041ctrc20" + }, + { + "label": "Enzyme and Cell Engineering - Molecular Recognition and Biocatalysis", + "type": "child", + "id": "https://ror.org/001tmq304" + }, + { + "label": "Sciences pour l'Environnement", + "type": "child", + "id": "https://ror.org/016nwev19" + }, + { + "label": "Laboratoire Morphodynamique Continentale et Côtière", + "type": "child", + "id": "https://ror.org/05k1a6w82" + }, + { + "label": "Laboratoire de Mathématiques de Versailles", + "type": "child", + "id": "https://ror.org/04k5jw363" + }, + { + "label": "Langues et Civilisations à Tradition Orale", + "type": "child", + "id": "https://ror.org/025esck76" + }, + { + "label": "Laboratoire de Mathématiques Nicolas Oresme", + "type": "child", + "id": "https://ror.org/03jm2hc44" + }, + { + "label": "Centre d'études sociologiques et politiques Raymond-Aron", + "type": "child", + "id": "https://ror.org/04aq4ab28" + }, + { + "label": "Laboratoire Caribéen de Sciences Sociales", + "type": "child", + "id": "https://ror.org/00srrcb42" + }, + { + "label": "Laboratoire de Physique Théorique et Modélisation", + "type": "child", + "id": "https://ror.org/05nhcdk38" + }, + { + "label": "Institut des sciences juridique et philosophique de la Sorbonne", + "type": "child", + "id": "https://ror.org/0041am420" + }, + { + "label": "Réseau interdisciplinaire pour l’aménagement, l’observation et la cohésion des territoires européens", + "type": "child", + "id": "https://ror.org/036w0tz95" + }, + { + "label": "France, Amériques, Espagne, Sociétés, Pouvoirs, Acteurs", + "type": "child", + "id": "https://ror.org/04daj8721" + }, + { + "label": "Laboratoire des Fluides Complexes et leurs Réservoirs", + "type": "child", + "id": "https://ror.org/03dg47v24" + }, + { + "label": "Chimie de la Matière Complexe", + "type": "child", + "id": "https://ror.org/01cgac405" + }, + { + "label": "Maison des Sciences de l'Homme et de la Société Sud-Est", + "type": "child", + "id": "https://ror.org/02ygac863" + }, + { + "label": "Maison Asie Pacifique", + "type": "child", + "id": "https://ror.org/03e2syc87" + }, + { + "label": "Mathématiques Appliquées à Paris 5", + "type": "child", + "id": "https://ror.org/04yrrdj53" + }, + { + "label": "Center for Mathematical Modeling", + "type": "child", + "id": "https://ror.org/00wz2vk41" + }, + { + "label": "Service des Avions Français Instrumentés pour la Recherche en Environnement", + "type": "child", + "id": "https://ror.org/02qdgbw61" + }, + { + "label": "Empenn", + "type": "child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Archéologie des Sociétés Méditerranéennes", + "type": "child", + "id": "https://ror.org/04n9eyw42" + }, + { + "label": "Laboratoire de Microbiologie Fondamentale et Pathogénicité", + "type": "child", + "id": "https://ror.org/03e4tg734" + }, + { + "label": "Interactions Hôtes-Pathogènes-Environnements", + "type": "child", + "id": "https://ror.org/00zn13224" + }, + { + "label": "Praxiling", + "type": "child", + "id": "https://ror.org/03ym2w748" + }, + { + "label": "Laboratoire de Recherche sur les Cultures Anglophones", + "type": "child", + "id": "https://ror.org/0057kwj95" + }, + { + "label": "TETIS - Territoires, Environnement, Télédétection et Information Spatiale", + "type": "child", + "id": "https://ror.org/0458hw939" + }, + { + "label": "Centre d'études franco-russe de Moscou", + "type": "child", + "id": "https://ror.org/00zmdjj30" + }, + { + "label": "Centre d'Études et de Documentation Économiques, Juridiques et sociales", + "type": "child", + "id": "https://ror.org/008bf9746" + }, + { + "label": "Maison Française d'Oxford", + "type": "child", + "id": "https://ror.org/022psxk94" + }, + { + "label": "Centre de recherche français à Jérusalem", + "type": "child", + "id": "https://ror.org/04ahb2147" + }, + { + "label": "Centre d'études Alexandrines", + "type": "child", + "id": "https://ror.org/02km70587" + }, + { + "label": "Institut français du Proche-Orient", + "type": "child", + "id": "https://ror.org/02t9nm044" + }, + { + "label": "Institut français d'études sur l'Asie centrale", + "type": "child", + "id": "https://ror.org/026t9b832" + }, + { + "label": "Lieux, Identités, eSpaces, Activités", + "type": "child", + "id": "https://ror.org/00nbhg292" + }, + { + "label": "Ecology and Conservation Science for Sustainable Seas", + "type": "child", + "id": "https://ror.org/021zcv334" + }, + { + "label": "AMURE - Centre de droit et d'économie de la mer", + "type": "child", + "id": "https://ror.org/00ss0a232" + }, + { + "label": "Maison méditerranéenne des sciences de l'Homme", + "type": "child", + "id": "https://ror.org/01ejp3f31" + }, + { + "label": "Centre Franco-Égyptien d’Étude des Temples de Karnak", + "type": "child", + "id": "https://ror.org/0502mw613" + }, + { + "label": "Centre de Recherche sur la Conservation", + "type": "child", + "id": "https://ror.org/05q3pap39" + }, + { + "label": "Institut d'Histoire du Droit Jean Gaudemet", + "type": "child", + "id": "https://ror.org/04j9ztm78" + }, + { + "label": "Centre de recherche en paléontologie - Paris", + "type": "child", + "id": "https://ror.org/05ax2x637" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "Génétique et biologie du développement", + "type": "child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Observatoire des Sciences de l'Univers OREME", + "type": "child", + "id": "https://ror.org/00cesps27" + }, + { + "label": "Maison des Sciences de l'Homme Paris Nord", + "type": "child", + "id": "https://ror.org/05079x435" + }, + { + "label": "Savoirs et Mondes Indiens", + "type": "child", + "id": "https://ror.org/04gxn9h90" + }, + { + "label": "Laboratoire de Mathématiques de Reims", + "type": "child", + "id": "https://ror.org/01xkfnd03" + }, + { + "label": "Centre Michel de Boüard", + "type": "child", + "id": "https://ror.org/03rnz7p05" + }, + { + "label": "Relais d'information sur les sciences de la cognition", + "type": "child", + "id": "https://ror.org/04ved1v49" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Sommeil, Addiction et Neuropsychiatrie", + "type": "child", + "id": "https://ror.org/04k8wt746" + }, + { + "label": "Plateforme d'Imagerie Biomédicale", + "type": "child", + "id": "https://ror.org/05r25mc45" + }, + { + "label": "TBM-Core", + "type": "child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Génomique évolutive, modélisation et santé", + "type": "child", + "id": "https://ror.org/026ddbz68" + }, + { + "label": "Takuvik Joint International Laboratory", + "type": "child", + "id": "https://ror.org/04bzgtz06" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Bordeaux Imaging Center", + "type": "child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "child", + "id": "https://ror.org/034bena10" + }, + { + "label": "CEPN - Centre d'Economie de l'Université Paris Nord", + "type": "child", + "id": "https://ror.org/03k32n603" + }, + { + "label": "Chimie, Structures et Propriétés de Biomatériaux et d'Agents Thérapeutiques", + "type": "child", + "id": "https://ror.org/0343fpq57" + }, + { + "label": "Maison des Sciences de l'Homme-Alpes", + "type": "child", + "id": "https://ror.org/0467x8h16" + }, + { + "label": "Laboratoire écologie, évolution, interactions des systèmes amazoniens", + "type": "child", + "id": "https://ror.org/00gj7r351" + }, + { + "label": "STELLA MARE", + "type": "child", + "id": "https://ror.org/040r8ry56" + }, + { + "label": "Agence pour les Mathématiques en Interaction avec l'Entreprise et la Société", + "type": "child", + "id": "https://ror.org/02cmt9z73" + }, + { + "label": "Bases de données sur la Biodiversité, Ecologie, Environnement et Sociétés", + "type": "child", + "id": "https://ror.org/034gk7456" + }, + { + "label": "DMEX Centre for X-ray Imaging", + "type": "child", + "id": "https://ror.org/0213f8g15" + }, + { + "label": "Unité en Sciences Biologiques et Biotechnologies de Nantes", + "type": "child", + "id": "https://ror.org/05ef4v550" + }, + { + "label": "Matrice Extracellulaire et Dynamique Cellulaire MEDyC", + "type": "child", + "id": "https://ror.org/017p6sq53" + }, + { + "label": "Institut des Sciences de la Terre d'Orléans", + "type": "child", + "id": "https://ror.org/02t2hg116" + }, + { + "label": "Institut de Recherche sur la Biologie de l'Insecte UMR 7261", + "type": "child", + "id": "https://ror.org/04rp2mn26" + }, + { + "label": "Étude des Structures, des Processus d’Adaptation et des Changements de l’Espace", + "type": "child", + "id": "https://ror.org/052cnt662" + }, + { + "label": "Laboratoire Ligérien de Linguistique", + "type": "child", + "id": "https://ror.org/04s6f1186" + }, + { + "label": "Droit International Comparé et Européen", + "type": "child", + "id": "https://ror.org/04pwzyv45" + }, + { + "label": "Lasers, Plasmas et Procédés Photoniques", + "type": "child", + "id": "https://ror.org/01qfjp710" + }, + { + "label": "Centre universitaire de recherches sur l'Action Publique et le Politique Épistémologie & Sciences Sociales", + "type": "child", + "id": "https://ror.org/00rxdng69" + }, + { + "label": "Centre Gilles-Gaston Granger", + "type": "child", + "id": "https://ror.org/00axatv03" + }, + { + "label": "Irasia Recherche", + "type": "child", + "id": "https://ror.org/03bcyhr16" + }, + { + "label": "Institut de Recherches et d'Etudes sur les Mondes Arabes et Musulmans", + "type": "child", + "id": "https://ror.org/037f3ga09" + }, + { + "label": "Laboratoire d'Archéologie Médiévale et Moderne en Méditerranée", + "type": "child", + "id": "https://ror.org/05tb4mb78" + }, + { + "label": "Institut d'ethnologie méditerranéenne européenne et comparative", + "type": "child", + "id": "https://ror.org/050gdsq06" + }, + { + "label": "Temps, espaces, langages, Europe méridionale, Méditerranée", + "type": "child", + "id": "https://ror.org/010bhn875" + }, + { + "label": "Matériaux Divisés, Interfaces, Réactivité, Electrochimie", + "type": "child", + "id": "https://ror.org/00m587853" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes Macromoléculaires", + "type": "child", + "id": "https://ror.org/02hwc1z56" + }, + { + "label": "Centre d'études supérieures de civilisation médiévale", + "type": "child", + "id": "https://ror.org/005hw9085" + }, + { + "label": "Laboratoire de Mathématiques et Applications", + "type": "child", + "id": "https://ror.org/02p2rk609" + }, + { + "label": "Laboratoire Interdisciplinaire de Recherches \"Sociétés, Sensibilités, Soin\"", + "type": "child", + "id": "https://ror.org/01rb31945" + }, + { + "label": "Centre d’études en sciences sociales du religieux", + "type": "child", + "id": "https://ror.org/01kysxr05" + }, + { + "label": "Trajectoires. De la sédentarisation à l’État", + "type": "child", + "id": "https://ror.org/03wdx6c48" + }, + { + "label": "Structure et Dynamique des Langues", + "type": "child", + "id": "https://ror.org/019df2r84" + }, + { + "label": "Institut des Sciences de la Mécanique et Applications Industrielles", + "type": "child", + "id": "https://ror.org/00nbx9b54" + }, + { + "label": "Laboratoire Information Génomique et Structurale", + "type": "child", + "id": "https://ror.org/05v0fms67" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "Chimie Biologique pour le Vivant", + "type": "child", + "id": "https://ror.org/03cjyj977" + }, + { + "label": "Biologie Moléculaire Structurale et Processus Infectieux", + "type": "child", + "id": "https://ror.org/009b91528" + }, + { + "label": "Centre de Recherche d'Albi en génie des Procédés, des SOlides Divisés, de l'Énergie et de l'Environnement", + "type": "child", + "id": "https://ror.org/03cxnrt47" + }, + { + "label": "Acquisition et Analyse de Données pour l'Histoire naturelle", + "type": "child", + "id": "https://ror.org/05qhnf349" + }, + { + "label": "Observatoire des Sciences de l'Univers de Rennes", + "type": "child", + "id": "https://ror.org/05pwkex33" + }, + { + "label": "UCSD-CNRS Joint Research Chemistry Laboratory", + "type": "child", + "id": "https://ror.org/00t7axd27" + }, + { + "label": "Chronobiotron", + "type": "child", + "id": "https://ror.org/026fpwg41" + }, + { + "label": "Observatoire pour la Conservation de la Mégafaune Marine", + "type": "child", + "id": "https://ror.org/04wbg2z51" + }, + { + "label": "Architecture Histoire Technique Territoire Patrimoine", + "type": "child", + "id": "https://ror.org/05j8sgr10" + }, + { + "label": "Droit, religion, entreprise et société", + "type": "child", + "id": "https://ror.org/026p10446" + }, + { + "label": "Maison des Sciences de l'Homme Val de Loire", + "type": "child", + "id": "https://ror.org/03v4gsj38" + }, + { + "label": "GeoRessources", + "type": "child", + "id": "https://ror.org/04mq2px33" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "child", + "id": "https://ror.org/03949e763" + }, + { + "label": "Observatoire Terre et environnement de Lorraine", + "type": "child", + "id": "https://ror.org/02cyw3861" + }, + { + "label": "Huma-Num", + "type": "child", + "id": "https://ror.org/04ces3204" + }, + { + "label": "Organisation de Micro-Electronique Générale Avancée", + "type": "child", + "id": "https://ror.org/01mbkbh33" + }, + { + "label": "Laboratoire de Mathématiques et Modélisation d'Évry", + "type": "child", + "id": "https://ror.org/03jca6281" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "Chimie Biologie Innovation", + "type": "child", + "id": "https://ror.org/04bgzse17" + }, + { + "label": "Europe orientale, balkanique et médiane", + "type": "child", + "id": "https://ror.org/03ygj8248" + }, + { + "label": "Institut de Recherche en Musicologie", + "type": "child", + "id": "https://ror.org/04gf9wd48" + }, + { + "label": "Centre d’Archives en Philosophie, Histoire et Édition des Sciences", + "type": "child", + "id": "https://ror.org/03j7mz841" + }, + { + "label": "Centre de microcaractérisation Raimond Castaing", + "type": "child", + "id": "https://ror.org/03tvs6n06" + }, + { + "label": "France Génomique", + "type": "child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "CALMIP", + "type": "child", + "id": "https://ror.org/02k7ask46" + }, + { + "label": "Plateforme de chimie biologique intégrative de Strasbourg", + "type": "child", + "id": "https://ror.org/052pqt102" + }, + { + "label": "LINK - Laboratory for Innovative Key Materials and Structures", + "type": "child", + "id": "https://ror.org/03qt6f440" + }, + { + "label": "OpenEdition Center", + "type": "child", + "id": "https://ror.org/02aja8v82" + }, + { + "label": "Genopolys", + "type": "child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Laboratoire de Chimie-Physique Macromoléculaire", + "type": "child", + "id": "https://ror.org/0371yc337" + }, + { + "label": "Centre pour les humanités numériques et l'histoire de la justice", + "type": "child", + "id": "https://ror.org/02yvha224" + }, + { + "label": "AlgoSolis", + "type": "child", + "id": "https://ror.org/05481me13" + }, + { + "label": "Centre d'Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse", + "type": "child", + "id": "https://ror.org/01f5c5978" + }, + { + "label": "Passages", + "type": "child", + "id": "https://ror.org/00s40r567" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Climat, Environnement, Couplages et Incertitudes", + "type": "child", + "id": "https://ror.org/05t8ct211" + }, + { + "label": "Laboratoire de Linguistique de Nantes", + "type": "child", + "id": "https://ror.org/0009eec40" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Laboratoire de Chimie Bio-inspirée et d’Innovations Ecologiques", + "type": "child", + "id": "https://ror.org/05d362832" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "ScanMAT", + "type": "child", + "id": "https://ror.org/04fsxy317" + }, + { + "label": "PatriNat", + "type": "child", + "id": "https://ror.org/037eda396" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Institut Denis Poisson", + "type": "child", + "id": "https://ror.org/05djhd259" + }, + { + "label": "Temps, Mondes, Sociétés", + "type": "child", + "id": "https://ror.org/01nhp3z94" + }, + { + "label": "Laboratoire Lorrain de Chimie Moléculaire", + "type": "child", + "id": "https://ror.org/020azc393" + }, + { + "label": "Laboratoire de Physique et Chimie Théoriques", + "type": "child", + "id": "https://ror.org/02atkd403" + }, + { + "label": "Center for Environmental Economics - Montpellier", + "type": "child", + "id": "https://ror.org/00rwjvc96" + }, + { + "label": "Vision pour la Robotique", + "type": "child", + "id": "https://ror.org/02v6phz91" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Epigenetics, Data, Politics", + "type": "child", + "id": "https://ror.org/00rg8bd79" + }, + { + "label": "Physique pour la médecine Paris", + "type": "child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Integrative Neuroscience and Cognition Center", + "type": "child", + "id": "https://ror.org/02fgakj19" + }, + { + "label": "Centre de RMN à Très Hauts Champs de Lyon", + "type": "child", + "id": "https://ror.org/004wefe19" + }, + { + "label": "SPPIN - Saints-Pères Paris Institute for Neurosciences", + "type": "child", + "id": "https://ror.org/01a4enz31" + }, + { + "label": "Laboratoire interdisciplinaire d’études sur les réflexivités - Fonds Yan Thomas", + "type": "child", + "id": "https://ror.org/046dap961" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Light, nanomaterials, nanotechnologies", + "type": "child", + "id": "https://ror.org/01waxag60" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "Centre de recherche sur le monde iranien", + "type": "child", + "id": "https://ror.org/0302qeq32" + }, + { + "label": "RESTORE", + "type": "child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Transitions Energétiques et Environnementales", + "type": "child", + "id": "https://ror.org/04cms1b08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "Laboratoire de Mécanique Paris-Saclay", + "type": "child", + "id": "https://ror.org/01jv2ft75" + }, + { + "label": "Bordeaux Sciences Économiques", + "type": "child", + "id": "https://ror.org/014vz2d20" + }, + { + "label": "Microscopies, imageries et ressources analytiques en région Centre-Val de Loire", + "type": "child", + "id": "https://ror.org/050x42563" + }, + { + "label": "Laboratoire d’Informatique et Systèmes", + "type": "child", + "id": "https://ror.org/0257sgk90" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Observatoire Océanologique de Banyuls-sur-Mer", + "type": "child", + "id": "https://ror.org/05gz4kr37" + }, + { + "label": "Catalyse, Polymérisation, Procédés et Matériaux", + "type": "child", + "id": "https://ror.org/02f6tst70" + }, + { + "label": "Fédération de recherche Matière et Interactions", + "type": "child", + "id": "https://ror.org/02wq1s711" + }, + { + "label": "Biologie du Chloroplaste et Perception de la Lumière chez les Microalgues", + "type": "child", + "id": "https://ror.org/04ezpxa16" + }, + { + "label": "Sciences et Technologies de la Musique et du Son", + "type": "child", + "id": "https://ror.org/025xvn046" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Fédération de Chimie et Matériaux de Paris-Centre", + "type": "child", + "id": "https://ror.org/00mqc8k54" + }, + { + "label": "Formation, Innovation, Recherche, Services et Transfert en Temps-Fréquence", + "type": "child", + "id": "https://ror.org/0557mft23" + }, + { + "label": "Fédération de recherche PLAS@PAR", + "type": "child", + "id": "https://ror.org/02rmk5x23" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Centre Roland Mousnier", + "type": "child", + "id": "https://ror.org/01gapzp55" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Sciences, Normes, Démocratie", + "type": "child", + "id": "https://ror.org/033eqsk67" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Théâtre antique : textes, histoire et réception", + "type": "child", + "id": "https://ror.org/04m69ya83" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Institut Parisien de Chimie Physique et Théorique", + "type": "child", + "id": "https://ror.org/00xwwwr97" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Observatoire des sciences de l'Univers Paris-Centre Ecce Terra", + "type": "child", + "id": "https://ror.org/01365h357" + }, + { + "label": "Building Blocks for Future Electronics Laboratory", + "type": "child", + "id": "https://ror.org/01w108f05" + }, + { + "label": "Institut de la Mer de Villefranche", + "type": "child", + "id": "https://ror.org/05jpad840" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Cultures, Environnements, Arctique, Représentations, Climat", + "type": "child", + "id": "https://ror.org/01bt3e159" + }, + { + "label": "Institut photonique d'analyse non-destructive européen des matériaux anciens", + "type": "child", + "id": "https://ror.org/04k0drf78" + }, + { + "label": "Archéologie, Terre, Histoire, Sociétés", + "type": "child", + "id": "https://ror.org/011hdpx94" + }, + { + "label": "Institut de Chimie Moléculaire de l'Université de Bourgogne", + "type": "child", + "id": "https://ror.org/011ygpb73" + }, + { + "label": "Institut Chevreul", + "type": "child", + "id": "https://ror.org/048k52v18" + }, + { + "label": "Paris School of Economics", + "type": "child", + "id": "https://ror.org/01qtp1053" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "Laboratoire Ondes et Milieux Complexes", + "type": "child", + "id": "https://ror.org/02sb3b652" + }, + { + "label": "UMR Géographie-cités", + "type": "related", + "id": "https://ror.org/05yqfzf35" + }, + { + "label": "Campus Condorcet", + "type": "related", + "id": "https://ror.org/00cd48p72" + }, + { + "label": "Centre for Nanoscience and Nanotechnology", + "type": "child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Département de mathématiques et applications", + "type": "child", + "id": "https://ror.org/03k9z2963" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Genome Integrity, RNA and Cancer", + "type": "child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "type": "child", + "id": "https://ror.org/002zc3t08" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "child", + "id": "https://ror.org/0211r2z47" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institute of Integrative Biology of the Cell", + "type": "child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Laboratoire Aimé Cotton", + "type": "child", + "id": "https://ror.org/021xexe56" + }, + { + "label": "Laboratoire de Chimie Physique", + "type": "child", + "id": "https://ror.org/016r2hq43" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire pour l'utilisation des lasers intenses", + "type": "child", + "id": "https://ror.org/002ty1h48" + }, + { + "label": "Laboratoire de physique des Solides", + "type": "child", + "id": "https://ror.org/02dyaew97" + }, + { + "label": "Laboratory of Theoretical Physics and Statistical Models", + "type": "child", + "id": "https://ror.org/00w67e447" + }, + { + "label": "Institut des Neurosciences Paris-Saclay", + "type": "child", + "id": "https://ror.org/002v40q27" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Albert Fert", + "type": "child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Agronomie", + "type": "child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "child", + "id": "https://ror.org/030przz70" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "type": "child", + "id": "https://ror.org/02chvqy57" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "related", + "id": "https://ror.org/05v727m31" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/02fkq9g11.json b/v1.43/02fkq9g11.json new file mode 100644 index 000000000..f42d803bd --- /dev/null +++ b/v1.43/02fkq9g11.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 1808956, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 36.18389, + "lng": 113.10528, + "name": "Changzhi" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02fkq9g11", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.czszyyjsfsyy.cn" + } + ], + "names": [ + { + "value": "Affiliated Hospital of Changzhi Institute of Traditional Chinese Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Changzhi Traditional Chinese Medicine Hospital", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "长治市中医研究所附属医院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02ftfma65.json b/v1.43/02ftfma65.json new file mode 100644 index 000000000..4eeb832f6 --- /dev/null +++ b/v1.43/02ftfma65.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5967629, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.54594, + "lng": -80.25599, + "name": "Guelph" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100015516" + ], + "preferred": "501100015516" + } + ], + "id": "https://ror.org/02ftfma65", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uoguelph.ca/alliance/" + } + ], + "names": [ + { + "value": "Ontario Agri-Food Innovation Alliance", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Agricultural Research Institute of Ontario", + "type": "related", + "id": "https://ror.org/011n4tk56" + }, + { + "label": "University of Guelph", + "type": "related", + "id": "https://ror.org/01r7awg59" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02fy17q72.json b/v1.43/02fy17q72.json new file mode 100644 index 000000000..7004924e6 --- /dev/null +++ b/v1.43/02fy17q72.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3648522, + "geonames_details": { + "country_code": "VE", + "country_name": "Venezuela", + "lat": 10.0647, + "lng": -69.35703, + "name": "Barquisimeto" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0601 0063" + ], + "preferred": "0000 0005 0601 0063" + } + ], + "id": "https://ror.org/02fy17q72", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aulavirtual.web.ve" + } + ], + "names": [ + { + "value": "Fundación Aula Virtual", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Aula Virtual Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FAV", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02gmp5156.json b/v1.43/02gmp5156.json new file mode 100644 index 000000000..eeb858099 --- /dev/null +++ b/v1.43/02gmp5156.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 703448, + "geonames_details": { + "country_code": "UA", + "country_name": "Ukraine", + "lat": 50.45466, + "lng": 30.5238, + "name": "Kyiv" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100018227" + ], + "preferred": "100018227" + }, + { + "type": "wikidata", + "all": [ + "Q56367740" + ], + "preferred": "Q56367740" + } + ], + "id": "https://ror.org/02gmp5156", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://nrfu.org.ua" + }, + { + "type": "wikipedia", + "value": "https://uk.wikipedia.org/wiki/%D0%9D%D0%B0%D1%86%D1%96%D0%BE%D0%BD%D0%B0%D0%BB%D1%8C%D0%BD%D0%B8%D0%B9_%D1%84%D0%BE%D0%BD%D0%B4_%D0%B4%D0%BE%D1%81%D0%BB%D1%96%D0%B4%D0%B6%D0%B5%D0%BD%D1%8C_%D0%A3%D0%BA%D1%80%D0%B0%D1%97%D0%BD%D0%B8" + } + ], + "names": [ + { + "value": "National Research Foundation of Ukraine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Research Fund of Ukraine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Національний фонд досліджень України", + "types": [ + "label" + ], + "lang": "uk" + }, + { + "value": "NRFU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02gp35s66.json b/v1.43/02gp35s66.json new file mode 100644 index 000000000..10c964b1f --- /dev/null +++ b/v1.43/02gp35s66.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3463030, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -25.54778, + "lng": -54.58806, + "name": "Foz do Iguaçu" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0509 0033" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5574032" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.449851.5" + ], + "preferred": "grid.449851.5" + } + ], + "id": "https://ror.org/02gp35s66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://portal.unila.edu.br" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Federal_University_for_Latin_American_Integration" + } + ], + "names": [ + { + "value": "Universidade Federal da Integração Latino-Americana", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Federal University for Latin American Integration", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UNILA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02gqg2511.json b/v1.43/02gqg2511.json new file mode 100644 index 000000000..9aa6599f8 --- /dev/null +++ b/v1.43/02gqg2511.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100015091" + ], + "preferred": "501100015091" + } + ], + "id": "https://ror.org/02gqg2511", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.clahrc-southlondon.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Collaboration for Leadership in Applied Health Research and Care South London", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC South London", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care South London", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02h919y47.json b/v1.43/02h919y47.json new file mode 100644 index 000000000..86ebf0f80 --- /dev/null +++ b/v1.43/02h919y47.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2938913, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.87167, + "lng": 8.65027, + "name": "Darmstadt" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0621 7921" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q692163" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.426436.1" + ], + "preferred": "grid.426436.1" + }, + { + "type": "fundref", + "all": [ + "501100010560" + ], + "preferred": "501100010560" + } + ], + "id": "https://ror.org/02h919y47", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.eumetsat.int" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/EUMETSAT" + } + ], + "names": [ + { + "value": "European Organisation for the Exploitation of Meteorological Satellites", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Europäische Organisation für die Nutzung meteorologischer Satelliten", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "EUMETSAT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02hb5yj49.json b/v1.43/02hb5yj49.json new file mode 100644 index 000000000..1e6a148cf --- /dev/null +++ b/v1.43/02hb5yj49.json @@ -0,0 +1,127 @@ +{ + "locations": [ + { + "geonames_id": 4994358, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.96336, + "lng": -85.66809, + "name": "Grand Rapids" + } + } + ], + "established": 2022, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q123561060" + ], + "preferred": "Q123561060" + } + ], + "id": "https://ror.org/02hb5yj49", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://corewellhealth.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Corewell_Health" + } + ], + "names": [ + { + "value": "Corewell Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Beaumont Health", + "type": "predecessor", + "id": "https://ror.org/05g2hd893" + }, + { + "label": "Spectrum Health", + "type": "predecessor", + "id": "https://ror.org/02ahxdd04" + }, + { + "label": "Lakeland Health", + "type": "predecessor", + "id": "https://ror.org/02x3f7722" + }, + { + "label": "Corewell Health Butterworth Hospital", + "type": "child", + "id": "https://ror.org/05x643e19" + }, + { + "label": "Helen DeVos Children's Hospital", + "type": "child", + "id": "https://ror.org/03bk8p931" + }, + { + "label": "Corewell Health Blodgett Hospital", + "type": "child", + "id": "https://ror.org/00qy68j92" + }, + { + "label": "Corewell Health Reed City Hospital", + "type": "child", + "id": "https://ror.org/04xcq9q51" + }, + { + "label": "Corewell Health Zeeland Hospital", + "type": "child", + "id": "https://ror.org/053jm8142" + }, + { + "label": "Corewell Health Children's", + "type": "child", + "id": "https://ror.org/03nr10290" + }, + { + "label": "Beaumont Hospital, Dearborn", + "type": "child", + "id": "https://ror.org/03x4pp342" + }, + { + "label": "Corewell Health William Beaumont University Hospital", + "type": "child", + "id": "https://ror.org/058sakv40" + }, + { + "label": "Beaumont Hospital, Royal Oak", + "type": "child", + "id": "https://ror.org/03artm726" + }, + { + "label": "Beaumont Hospital, Troy", + "type": "child", + "id": "https://ror.org/05x9ffc66" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02hj2xr21.json b/v1.43/02hj2xr21.json new file mode 100644 index 000000000..6b7969c0f --- /dev/null +++ b/v1.43/02hj2xr21.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 3583361, + "geonames_details": { + "country_code": "SV", + "country_name": "El Salvador", + "lat": 13.68935, + "lng": -89.18718, + "name": "San Salvador" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2303 2126" + ], + "preferred": "0000 0001 2303 2126" + }, + { + "type": "grid", + "all": [ + "grid.472386.c" + ], + "preferred": "grid.472386.c" + }, + { + "type": "wikidata", + "all": [ + "Q29002767" + ], + "preferred": "Q29002767" + } + ], + "id": "https://ror.org/02hj2xr21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uls.edu.sv" + } + ], + "names": [ + { + "value": "Universidad Luterana Salvadoreña", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Salvadoran Lutheran University", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ULS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02hn9hc43.json b/v1.43/02hn9hc43.json new file mode 100644 index 000000000..f687475bc --- /dev/null +++ b/v1.43/02hn9hc43.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2659994, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.516, + "lng": 6.63282, + "name": "Lausanne" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02hn9hc43", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.swisslumix.com" + } + ], + "names": [ + { + "value": "SwissLumix (Switzerland)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SwissLumix", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SwissLumix Sarl", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02hq5p840.json b/v1.43/02hq5p840.json new file mode 100644 index 000000000..eb093a15a --- /dev/null +++ b/v1.43/02hq5p840.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 11995365, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.59866, + "lng": -3.71579, + "name": "Tres Cantos" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1794 0365" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30255894" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.433409.9" + ], + "preferred": "grid.433409.9" + } + ], + "id": "https://ror.org/02hq5p840", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.genetrix.es/" + } + ], + "names": [ + { + "value": "Genetrix (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02hqqna27.json b/v1.43/02hqqna27.json new file mode 100644 index 000000000..431ef09ea --- /dev/null +++ b/v1.43/02hqqna27.json @@ -0,0 +1,74 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1975, + "external_ids": [ + { + "all": [ + "Q7590700" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.416544.6" + ], + "preferred": "grid.416544.6", + "type": "grid" + } + ], + "id": "https://ror.org/02hqqna27", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/st-michaels-hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/St._Michael%27s_Hospital_(Bristol)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "St Michael's Hospital" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/02j9n6e35.json b/v1.43/02j9n6e35.json new file mode 100644 index 000000000..3d28e291a --- /dev/null +++ b/v1.43/02j9n6e35.json @@ -0,0 +1,74 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [ + { + "all": [ + "grid.423639.9" + ], + "preferred": "grid.423639.9", + "type": "grid" + }, + { + "all": [ + "Q3781573" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02j9n6e35", + "links": [ + { + "type": "website", + "value": "https://www.cells.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ALBA_(synchrotron)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.48569, + "lng": 2.12171, + "name": "Cerdanyola del Vallès" + }, + "geonames_id": 6356285 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "ALBA Synchrotron (Spain)" + } + ], + "relationships": [ + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/02jx3x895.json b/v1.43/02jx3x895.json new file mode 100644 index 000000000..8a0b5cd9b --- /dev/null +++ b/v1.43/02jx3x895.json @@ -0,0 +1,247 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1826, + "external_ids": [ + { + "all": [ + "501100000765", + "501100000685", + "501100008538", + "501100001285", + "501100006154", + "501100001299", + "501100001283", + "501100006637", + "501100001281", + "501100001282", + "501100000845", + "501100013915" + ], + "preferred": "501100000765", + "type": "fundref" + }, + { + "all": [ + "grid.83440.3b" + ], + "preferred": "grid.83440.3b", + "type": "grid" + }, + { + "all": [ + "0000 0001 2190 1201" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q193196" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02jx3x895", + "links": [ + { + "type": "website", + "value": "http://www.ucl.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_College_London" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Coleg Prifysgol Llundain" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "London University" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UCL" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University College London" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University College, London" + } + ], + "relationships": [ + { + "label": "Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics", + "type": "child", + "id": "https://ror.org/047d2d387" + }, + { + "label": "Institute of Structural and Molecular Biology", + "type": "child", + "id": "https://ror.org/05wsetc54" + }, + { + "label": "MRC Clinical Trials Unit at UCL", + "type": "child", + "id": "https://ror.org/001mm6w73" + }, + { + "label": "MRC Laboratory for Molecular Cell Biology", + "type": "child", + "id": "https://ror.org/00fv61j67" + }, + { + "label": "MRC Prion Unit", + "type": "child", + "id": "https://ror.org/043j90n04" + }, + { + "label": "MRC Unit for Lifelong Health and Ageing", + "type": "child", + "id": "https://ror.org/03kpvby98" + }, + { + "label": "NIHR Moorfields Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/004hydx84" + }, + { + "label": "Sierra Leone Urban Research Centre", + "type": "child", + "id": "https://ror.org/05s21y527" + }, + { + "label": "UCL Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/03r9qc142" + }, + { + "label": "University College London Qatar", + "type": "child", + "id": "https://ror.org/0078bd381" + }, + { + "label": "Wellcome / EPSRC Centre for Interventional and Surgical Sciences", + "type": "child", + "id": "https://ror.org/03r42r570" + }, + { + "label": "Wellcome Centre for Human Neuroimaging", + "type": "child", + "id": "https://ror.org/02704qw51" + }, + { + "label": "University of London", + "type": "parent", + "id": "https://ror.org/04cw6st05" + }, + { + "label": "Great Ormond Street Hospital", + "type": "related", + "id": "https://ror.org/00zn2c847" + }, + { + "label": "Moorfields Eye Hospital", + "type": "related", + "id": "https://ror.org/03tb37539" + }, + { + "label": "NIHR Queen Square Dementia Biomedical Research Unit", + "type": "related", + "id": "https://ror.org/04ksb3515" + }, + { + "label": "National Hospital for Neurology and Neurosurgery", + "type": "related", + "id": "https://ror.org/048b34d51" + }, + { + "label": "Royal National Orthopaedic Hospital", + "type": "related", + "id": "https://ror.org/043j9bc42" + }, + { + "label": "Royal National Orthopaedic Hospital NHS Trust", + "type": "related", + "id": "https://ror.org/03dx46b94" + }, + { + "label": "The Royal Free Hospital", + "type": "related", + "id": "https://ror.org/01ge67z96" + }, + { + "label": "University College Hospital", + "type": "related", + "id": "https://ror.org/00wrevg56" + }, + { + "label": "University College Hospital at Westmoreland Street", + "type": "related", + "id": "https://ror.org/02pkrn365" + }, + { + "label": "Wellcome Trust Centre for the History of Medicine", + "type": "related", + "id": "https://ror.org/05d64cx77" + }, + { + "label": "Whittington Hospital", + "type": "related", + "id": "https://ror.org/01ckbq028" + }, + { + "label": "UCL Hospitals Charitable Foundation", + "type": "child", + "id": "https://ror.org/05mz0pr34" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/02k3baz05.json b/v1.43/02k3baz05.json new file mode 100644 index 000000000..9df1f9b6d --- /dev/null +++ b/v1.43/02k3baz05.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1993, + "external_ids": [ + { + "all": [ + "grid.469436.a" + ], + "preferred": "grid.469436.a", + "type": "grid" + }, + { + "all": [ + "0000 0001 2188 7489" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/02k3baz05", + "links": [ + { + "type": "website", + "value": "http://www.teologialugano.ch/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.01008, + "lng": 8.96004, + "name": "Lugano" + }, + "geonames_id": 2659836 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Facoltà di Teologia di Lugano" + } + ], + "relationships": [ + { + "label": "Università della Svizzera italiana", + "type": "parent", + "id": "https://ror.org/03c4atk17" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/02ks8qq67.json b/v1.43/02ks8qq67.json new file mode 100644 index 000000000..77cf79a67 --- /dev/null +++ b/v1.43/02ks8qq67.json @@ -0,0 +1,162 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1825, + "external_ids": [ + { + "all": [ + "0000 0001 2149 4407" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100003825" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q265058" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.5018.c" + ], + "preferred": "grid.5018.c", + "type": "grid" + } + ], + "id": "https://ror.org/02ks8qq67", + "links": [ + { + "type": "website", + "value": "http://mta.hu/english/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Hungarian_Academy_of_Sciences" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 47.49835, + "lng": 19.04045, + "name": "Budapest" + }, + "geonames_id": 3054643 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hungarian Academy of Sciences" + }, + { + "lang": "hu", + "types": [ + "label" + ], + "value": "Magyar Tudományos Akadémia" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MTA" + } + ], + "relationships": [ + { + "label": "Alfréd Rényi Institute of Mathematics", + "type": "child", + "id": "https://ror.org/03vw74f64" + }, + { + "label": "HUN-REN Szegedi Biológiai Kutatóközpont", + "type": "child", + "id": "https://ror.org/016gb1631" + }, + { + "label": "Centre for Ecological Research", + "type": "child", + "id": "https://ror.org/04bhfmv97" + }, + { + "label": "Centre for Economic and Regional Studies", + "type": "child", + "id": "https://ror.org/051ea1411" + }, + { + "label": "Centre for Energy Research", + "type": "child", + "id": "https://ror.org/05wswj918" + }, + { + "label": "Centre for Social Sciences", + "type": "child", + "id": "https://ror.org/0492k9x16" + }, + { + "label": "Institute for Computer Science and Control", + "type": "child", + "id": "https://ror.org/0249v7n71" + }, + { + "label": "HUN-REN Institute of Experimental Medicine", + "type": "child", + "id": "https://ror.org/01jsgmp44" + }, + { + "label": "Library and Information Centre of the Hungarian Academy of Sciences", + "type": "child", + "id": "https://ror.org/04ws47v52" + }, + { + "label": "MTA-SZTE Research Group on Artificial Intelligence", + "type": "child", + "id": "https://ror.org/0507fk326" + }, + { + "label": "Research Centre for Astronomy and Earth Sciences", + "type": "child", + "id": "https://ror.org/036wvs663" + }, + { + "label": "Research Centre for the Humanities", + "type": "child", + "id": "https://ror.org/03wxxbs05" + }, + { + "label": "Wigner Research Centre for Physics", + "type": "child", + "id": "https://ror.org/035dsb084" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/02kvgs502.json b/v1.43/02kvgs502.json new file mode 100644 index 000000000..dac524614 --- /dev/null +++ b/v1.43/02kvgs502.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1816971, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 38.87288, + "lng": 115.46246, + "name": "Baoding" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02kvgs502", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.yingligroup.com" + } + ], + "names": [ + { + "value": "Yingli Energy Technology Group (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Yingli Energy Technology Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yingli", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "英利能源科技集团", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02kvxyf05.json b/v1.43/02kvxyf05.json new file mode 100644 index 000000000..ef7c4a57f --- /dev/null +++ b/v1.43/02kvxyf05.json @@ -0,0 +1,320 @@ +{ + "locations": [ + { + "geonames_id": 6455402, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.8205, + "lng": 2.1311, + "name": "Le Chesnay-Rocquencourt" + } + } + ], + "established": 1967, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2186 3954", + "0000 0001 2164 1438" + ], + "preferred": "0000 0001 2164 1438" + }, + { + "type": "fundref", + "all": [ + "100012950" + ], + "preferred": "100012950" + }, + { + "type": "wikidata", + "all": [ + "Q1146208" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5328.c" + ], + "preferred": "grid.5328.c" + } + ], + "id": "https://ror.org/02kvxyf05", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.inria.fr/en/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/French_Institute_for_Research_in_Computer_Science_and_Automation" + } + ], + "names": [ + { + "value": "French Institute for Research in Computer Science and Automation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut de recherche en informatique et en automatique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut national de recherche en informatique et en automatique", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "INRIA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Biometry and Evolutionary Biology Laboratory", + "type": "child", + "id": "https://ror.org/03skt0t88" + }, + { + "label": "Centre de Mathématiques Appliquées", + "type": "child", + "id": "https://ror.org/012e1xn46" + }, + { + "label": "Cognition Behaviour Technology", + "type": "child", + "id": "https://ror.org/04d9wv909" + }, + { + "label": "Computer Science Laboratory of the École Polytechnique", + "type": "child", + "id": "https://ror.org/04afed728" + }, + { + "label": "Département d'Informatique", + "type": "child", + "id": "https://ror.org/05y6rqs46" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Fédération Informatique de Lyon", + "type": "child", + "id": "https://ror.org/054f5fc35" + }, + { + "label": "Grenoble Computer Science Laboratory", + "type": "child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Inria Bordeaux - Sud-Ouest Research Centre", + "type": "child", + "id": "https://ror.org/03tjcj052" + }, + { + "label": "Inria Grenoble - Rhône-Alpes research centre", + "type": "child", + "id": "https://ror.org/00n8d6z93" + }, + { + "label": "Inria Nancy - Grand-Est research centre", + "type": "child", + "id": "https://ror.org/03fcjvn64" + }, + { + "label": "Inria Rennes - Bretagne Atlantique Research Centre", + "type": "child", + "id": "https://ror.org/04040yw90" + }, + { + "label": "Inria Saclay - Île-de-France Research Centre", + "type": "child", + "id": "https://ror.org/0315e5x55" + }, + { + "label": "Inria research centre Lille - Nord Europe", + "type": "child", + "id": "https://ror.org/04eej9726" + }, + { + "label": "Institut de Mathématiques de Bordeaux", + "type": "child", + "id": "https://ror.org/05m3r1b84" + }, + { + "label": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "type": "child", + "id": "https://ror.org/00myn0z94" + }, + { + "label": "Institut Élie Cartan de Lorraine", + "type": "child", + "id": "https://ror.org/04rvw8791" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Paul Painlevé", + "type": "child", + "id": "https://ror.org/043n4fm24" + }, + { + "label": "Laboratoire d'Informatique, Signaux et Systèmes de Sophia Antipolis", + "type": "child", + "id": "https://ror.org/01215r597" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratoire des Sciences du Numérique de Nantes", + "type": "child", + "id": "https://ror.org/02snf8m58" + }, + { + "label": "Laboratory Preuves, Programmes et Systèmes", + "type": "child", + "id": "https://ror.org/046p9e825" + }, + { + "label": "Laboratory of Mathematics and their Applications", + "type": "child", + "id": "https://ror.org/00g669j87" + }, + { + "label": "Lorraine Research Laboratory in Computer Science and its Applications", + "type": "child", + "id": "https://ror.org/02vnf0c38" + }, + { + "label": "Maison de la Simulation", + "type": "child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Montpellier Laboratory of Informatics, Robotics and Microelectronics", + "type": "child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Research Centre Inria Sophia Antipolis - Méditerranée", + "type": "child", + "id": "https://ror.org/01nzkaw91" + }, + { + "label": "Sciences et Technologies des Cultures et Sociétés Numériques", + "type": "child", + "id": "https://ror.org/02125p091" + }, + { + "label": "Unit of Mathematics, Pure and Applied", + "type": "child", + "id": "https://ror.org/05n21n105" + }, + { + "label": "Wave Propagation Mathematical Study and Simulation", + "type": "child", + "id": "https://ror.org/03gvm2667" + }, + { + "label": "Centre de Recherche en Informatique, Signal et Automatique de Lille", + "type": "child", + "id": "https://ror.org/05vrs3189" + }, + { + "label": "Empenn", + "type": "child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Japanese-French Laboratory for Informatics", + "type": "child", + "id": "https://ror.org/007xn7v02" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "InBio: Experimental and Computational Methods for Modeling Cellular Processes", + "type": "child", + "id": "https://ror.org/01tnxwc41" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "related", + "id": "https://ror.org/05v727m31" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02kw1ws04.json b/v1.43/02kw1ws04.json new file mode 100644 index 000000000..1b9d95646 --- /dev/null +++ b/v1.43/02kw1ws04.json @@ -0,0 +1,79 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1087 9968" + ], + "preferred": "0000 0005 1087 9968" + } + ], + "id": "https://ror.org/02kw1ws04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bigai.ai" + } + ], + "names": [ + { + "value": "Beijing Institute for General Artificial Intelligence", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Beijing Institute for General Artificial Intelligence (BIGAI)", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "北京通用人工智能研究院", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "BIGAI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02mb2dn67.json b/v1.43/02mb2dn67.json new file mode 100644 index 000000000..4a47daa38 --- /dev/null +++ b/v1.43/02mb2dn67.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 1793511, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 37.86944, + "lng": 112.56028, + "name": "Taiyuan" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8342 6380" + ], + "preferred": "0000 0004 8342 6380" + } + ], + "id": "https://ror.org/02mb2dn67", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sx.sgcc.com.cn" + } + ], + "names": [ + { + "value": "State Grid Shanxi Electric Power Company (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "国网山西省电力公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02mdbnd10.json b/v1.43/02mdbnd10.json new file mode 100644 index 000000000..c67530920 --- /dev/null +++ b/v1.43/02mdbnd10.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2751792, + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 53.20139, + "lng": 5.80859, + "name": "Leeuwarden" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1793 4571" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3920759" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.450080.9" + ], + "preferred": "grid.450080.9" + } + ], + "id": "https://ror.org/02mdbnd10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.hvhl.nl" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Van_Hall_Larenstein" + } + ], + "names": [ + { + "value": "Van Hall Larenstein University of Applied Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Van Hall Larenstein", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hogeschool Van Hall Larenstein", + "types": [ + "label" + ], + "lang": "nl" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02mks6v46.json b/v1.43/02mks6v46.json new file mode 100644 index 000000000..bb92f1eba --- /dev/null +++ b/v1.43/02mks6v46.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1837, + "external_ids": [ + { + "all": [ + "grid.254921.9" + ], + "preferred": "grid.254921.9", + "type": "grid" + }, + { + "all": [ + "0000 0001 2301 338X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1179599" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02mks6v46", + "links": [ + { + "type": "website", + "value": "http://www.depauw.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/DePauw_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.64449, + "lng": -86.86473, + "name": "Greencastle" + }, + "geonames_id": 4258273 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "DePauw University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Indiana Asbury University" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/02mnw9q71.json b/v1.43/02mnw9q71.json new file mode 100644 index 000000000..4554c475d --- /dev/null +++ b/v1.43/02mnw9q71.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 3026108, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.76507, + "lng": 2.26655, + "name": "Châtenay-Malabry" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0368 8779" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q51781179" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503249.9" + ], + "preferred": "grid.503249.9" + } + ], + "id": "https://ror.org/02mnw9q71", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.umr-cnrs8612.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Institut Galien Paris-Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute Galien Paris-Saclay", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Institut Galien Paris Sud", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IGPS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut de Chimie", + "type": "parent", + "id": "https://ror.org/02cte4b68" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02mtt1z51.json b/v1.43/02mtt1z51.json new file mode 100644 index 000000000..83f118b84 --- /dev/null +++ b/v1.43/02mtt1z51.json @@ -0,0 +1,75 @@ +{ + "admin": { + "created": { + "date": "2021-09-23", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.511076.4" + ], + "preferred": "grid.511076.4", + "type": "grid" + }, + { + "all": [ + "100015250" + ], + "preferred": "100015250", + "type": "fundref" + } + ], + "id": "https://ror.org/02mtt1z51", + "links": [ + { + "type": "website", + "value": "https://www.bristolbrc.nihr.ac.uk/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "NIHR Bristol Biomedical Research Centre" + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + }, + { + "label": "University of Bristol", + "type": "parent", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/02ndr3r66.json b/v1.43/02ndr3r66.json new file mode 100644 index 000000000..7f0f4db1b --- /dev/null +++ b/v1.43/02ndr3r66.json @@ -0,0 +1,57 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1895, + "external_ids": [ + { + "all": [ + "grid.414221.0" + ], + "preferred": "grid.414221.0", + "type": "grid" + } + ], + "id": "https://ror.org/02ndr3r66", + "links": [ + { + "type": "website", + "value": "http://www.hopitalmarielannelongue.fr/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.78889, + "lng": 2.27078, + "name": "Le Plessis-Robinson" + }, + "geonames_id": 3002650 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Hôpital Marie Lannelongue" + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/02p4far57.json b/v1.43/02p4far57.json new file mode 100644 index 000000000..e503aea48 --- /dev/null +++ b/v1.43/02p4far57.json @@ -0,0 +1,114 @@ +{ + "locations": [ + { + "geonames_id": 4887398, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.85003, + "lng": -87.65005, + "name": "Chicago" + } + } + ], + "established": 1974, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0619 6876" + ], + "preferred": "0000 0004 0619 6876" + }, + { + "type": "fundref", + "all": [ + "100011249" + ], + "preferred": "100011249" + }, + { + "type": "wikidata", + "all": [ + "Q105710663" + ], + "preferred": "Q105710663" + } + ], + "id": "https://ror.org/02p4far57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cancer.northwestern.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Robert_H._Lurie_Comprehensive_Cancer_Center" + } + ], + "names": [ + { + "value": "Robert H. Lurie Comprehensive Cancer Center of Northwestern University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Robert H. Lurie Comprehensive Cancer Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Lurie Comprehensive Cancer Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Robert H. Lurie Cancer Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Lurie Cancer Center", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Northwestern Medicine", + "type": "parent", + "id": "https://ror.org/04fzwnh64" + }, + { + "label": "Northwestern University", + "type": "related", + "id": "https://ror.org/000e0be47" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02pg81z63.json b/v1.43/02pg81z63.json new file mode 100644 index 000000000..75aade7bc --- /dev/null +++ b/v1.43/02pg81z63.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9238 6887" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.428313.f" + ], + "preferred": "grid.428313.f" + } + ], + "id": "https://ror.org/02pg81z63", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.tauli.cat" + } + ], + "names": [ + { + "value": "Corporació Sanitària Parc Taulí", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Consorci Corporació Sanitària Parc Taulí", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Parc Taulí Sabadell Hospital Universitari", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Parc Taulí Hospital Universitari de Sabadell", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hospital de Sabadell–Parc Taulí", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Parc Taulí Hospital Universitari", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Corporación Sanitaria y Universitaria Parc Taulí", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "CSPT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02pkshz09.json b/v1.43/02pkshz09.json new file mode 100644 index 000000000..45822efdb --- /dev/null +++ b/v1.43/02pkshz09.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 706483, + "geonames_details": { + "country_code": "UA", + "country_name": "Ukraine", + "lat": 49.98081, + "lng": 36.25272, + "name": "Kharkiv" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8309 4515" + ], + "preferred": "0000 0004 8309 4515" + }, + { + "type": "grid", + "all": [ + "grid.445518.9" + ], + "preferred": "grid.445518.9" + }, + { + "type": "wikidata", + "all": [ + "Q4496336" + ], + "preferred": "Q4496336" + } + ], + "id": "https://ror.org/02pkshz09", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://univd.edu.ua" + } + ], + "names": [ + { + "value": "Kharkiv National University of Internal Affairs", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Харківський національний університет внутрішніх справ", + "types": [ + "label" + ], + "lang": "uk" + }, + { + "value": "KhNUIA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02qjttz75.json b/v1.43/02qjttz75.json new file mode 100644 index 000000000..50995e007 --- /dev/null +++ b/v1.43/02qjttz75.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432254.6" + ], + "preferred": "grid.432254.6" + } + ], + "id": "https://ror.org/02qjttz75", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.adexcop.com" + } + ], + "names": [ + { + "value": "Optimized Adaptive Control Systems", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Control Adaptativo Predictivo Experto", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "ADEX", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02qnnz951.json b/v1.43/02qnnz951.json new file mode 100644 index 000000000..a9c83a6e5 --- /dev/null +++ b/v1.43/02qnnz951.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2790869, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.45413, + "lng": 3.95229, + "name": "Mons" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2184 581X" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1742161" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.8364.9" + ], + "preferred": "grid.8364.9" + } + ], + "id": "https://ror.org/02qnnz951", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://web.umons.ac.be" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Mons" + } + ], + "names": [ + { + "value": "University of Mons", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Université de Mons", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02qqvpd39.json b/v1.43/02qqvpd39.json new file mode 100644 index 000000000..b24731bd4 --- /dev/null +++ b/v1.43/02qqvpd39.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2859147, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.25, + "lng": 11.56667, + "name": "Oberschleißheim" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q101378210" + ], + "preferred": "Q101378210" + } + ], + "id": "https://ror.org/02qqvpd39", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vetmed.uni-muenchen.de/einrichtungen/klini_einrichtungen/index.html" + } + ], + "names": [ + { + "value": "Zentrum für Klinische Tiermedizin", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Klinik für Schweine", + "type": "child", + "id": "https://ror.org/02am8se85" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02qz3vm75.json b/v1.43/02qz3vm75.json new file mode 100644 index 000000000..3621bda98 --- /dev/null +++ b/v1.43/02qz3vm75.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2886242, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.93333, + "lng": 6.95, + "name": "Cologne" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9125 6001" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q737480" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.414694.a" + ], + "preferred": "grid.414694.a" + } + ], + "id": "https://ror.org/02qz3vm75", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iqwig.de" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Institute_for_Quality_and_Efficiency_in_Health_Care" + } + ], + "names": [ + { + "value": "Institute for Quality and Efficiency in Health Care", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institut für Qualität und Wirtschaftlichkeit im Gesundheitswesen", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "IQWiG", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02r40rn49.json b/v1.43/02r40rn49.json new file mode 100644 index 000000000..adec46f19 --- /dev/null +++ b/v1.43/02r40rn49.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2078025, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -34.92866, + "lng": 138.59863, + "name": "Adelaide" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000000417963647" + ], + "preferred": "0000000417963647" + }, + { + "type": "wikidata", + "all": [ + "Q58347341" + ], + "preferred": "Q58347341" + } + ], + "id": "https://ror.org/02r40rn49", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://centraladelaide.health.sa.gov.au" + } + ], + "names": [ + { + "value": "Central Adelaide Local Health Network", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CALHN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Royal Adelaide Hospital", + "type": "child", + "id": "https://ror.org/00carf720" + }, + { + "label": "Queen Elizabeth Hospital", + "type": "child", + "id": "https://ror.org/00x362k69" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02r4fqa76.json b/v1.43/02r4fqa76.json new file mode 100644 index 000000000..19977d13c --- /dev/null +++ b/v1.43/02r4fqa76.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2641673, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 54.97328, + "lng": -1.61396, + "name": "Newcastle upon Tyne" + } + } + ], + "established": 2016, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100017507" + ], + "preferred": "501100017507" + } + ], + "id": "https://ror.org/02r4fqa76", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ncl.ac.uk/cesi/" + } + ], + "names": [ + { + "value": "National Centre for Energy Systems Integration", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "EPSRC National Centre for Energy Systems Integration", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Engineering and Physical Sciences Research Council National Centre for Energy Systems Integration", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CESI", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "EPSRC CESI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Newcastle University", + "type": "parent", + "id": "https://ror.org/01kj2bm70" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02r839n55.json b/v1.43/02r839n55.json new file mode 100644 index 000000000..f6cd0ed40 --- /dev/null +++ b/v1.43/02r839n55.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1844, + "external_ids": [ + { + "all": [ + "grid.419426.c" + ], + "preferred": "grid.419426.c", + "type": "grid" + }, + { + "all": [ + "0000 0004 0445 8115" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7401824" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02r839n55", + "links": [ + { + "type": "website", + "value": "https://www.saintmarys.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Saint_Mary%27s_College_(Indiana)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.70019, + "lng": -86.23793, + "name": "Notre Dame" + }, + "geonames_id": 8469294 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Saint Mary's College" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/02rc97e94.json b/v1.43/02rc97e94.json new file mode 100644 index 000000000..34eef41bc --- /dev/null +++ b/v1.43/02rc97e94.json @@ -0,0 +1,116 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1972, + "external_ids": [ + { + "all": [ + "501100007069" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.7778.f" + ], + "preferred": "grid.7778.f", + "type": "grid" + }, + { + "all": [ + "0000 0004 1937 0319" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1752540" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02rc97e94", + "links": [ + { + "type": "website", + "value": "http://www.unical.it/portale/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Calabria" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 39.33154, + "lng": 16.18041, + "name": "Rende" + }, + "geonames_id": 2523623 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNICAL" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Calabria" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Università della Calabria" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Universität Kalabrien" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de la calabre" + } + ], + "relationships": [ + { + "label": "INFN Gruppo Collegato di Cosenza", + "type": "related", + "id": "https://ror.org/039epzh36" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/02rrdvm96.json b/v1.43/02rrdvm96.json new file mode 100644 index 000000000..0d9a13180 --- /dev/null +++ b/v1.43/02rrdvm96.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 1796236, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.22222, + "lng": 121.45806, + "name": "Shanghai" + } + } + ], + "established": 2000, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0061 254X" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.507739.f" + ], + "preferred": "grid.507739.f" + } + ], + "id": "https://ror.org/02rrdvm96", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://cemcs.cas.cn" + } + ], + "names": [ + { + "value": "Center for Excellence in Molecular Cell Science", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Biochemistry and Cell Biology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中科院分子细胞卓越创新中心", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "Chinese Academy of Sciences", + "type": "parent", + "id": "https://ror.org/034t30j35" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02rx3b187.json b/v1.43/02rx3b187.json new file mode 100644 index 000000000..0c135f1b9 --- /dev/null +++ b/v1.43/02rx3b187.json @@ -0,0 +1,306 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2016, + "external_ids": [ + { + "all": [ + "100012952", + "100013349" + ], + "preferred": "100012952", + "type": "fundref" + }, + { + "all": [ + "grid.450307.5" + ], + "preferred": "grid.450307.5", + "type": "grid" + }, + { + "all": [ + "Q945876" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02rx3b187", + "links": [ + { + "type": "website", + "value": "https://www.univ-grenoble-alpes.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Grenoble_Alpes_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.1787, + "lng": 5.76281, + "name": "Saint-Martin-d'Hères" + }, + "geonames_id": 2978317 + } + ], + "names": [ + { + "lang": "en", + "types": [ + "label" + ], + "value": "Grenoble Alpes University" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UGA" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Université Grenoble Alpes" + } + ], + "relationships": [ + { + "label": "Centre Interuniversitaire de MicroElectronique et Nanotechnologies", + "type": "child", + "id": "https://ror.org/000tdrn36" + }, + { + "label": "Grenoble Applied Economics Lab", + "type": "child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Grenoble Institute of Technology", + "type": "child", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "Institut Néel", + "type": "child", + "id": "https://ror.org/04dbzz632" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Institute of Environmental Geosciences", + "type": "child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Interdisciplinaire de Physique", + "type": "child", + "id": "https://ror.org/023n9q531" + }, + { + "label": "Laboratoire de Linguistique et Didactique des Langues Etrangères et Maternelles", + "type": "child", + "id": "https://ror.org/05588ks88" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Langages, Littératures, Sociétés. Études Transfrontalières et Internationales", + "type": "child", + "id": "https://ror.org/0157h5t87" + }, + { + "label": "Pierre Mendès-France University", + "type": "child", + "id": "https://ror.org/02f7wz369" + }, + { + "label": "Stendhal University", + "type": "child", + "id": "https://ror.org/03yppfm65" + }, + { + "label": "Laboratoire Environnements, Dynamiques et Territoires de Montagne", + "type": "child", + "id": "https://ror.org/02rmwrd87" + }, + { + "label": "Institut Carnot PolyNat", + "type": "child", + "id": "https://ror.org/047p7mf25" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "Laboratoire de Recherche sur les Apprentissages en Contexte", + "type": "child", + "id": "https://ror.org/05c99vk74" + }, + { + "label": "Département de Pharmacochimie Moléculaire", + "type": "child", + "id": "https://ror.org/04fhvpc68" + }, + { + "label": "Laboratoire Inter-universitaire de Psychologie: Personnalité, Cognition, Changement Social", + "type": "child", + "id": "https://ror.org/03jrb0276" + }, + { + "label": "PHotonique ELectronique et Ingénierie QuantiqueS", + "type": "child", + "id": "https://ror.org/01kbr1737" + }, + { + "label": "Laboratoire Modélisation et Exploration des Matériaux", + "type": "child", + "id": "https://ror.org/00ndvqf03" + }, + { + "label": "Maison des Sciences de l'Homme-Alpes", + "type": "child", + "id": "https://ror.org/0467x8h16" + }, + { + "label": "Agence pour les Mathématiques en Interaction avec l'Entreprise et la Société", + "type": "child", + "id": "https://ror.org/02cmt9z73" + }, + { + "label": "Laboratoire Nanotechnologies et Nanosystèmes", + "type": "child", + "id": "https://ror.org/026m44z54" + }, + { + "label": "Integrated Structural Biology Grenoble", + "type": "child", + "id": "https://ror.org/03949e763" + }, + { + "label": "Centre d'Etudes et de Recherche sur la diplomatie, l’Administration Publique et le Politique", + "type": "child", + "id": "https://ror.org/04ndt7n58" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Centre d'Etudes et de Recherches Appliquées à la Gestion", + "type": "child", + "id": "https://ror.org/0509qp208" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "child", + "id": "https://ror.org/03e044190" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération française Matériaux sous hautes vitesses de déformation. Application aux matériaux en conditions extrêmes, Procédés et structures", + "type": "child", + "id": "https://ror.org/00hgbrg14" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Centre Hospitalier Universitaire de Grenoble", + "type": "related", + "id": "https://ror.org/041rhpw39" + }, + { + "label": "AAU - Ambiances, Architectures, Urbanités", + "type": "related", + "id": "https://ror.org/05hz99a17" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "related", + "id": "https://ror.org/05v727m31" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/02rxc7m23.json b/v1.43/02rxc7m23.json new file mode 100644 index 000000000..3578716dd --- /dev/null +++ b/v1.43/02rxc7m23.json @@ -0,0 +1,135 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1952, + "external_ids": [ + { + "all": [ + "501100004435", + "501100002832" + ], + "preferred": "501100004435", + "type": "fundref" + }, + { + "all": [ + "grid.5924.a" + ], + "preferred": "grid.5924.a", + "type": "grid" + }, + { + "all": [ + "0000 0004 1937 0271" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q926068" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02rxc7m23", + "links": [ + { + "type": "website", + "value": "https://www.unav.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Navarra" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.81687, + "lng": -1.64323, + "name": "Pamplona" + }, + "geonames_id": 3114472 + } + ], + "names": [ + { + "lang": "eu", + "types": [ + "label" + ], + "value": "Nafarroako Unibertsitatea" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNAV" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Universidad de Navarra" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "University of Navarra" + } + ], + "relationships": [ + { + "label": "Asociación de Amigos de la Universidad de Navarra", + "type": "child", + "id": "https://ror.org/00qy6se24" + }, + { + "label": "Fundación Universitaria de Navarra", + "type": "child", + "id": "https://ror.org/0226mqz95" + }, + { + "label": "Clinica Universidad de Navarra", + "type": "related", + "id": "https://ror.org/03phm3r45" + }, + { + "label": "Complejo Hospitalario de Navarra", + "type": "related", + "id": "https://ror.org/011787436" + }, + { + "label": "Navarre Institute of Health Research", + "type": "related", + "id": "https://ror.org/023d5h353" + }, + { + "label": "Fundación para la Investigación Médica Aplicada", + "type": "related", + "id": "https://ror.org/01qew8q20" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/02st4q439.json b/v1.43/02st4q439.json new file mode 100644 index 000000000..1d74604d9 --- /dev/null +++ b/v1.43/02st4q439.json @@ -0,0 +1,100 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1959, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2286 3155" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2388377" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418214.a" + ], + "preferred": "grid.418214.a" + } + ], + "id": "https://ror.org/02st4q439", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://icsn.cnrs.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Institut_de_Chimie_des_Substances_Naturelles" + } + ], + "names": [ + { + "value": "Institut de Chimie des Substances Naturelles", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute for the chemistry of natural substances", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ICSN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02stdqb15.json b/v1.43/02stdqb15.json new file mode 100644 index 000000000..647b47592 --- /dev/null +++ b/v1.43/02stdqb15.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 5967629, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.54594, + "lng": -80.25599, + "name": "Guelph" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9225 0217" + ], + "preferred": "0000 0004 9225 0217" + }, + { + "type": "fundref", + "all": [ + "100015900" + ], + "preferred": "100015900" + } + ], + "id": "https://ror.org/02stdqb15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://pettrust.uoguelph.ca" + } + ], + "names": [ + { + "value": "OVC Pet Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ontario Veterinary College Pet Trust", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ontario Veterinary College", + "type": "parent", + "id": "https://ror.org/04frvgs13" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02trgdk48.json b/v1.43/02trgdk48.json new file mode 100644 index 000000000..eefdd88c8 --- /dev/null +++ b/v1.43/02trgdk48.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3110044, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.31283, + "lng": -1.97499, + "name": "Donostia / San Sebastian" + } + } + ], + "established": 1983, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9388 0529" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.424978.4" + ], + "preferred": "grid.424978.4" + } + ], + "id": "https://ror.org/02trgdk48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gaia.es" + } + ], + "names": [ + { + "value": "Association of Electronic and Information Technologies", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Asociación Cluster de Telecomunicaciones", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "GAIA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02vjkv261.json b/v1.43/02vjkv261.json new file mode 100644 index 000000000..2bb26efe4 --- /dev/null +++ b/v1.43/02vjkv261.json @@ -0,0 +1,1324 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2186 6389" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100001677" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1474517" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.7429.8" + ], + "preferred": "grid.7429.8" + } + ], + "id": "https://ror.org/02vjkv261", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.inserm.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Inserm" + } + ], + "names": [ + { + "value": "Inserm", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "French Institute of Health and Medical Research", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Institut National de la Santé et de la Recherche Médicale", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "INSERM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Adaptateurs de Signalisation en Hématologie", + "type": "child", + "id": "https://ror.org/03837fc46" + }, + { + "label": "Adhesion and Inflammation Lab", + "type": "child", + "id": "https://ror.org/055ymkj32" + }, + { + "label": "Laboratoire d’Imagerie Biomédicale", + "type": "child", + "id": "https://ror.org/02b9znm90" + }, + { + "label": "Cancer Research Center of Lyon", + "type": "child", + "id": "https://ror.org/02mgw3155" + }, + { + "label": "Cancer Research Center of Toulouse", + "type": "child", + "id": "https://ror.org/003412r28" + }, + { + "label": "Cancer Thematics Institute", + "type": "child", + "id": "https://ror.org/04zdwr798" + }, + { + "label": "Cell Biology, Development and Evolution", + "type": "child", + "id": "https://ror.org/024k3xe80" + }, + { + "label": "Center for Interdisciplinary Research in Biology", + "type": "child", + "id": "https://ror.org/01mvzn566" + }, + { + "label": "Center for Research and Interdisciplinarity", + "type": "child", + "id": "https://ror.org/00zbj9525" + }, + { + "label": "Center for Research in Medicine, Science, Health, Mental Health and Society", + "type": "child", + "id": "https://ror.org/02v2jyq75" + }, + { + "label": "Center for Research on Inflammation", + "type": "child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Centre Méditerranéen de Médecine Moléculaire", + "type": "child", + "id": "https://ror.org/029rfe283" + }, + { + "label": "Centre d'Immunologie et des Maladies Infectieuses", + "type": "child", + "id": "https://ror.org/0375b8f90" + }, + { + "label": "Centre de Biochimie Structurale", + "type": "child", + "id": "https://ror.org/0189yvq06" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Centre de Recherche en Cancérologie et Immunologie Intégrée Nantes Angers", + "type": "child", + "id": "https://ror.org/003g1aw90" + }, + { + "label": "Centre de Recherche en Cancérologie de Marseille", + "type": "child", + "id": "https://ror.org/0494jpz02" + }, + { + "label": "Centre de Référence Déficits Immunitaires Héréditaires", + "type": "child", + "id": "https://ror.org/009p5nb11" + }, + { + "label": "Centre d’Immunologie de Marseille-Luminy", + "type": "child", + "id": "https://ror.org/03vyjkj45" + }, + { + "label": "Cognition, Action, and Sensorimotor Plasticity", + "type": "child", + "id": "https://ror.org/03xe54902" + }, + { + "label": "Cognitive Neuroimaging Lab", + "type": "child", + "id": "https://ror.org/056wdpc91" + }, + { + "label": "Délégation Paris 11", + "type": "child", + "id": "https://ror.org/0589k3111" + }, + { + "label": "Délégation Paris 12", + "type": "child", + "id": "https://ror.org/00sbttv49" + }, + { + "label": "Délégation Paris 5", + "type": "child", + "id": "https://ror.org/02e0y6e06" + }, + { + "label": "Délégation Paris 6", + "type": "child", + "id": "https://ror.org/03rt48n94" + }, + { + "label": "Délégation Paris 7", + "type": "child", + "id": "https://ror.org/00bw5n526" + }, + { + "label": "Délégation Régionale Auvergne-Rhône-Alpes", + "type": "child", + "id": "https://ror.org/0530j9m17" + }, + { + "label": "Délégation Régionale Est", + "type": "child", + "id": "https://ror.org/04kv7c795" + }, + { + "label": "Délégation Régionale Grand Ouest", + "type": "child", + "id": "https://ror.org/01qa4rf46" + }, + { + "label": "Délégation Régionale Nord Ouest", + "type": "child", + "id": "https://ror.org/00jmxvy70" + }, + { + "label": "Délégation Régionale Nouvelle-Aquitaine", + "type": "child", + "id": "https://ror.org/044rb3f07" + }, + { + "label": "Délégation Régionale Occitanie Méditerranée", + "type": "child", + "id": "https://ror.org/01ddr6d46" + }, + { + "label": "Délégation Régionale Occitanie Pyrénées", + "type": "child", + "id": "https://ror.org/03xssrp53" + }, + { + "label": "Délégation Régionale Provence-Alpes-Côte d’Azur et Corse", + "type": "child", + "id": "https://ror.org/01s8rwd67" + }, + { + "label": "Electrophysiology and Heart Modeling Institute", + "type": "child", + "id": "https://ror.org/00jsv7j98" + }, + { + "label": "Equipe Soutenue par la Région et par l'Inserm", + "type": "child", + "id": "https://ror.org/03e801006" + }, + { + "label": "Genetics, Genomics and Bioinformatics", + "type": "child", + "id": "https://ror.org/01rfstj90" + }, + { + "label": "Genetique Reproduction and Developpement", + "type": "child", + "id": "https://ror.org/052d1cv78" + }, + { + "label": "Grenoble Institute of Neurosciences", + "type": "child", + "id": "https://ror.org/04as3rk94" + }, + { + "label": "Hemostase Inflammation Thrombosis", + "type": "child", + "id": "https://ror.org/03ka94606" + }, + { + "label": "Imagine Institute for Genetic Diseases", + "type": "child", + "id": "https://ror.org/05rq3rb55" + }, + { + "label": "Imaging and Brain", + "type": "child", + "id": "https://ror.org/01eem7c55" + }, + { + "label": "Immunity and Cancer", + "type": "child", + "id": "https://ror.org/01zefvs55" + }, + { + "label": "Immunology, Inflammation, Infectiology and Microbiology", + "type": "child", + "id": "https://ror.org/00r454w59" + }, + { + "label": "Inserm Transfert", + "type": "child", + "id": "https://ror.org/01wftfc57" + }, + { + "label": "Institute for Advanced Biosciences", + "type": "child", + "id": "https://ror.org/05kwbf598" + }, + { + "label": "Institut Cochin", + "type": "child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Européen de Chimie et Biologie", + "type": "child", + "id": "https://ror.org/04agqs597" + }, + { + "label": "Institut Jacques Monod", + "type": "child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut NeuroMyoGène", + "type": "child", + "id": "https://ror.org/0322sf130" + }, + { + "label": "Institut d'Économie Publique", + "type": "child", + "id": "https://ror.org/014ycqe77" + }, + { + "label": "Institut de Biologie Paris-Seine", + "type": "child", + "id": "https://ror.org/01c2cjg59" + }, + { + "label": "Institut de Biologie de Lille", + "type": "child", + "id": "https://ror.org/05gd4yq49" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut de Génomique Fonctionnelle", + "type": "child", + "id": "https://ror.org/043wmc583" + }, + { + "label": "Institut de Neurobiologie de la Méditerranée", + "type": "child", + "id": "https://ror.org/02jthx987" + }, + { + "label": "Institut de Neurosciences des Systèmes", + "type": "child", + "id": "https://ror.org/019kqby73" + }, + { + "label": "Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux", + "type": "child", + "id": "https://ror.org/03xg8m734" + }, + { + "label": "Institut de Recherche en Santé, Environnement et Travail", + "type": "child", + "id": "https://ror.org/01p178v10" + }, + { + "label": "Institut du Cerveau", + "type": "child", + "id": "https://ror.org/050gn5214" + }, + { + "label": "Institut du Fer à Moulin", + "type": "child", + "id": "https://ror.org/03x9frp33" + }, + { + "label": "Institut du Thorax", + "type": "child", + "id": "https://ror.org/049kkt456" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Institute for Regenerative Medicine & Biotherapy", + "type": "child", + "id": "https://ror.org/00b8mh310" + }, + { + "label": "Institute of Biology Valrose", + "type": "child", + "id": "https://ror.org/03bnma344" + }, + { + "label": "Institute of Genetics and Molecular and Cellular Biology", + "type": "child", + "id": "https://ror.org/0015ws592" + }, + { + "label": "Institut de Myologie", + "type": "child", + "id": "https://ror.org/0270xt841" + }, + { + "label": "Institute of Research on Cancer and Aging in Nice", + "type": "child", + "id": "https://ror.org/01td3kv81" + }, + { + "label": "International Center for Infectiology Research", + "type": "child", + "id": "https://ror.org/059sz6q14" + }, + { + "label": "Laboratoire CarMeN", + "type": "child", + "id": "https://ror.org/03bbjky47" + }, + { + "label": "Laboratoire de Biologie du Développement", + "type": "child", + "id": "https://ror.org/024hnwe62" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratory for Optics & Biosciences", + "type": "child", + "id": "https://ror.org/000p29f53" + }, + { + "label": "Laboratory for Vascular Translational Science", + "type": "child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Institut Langevin", + "type": "child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Lipides, Nutrition, Cancer", + "type": "child", + "id": "https://ror.org/04d70nb60" + }, + { + "label": "Lyon Neuroscience Research Center", + "type": "child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Molecular and Structural Basis of Life Sciences", + "type": "child", + "id": "https://ror.org/00j5dj575" + }, + { + "label": "Mondor Institute of Biomedical Research", + "type": "child", + "id": "https://ror.org/04qe59j94" + }, + { + "label": "Neurosciences, Cognitive Sciences, Neurology and Psychiatry", + "type": "child", + "id": "https://ror.org/05e7p5n27" + }, + { + "label": "Nutrition Obesity & Risk of Thrombosis", + "type": "child", + "id": "https://ror.org/05hqfh882" + }, + { + "label": "Oncogenesis Stress Signaling", + "type": "child", + "id": "https://ror.org/00bf6bf92" + }, + { + "label": "Paris Cardiovascular Research Center", + "type": "child", + "id": "https://ror.org/03gvnh520" + }, + { + "label": "Pathologie et Virologie Moléculaire", + "type": "child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "type": "child", + "id": "https://ror.org/01et6g203" + }, + { + "label": "Physiopathologie et Epidémiologie des Maladies Respiratoires", + "type": "child", + "id": "https://ror.org/04n8sc212" + }, + { + "label": "Physiopathology, metabolism and nutrition", + "type": "child", + "id": "https://ror.org/00cmmh940" + }, + { + "label": "Processus Infectieux en Milieu Insulaire Tropical", + "type": "child", + "id": "https://ror.org/05fnxds15" + }, + { + "label": "Public Health", + "type": "child", + "id": "https://ror.org/04wbsq162" + }, + { + "label": "Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète", + "type": "child", + "id": "https://ror.org/05xanhp90" + }, + { + "label": "Signalisation, Neurobiologie et Cancer", + "type": "child", + "id": "https://ror.org/01cmdpn82" + }, + { + "label": "Skin Research Center", + "type": "child", + "id": "https://ror.org/0579jh693" + }, + { + "label": "Stem-Cell and Brain Research Institute", + "type": "child", + "id": "https://ror.org/03m0zs870" + }, + { + "label": "Structure Fédérative de Recherche en Biologie et Santé de Rennes", + "type": "child", + "id": "https://ror.org/05cx7ek10" + }, + { + "label": "Structure et Instabilité des Génomes", + "type": "child", + "id": "https://ror.org/05pchb838" + }, + { + "label": "Theories and Approaches of Genomic Complexity", + "type": "child", + "id": "https://ror.org/025sfbe73" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Systèmes avancés de délivrance de principes actifs", + "type": "child", + "id": "https://ror.org/053ppfe96" + }, + { + "label": "CANTHER - Hétérogénéité, Plasticité et Résistance aux Thérapies des Cancers", + "type": "child", + "id": "https://ror.org/05x9zmx47" + }, + { + "label": "Centre d'Investigation Clinique - Innovation Technologique de Lille", + "type": "child", + "id": "https://ror.org/04p4jgt68" + }, + { + "label": "(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées", + "type": "child", + "id": "https://ror.org/04k5h2q42" + }, + { + "label": "IMPact de l'Environnement Chimique sur la Santé humaine", + "type": "child", + "id": "https://ror.org/0455vgw31" + }, + { + "label": "Institute for Translational Research in Inflammation", + "type": "child", + "id": "https://ror.org/03qy9z186" + }, + { + "label": "Lille Neurosciences & Cognition", + "type": "child", + "id": "https://ror.org/04p94ax69" + }, + { + "label": "Médicaments et Molécules pour Agir sur les Systèmes Vivants", + "type": "child", + "id": "https://ror.org/0086epd30" + }, + { + "label": "OncoThAI", + "type": "child", + "id": "https://ror.org/04q29nn62" + }, + { + "label": "Laboratoire de Physiologie Cellulaire", + "type": "child", + "id": "https://ror.org/05fjffm04" + }, + { + "label": "Plateformes Lilloises en Biologie et Santé", + "type": "child", + "id": "https://ror.org/056hav897" + }, + { + "label": "Recherche translationnelle sur le diabète", + "type": "child", + "id": "https://ror.org/03pbmtd68" + }, + { + "label": "Laboratoire Traitement du Signal et de l'Image", + "type": "child", + "id": "https://ror.org/01f1amm71" + }, + { + "label": "Bacterial Regulatory RNAs & Medicine", + "type": "child", + "id": "https://ror.org/031y0x195" + }, + { + "label": "Microenvironment and B-cells: Immunopathology, Cell, Differentiation and Cancer", + "type": "child", + "id": "https://ror.org/05p7fmf80" + }, + { + "label": "Nutrition, métabolismes et cancer", + "type": "child", + "id": "https://ror.org/03zb6nw87" + }, + { + "label": "Fondation pour l'Innovation en Cardiométabolisme et Nutrition", + "type": "child", + "id": "https://ror.org/0045xgt95" + }, + { + "label": "Centre d’Investigation Clinique 1436", + "type": "child", + "id": "https://ror.org/033z83z59" + }, + { + "label": "Hypoxie et Poumon", + "type": "child", + "id": "https://ror.org/02mtpz628" + }, + { + "label": "Centre d'Investigation Clinique - Epidémiologie Clinique Saint-Etienne", + "type": "child", + "id": "https://ror.org/044dp1584" + }, + { + "label": "NeuroDiderot", + "type": "child", + "id": "https://ror.org/014ndnr76" + }, + { + "label": "Centre d'Investigation Clinique de Besançon", + "type": "child", + "id": "https://ror.org/04nk3ny21" + }, + { + "label": "Empenn", + "type": "child", + "id": "https://ror.org/02hp31992" + }, + { + "label": "Centre d'Investigation Clinique de Vaccinologie Cochin-Pasteur", + "type": "child", + "id": "https://ror.org/01c1p7750" + }, + { + "label": "Centre d'investigation clinique Quinze-Vingts", + "type": "child", + "id": "https://ror.org/01exas502" + }, + { + "label": "Institute for Translational Medicine and Liver Disease", + "type": "child", + "id": "https://ror.org/00jvqbw52" + }, + { + "label": "Physiologie et Physiopathlogie Endocriniennes", + "type": "child", + "id": "https://ror.org/05kz79f96" + }, + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Innovations Thérapeutiques en Hémostase", + "type": "child", + "id": "https://ror.org/02jp0cd74" + }, + { + "label": "Physiopathologie, cibles et thérapies de la polyarthrite rhumatoïde", + "type": "child", + "id": "https://ror.org/05vqkgf08" + }, + { + "label": "Mécanismes moléculaires dans les démences neurodégénératives", + "type": "child", + "id": "https://ror.org/008qs6838" + }, + { + "label": "Biologie des maladies cardiovasculaires", + "type": "child", + "id": "https://ror.org/0463z7496" + }, + { + "label": "Nutrition, Diabète et Cerveau", + "type": "child", + "id": "https://ror.org/052yj6c27" + }, + { + "label": "Pharmacologie et Transplantation", + "type": "child", + "id": "https://ror.org/013dngs07" + }, + { + "label": "Pathologies Pulmonaires et Plasticité Cellulaire", + "type": "child", + "id": "https://ror.org/02w7ezv91" + }, + { + "label": "Physiopathologie, autoimmunité, maladies neuromusculaire et thérapie régénératrice", + "type": "child", + "id": "https://ror.org/034feyf26" + }, + { + "label": "Marseille Medical Genetics", + "type": "child", + "id": "https://ror.org/01e4wd589" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Centre d'Investigation Clinique Antilles Guyane", + "type": "child", + "id": "https://ror.org/029hdt144" + }, + { + "label": "Immunologie - Immunopathologie - Immunothérapie", + "type": "child", + "id": "https://ror.org/05dbe0t82" + }, + { + "label": "Cancer, Hétérogénéité, Instabilité et Plasticité", + "type": "child", + "id": "https://ror.org/03t4pc386" + }, + { + "label": "Génétique et biologie du développement", + "type": "child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "HIPI - Human Immunology, Pathophysiology and Immunotherapy", + "type": "child", + "id": "https://ror.org/008e1sp22" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Computationnelles", + "type": "child", + "id": "https://ror.org/01e8w0016" + }, + { + "label": "Institut Droit et Santé", + "type": "child", + "id": "https://ror.org/01ddqfh11" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "child", + "id": "https://ror.org/048qk7477" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Etude longitudinale française depuis l'enfance", + "type": "child", + "id": "https://ror.org/03cxgcr75" + }, + { + "label": "Biologie des interactions hôte-parasite", + "type": "child", + "id": "https://ror.org/05akjb009" + }, + { + "label": "Laboratory for the Bioengineering of Tissues", + "type": "child", + "id": "https://ror.org/012zmcc30" + }, + { + "label": "Bacterial Virulence and Chronic Infections", + "type": "child", + "id": "https://ror.org/044jxv425" + }, + { + "label": "Recherches Translationnelles sur le VIH et les Maladies Infectieuses", + "type": "child", + "id": "https://ror.org/014sj8802" + }, + { + "label": "TBM-Core", + "type": "child", + "id": "https://ror.org/00qe5nz43" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Pathogénèse Bactérienne et Réponses Cellulaires", + "type": "child", + "id": "https://ror.org/03t9s7t87" + }, + { + "label": "Centre d’Investigation Clinique des Hôpitaux Universitaires de Strasbourg", + "type": "child", + "id": "https://ror.org/03zsnyg10" + }, + { + "label": "Bordeaux Imaging Center", + "type": "child", + "id": "https://ror.org/04dyeh227" + }, + { + "label": "Centre d'Immunophénomique", + "type": "child", + "id": "https://ror.org/034bena10" + }, + { + "label": "RMeS - Regenerative Medicine and Skeleton", + "type": "child", + "id": "https://ror.org/025agbr41" + }, + { + "label": "Pharmacologie des anti-infectieux et antibiorésistance", + "type": "child", + "id": "https://ror.org/041v99f68" + }, + { + "label": "Nutrition, Inflammation et axe Microbiote-Intestin-Cerveau", + "type": "child", + "id": "https://ror.org/040d87505" + }, + { + "label": "Ischémie Reperfusion, Métabolisme et Inflammation Stérile en Transplantation", + "type": "child", + "id": "https://ror.org/05kkw6065" + }, + { + "label": "Laboratoire de Neurosciences Expérimentales et Cliniques", + "type": "child", + "id": "https://ror.org/04rfxk768" + }, + { + "label": "Anti-infectieux : supports moléculaires des résistances et innovations thérapeutiques", + "type": "child", + "id": "https://ror.org/0458p8g61" + }, + { + "label": "Institut d’Epidémiologie et de Neurologie Tropicale", + "type": "child", + "id": "https://ror.org/023h4a821" + }, + { + "label": "Centre d'Étude des Pathologies Respiratoires", + "type": "child", + "id": "https://ror.org/01vxptj17" + }, + { + "label": "Groupe de Recherches sur l’Analyse Multimodale de la Fonction Cérébrale", + "type": "child", + "id": "https://ror.org/02a9mrq41" + }, + { + "label": "Plateforme d'information et de services pour les maladies rares et les médicaments orphelins", + "type": "child", + "id": "https://ror.org/05thj7870" + }, + { + "label": "Biopathologie de la myéline, neuroprotection et stratégies thérapeutiques", + "type": "child", + "id": "https://ror.org/000n1xh78" + }, + { + "label": "Optimisation Thérapeutique en Neuropsychopharmacologie", + "type": "child", + "id": "https://ror.org/05wzabs02" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Infection, Antimicrobials, Modelling, Evolution", + "type": "child", + "id": "https://ror.org/05hqep952" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "France Génomique", + "type": "child", + "id": "https://ror.org/05k267t15" + }, + { + "label": "Neurophysiologie respiratoire expérimentale et clinique", + "type": "child", + "id": "https://ror.org/0259td381" + }, + { + "label": "Genopolys", + "type": "child", + "id": "https://ror.org/030vwjb30" + }, + { + "label": "Organisation Nucléaire et Oncogenèse", + "type": "child", + "id": "https://ror.org/05q8d3662" + }, + { + "label": "Physiopathogénèse et Traitement des Maladies du Foie", + "type": "child", + "id": "https://ror.org/01zrk7293" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "child", + "id": "https://ror.org/00p73bw06" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Pathogenèse des infections vasculaires", + "type": "child", + "id": "https://ror.org/00gjnk018" + }, + { + "label": "ARNA - Acides nucléiques: Régulations naturelles et artificielles", + "type": "child", + "id": "https://ror.org/01cbgsf04" + }, + { + "label": "Maladies Rares: Génétique et Métabolisme", + "type": "child", + "id": "https://ror.org/01wvg5605" + }, + { + "label": "Research on healthcare performance", + "type": "child", + "id": "https://ror.org/02ncy5p18" + }, + { + "label": "Mitochondrial and Cardiovascular Physiopathology", + "type": "child", + "id": "https://ror.org/03hqv2x85" + }, + { + "label": "Micro et Nanomédecines translationnelles", + "type": "child", + "id": "https://ror.org/055nbmz93" + }, + { + "label": "Physiopathologie et imagerie des troubles neurologiques", + "type": "child", + "id": "https://ror.org/00vsvph51" + }, + { + "label": "Neuropsychologie et Imagerie de la Mémoire Humaine", + "type": "child", + "id": "https://ror.org/04f6tkx67" + }, + { + "label": "Mobilités: Vieillissement, Pathologie, Santé", + "type": "child", + "id": "https://ror.org/028rasm92" + }, + { + "label": "Imagerie Moléculaire et Stratégies Théranostiques", + "type": "child", + "id": "https://ror.org/03y61y350" + }, + { + "label": "Biologie et pharmacologie des plaquettes sanguines : hémostase, thrombose, transfusion", + "type": "child", + "id": "https://ror.org/03qge6j93" + }, + { + "label": "Physique pour la médecine Paris", + "type": "child", + "id": "https://ror.org/03y7m8990" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "BISCEm - Biologie Intégrative Santé Chimie Environnement", + "type": "child", + "id": "https://ror.org/04kbqb151" + }, + { + "label": "Laboratoire d'imagerie translationnelle en oncologie", + "type": "child", + "id": "https://ror.org/05qy9ka59" + }, + { + "label": "RESTORE", + "type": "child", + "id": "https://ror.org/00qhm9960" + }, + { + "label": "Institut Toulousain des Maladies Infectieuses et Inflammatoires", + "type": "child", + "id": "https://ror.org/00n90tt57" + }, + { + "label": "Génomique fonctionnelle comparative", + "type": "child", + "id": "https://ror.org/016nv8j08" + }, + { + "label": "Laboratoire Physiopathologie et Génétique du Neurone et du Muscle", + "type": "child", + "id": "https://ror.org/013nhg483" + }, + { + "label": "L’Inserm dans Paris et l’Île-de-France Centre Nord", + "type": "child", + "id": "https://ror.org/00jyt4d57" + }, + { + "label": "Défaillance Cardiovasculaire Aiguë et Chronique", + "type": "child", + "id": "https://ror.org/05ft9wv42" + }, + { + "label": "Nutrition-Génétique et Exposition aux Risques Environnementaux", + "type": "child", + "id": "https://ror.org/053d03003" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "The Enteric Nervous System in Gut and Brain Disorders", + "type": "child", + "id": "https://ror.org/01kbkse74" + }, + { + "label": "UMS Phénotypage du petit animal", + "type": "child", + "id": "https://ror.org/05pm2xt51" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Neurosciences Paris-Seine", + "type": "child", + "id": "https://ror.org/02sps6z09" + }, + { + "label": "Fédération de Physico-Chimie Analytique et Biologique", + "type": "child", + "id": "https://ror.org/05edayg07" + }, + { + "label": "Adaptation Biologique et Vieillissement", + "type": "child", + "id": "https://ror.org/02y2c2646" + }, + { + "label": "Fondation Voir & Entendre", + "type": "child", + "id": "https://ror.org/01ph0t361" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "Maladies génétiques d’expression pédiatrique", + "type": "child", + "id": "https://ror.org/0387w4y93" + }, + { + "label": "Centre d'Acquisition et de Traitement des Images", + "type": "child", + "id": "https://ror.org/01zprwd36" + }, + { + "label": "Production et analyse de données en sciences de la vie et en santé", + "type": "child", + "id": "https://ror.org/03p2d3k93" + }, + { + "label": "Laboratoire d'Informatique Médicale et d'Ingénieurie des Connaissances en e-Santé", + "type": "child", + "id": "https://ror.org/01jr1v359" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Centre de Recherche en Myologie", + "type": "child", + "id": "https://ror.org/02e3eqz10" + }, + { + "label": "PremUP", + "type": "child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Nutrition et obésité : approches systémiques", + "type": "child", + "id": "https://ror.org/00qdphm77" + }, + { + "label": "Unité de recherche sur les maladies cardiovasculaires et métaboliques", + "type": "child", + "id": "https://ror.org/043y2tx42" + }, + { + "label": "Institut Pierre Louis d‘Épidémiologie et de Santé Publique", + "type": "child", + "id": "https://ror.org/02qqh1125" + }, + { + "label": "Maladies rénales fréquentes et rares : des mécanismes moléculaires à la médecine personnalisée", + "type": "child", + "id": "https://ror.org/01x3ydm75" + }, + { + "label": "Infection et inflammation", + "type": "child", + "id": "https://ror.org/021sh3243" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Laboratoire physiopathologie et pharmacologie clinique de la douleur", + "type": "child", + "id": "https://ror.org/02k243t26" + }, + { + "label": "Handicap neuromusculaire : Physiopathologie, Biothérapie et Pharmacologie appliquées", + "type": "child", + "id": "https://ror.org/02nxezb95" + }, + { + "label": "Neuropsychologie Cognitive et Physiopathologie de la Schizophrénie", + "type": "child", + "id": "https://ror.org/02zwf7d57" + }, + { + "label": "COMETE - Mobilités : Vieillissement, pathologie, santé", + "type": "child", + "id": "https://ror.org/018z38380" + }, + { + "label": "Endothélium, valvulopathies et insuffisance cardiaque", + "type": "child", + "id": "https://ror.org/017ed2k28" + }, + { + "label": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "type": "child", + "id": "https://ror.org/035gq6r08" + }, + { + "label": "Center for Research in Transplantation and Translational Immunology", + "type": "child", + "id": "https://ror.org/01165k395" + }, + { + "label": "Immunologie et Nouveaux Concepts en Immunothérapie", + "type": "child", + "id": "https://ror.org/018dfmm35" + }, + { + "label": "methodS in Patient-centered outcomes and HEalth ResEarch", + "type": "child", + "id": "https://ror.org/013m8h627" + }, + { + "label": "Translational Research in Gene Therapy", + "type": "child", + "id": "https://ror.org/02tg88m31" + }, + { + "label": "Dynamique Microbienne associée aux Infections Urinaires et Respiratoires", + "type": "child", + "id": "https://ror.org/01a6c6c20" + }, + { + "label": "Génomique du cancer et du cerveau", + "type": "child", + "id": "https://ror.org/05k71g406" + }, + { + "label": "Unité de recherche interdisciplinaire pour la prévention et le traitement des cancers", + "type": "child", + "id": "https://ror.org/04b8tg719" + }, + { + "label": "Neuroendocrine, Endocrine and Germinal Differentiation Communication", + "type": "child", + "id": "https://ror.org/02yvdat18" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "child", + "id": "https://ror.org/05dy6wv04" + }, + { + "label": "Interactions Cellulaires et Physiopathologie Hépathique", + "type": "child", + "id": "https://ror.org/05dpfhh73" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "child", + "id": "https://ror.org/030przz70" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02vrchf15.json b/v1.43/02vrchf15.json new file mode 100644 index 000000000..1b44223b6 --- /dev/null +++ b/v1.43/02vrchf15.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2988358, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.31117, + "lng": -0.35583, + "name": "Pau" + } + } + ], + "established": 1969, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q3117948" + ], + "preferred": "Q3117948" + } + ], + "id": "https://ror.org/02vrchf15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.esc-pau.fr" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Groupe_%C3%89cole_sup%C3%A9rieure_de_commerce_de_Pau" + } + ], + "names": [ + { + "value": "éklore-ed School of Management", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Eklore School of Management", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ESC Pau Business School", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02vzjz256.json b/v1.43/02vzjz256.json new file mode 100644 index 000000000..9c66dd0b2 --- /dev/null +++ b/v1.43/02vzjz256.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2636389, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.55797, + "lng": -1.78116, + "name": "Swindon" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2189 5796" + ], + "preferred": "0000 0001 2189 5796" + }, + { + "type": "wikidata", + "all": [ + "Q2054530" + ], + "preferred": "Q2054530" + }, + { + "type": "fundref", + "all": [ + "501100015724" + ], + "preferred": "501100015724" + } + ], + "id": "https://ror.org/02vzjz256", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Particle_Physics_and_Astronomy_Research_Council" + } + ], + "names": [ + { + "value": "Particle Physics and Astronomy Research Council", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02w3bnx54.json b/v1.43/02w3bnx54.json new file mode 100644 index 000000000..fb387a897 --- /dev/null +++ b/v1.43/02w3bnx54.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": 1967, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8800 9608" + ], + "preferred": "0000 0000 8800 9608" + }, + { + "type": "wikidata", + "all": [ + "Q3152136" + ], + "preferred": "Q3152136" + } + ], + "id": "https://ror.org/02w3bnx54", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ithq.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Institut_de_tourisme_et_d%27h%C3%B4tellerie_du_Qu%C3%A9bec" + } + ], + "names": [ + { + "value": "Institut de tourisme et d'hôtellerie du Québec", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ITHQ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Government of Northwest Territories", + "type": "parent", + "id": "https://ror.org/05hqvvq43" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02wfhk785.json b/v1.43/02wfhk785.json new file mode 100644 index 000000000..fbfa5a2ee --- /dev/null +++ b/v1.43/02wfhk785.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 2772810, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.06833, + "lng": 16.35607, + "name": "Laxenburg" + } + } + ], + "established": 1972, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1955 9478" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100011859" + ], + "preferred": "501100011859" + }, + { + "type": "wikidata", + "all": [ + "Q212102" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.75276.31" + ], + "preferred": "grid.75276.31" + } + ], + "id": "https://ror.org/02wfhk785", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iiasa.ac.at" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/International_Institute_for_Applied_Systems_Analysis" + } + ], + "names": [ + { + "value": "International Institute for Applied Systems Analysis", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Internationales Institut Fuer Angewandte Systemanalyse", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IIASA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Complexity Science Hub Vienna", + "type": "related", + "id": "https://ror.org/023dz9m50" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02wjh7838.json b/v1.43/02wjh7838.json new file mode 100644 index 000000000..c8dd9a76d --- /dev/null +++ b/v1.43/02wjh7838.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 4347778, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012678" + ], + "preferred": "100012678" + } + ], + "id": "https://ror.org/02wjh7838", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.morgan.edu/soe/ntc" + } + ], + "names": [ + { + "value": "National Transportation Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Morgan State University National Transportation Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NTC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Morgan State University", + "type": "parent", + "id": "https://ror.org/017d8gk22" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02x2py139.json b/v1.43/02x2py139.json new file mode 100644 index 000000000..e6c5ca748 --- /dev/null +++ b/v1.43/02x2py139.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 1609350, + "geonames_details": { + "country_code": "TH", + "country_name": "Thailand", + "lat": 13.75398, + "lng": 100.50144, + "name": "Bangkok" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0482 0559" + ], + "preferred": "0000 0004 0482 0559" + }, + { + "type": "wikidata", + "all": [ + "Q18394263" + ], + "preferred": "Q18394263" + } + ], + "id": "https://ror.org/02x2py139", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.thonburi-u.ac.th" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Thonburi_University" + } + ], + "names": [ + { + "value": "Thonburi University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Thonburi College of Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Thonburi College", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "TRU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02x3f7722.json b/v1.43/02x3f7722.json new file mode 100644 index 000000000..4f037b8b3 --- /dev/null +++ b/v1.43/02x3f7722.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 5008327, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.10976, + "lng": -86.48002, + "name": "Saint Joseph" + } + } + ], + "established": 1899, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0443 0139" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q22059525" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.490238.4" + ], + "preferred": "grid.490238.4" + } + ], + "id": "https://ror.org/02x3f7722", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.lakelandhealth.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Lakeland_Health" + } + ], + "names": [ + { + "value": "Lakeland Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "successor", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02x402970.json b/v1.43/02x402970.json new file mode 100644 index 000000000..08fc87b7d --- /dev/null +++ b/v1.43/02x402970.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2509954, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.47391, + "lng": -0.37966, + "name": "Valencia" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/02x402970", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ipronics.com" + } + ], + "names": [ + { + "value": "iPronics Programmable Photonics (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "iPronics Programmable Photonics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "iPronics Programmable Photonics, S.L.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "iPronics", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02x5c5y60.json b/v1.43/02x5c5y60.json new file mode 100644 index 000000000..0082e3de2 --- /dev/null +++ b/v1.43/02x5c5y60.json @@ -0,0 +1,93 @@ +{ + "locations": [ + { + "geonames_id": 3123921, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.30544, + "lng": -2.88116, + "name": "Derio" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0639 2420", + "0000 0004 0435 4789" + ], + "preferred": "0000 0004 0639 2420" + }, + { + "type": "grid", + "all": [ + "grid.420175.5" + ], + "preferred": "grid.420175.5" + }, + { + "type": "wikidata", + "all": [ + "Q30282406" + ], + "preferred": "Q30282406" + } + ], + "id": "https://ror.org/02x5c5y60", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cicbiogune.es/" + } + ], + "names": [ + { + "value": "CIC bioGUNE", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centro de Investigación Cooperativa en Biociencias", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Center for Cooperative Research in Biosciences", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Asociacion Centro De Investigacion Cooperativa En Biociencias", + "types": [ + "label" + ], + "lang": "pt" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02x9gn510.json b/v1.43/02x9gn510.json new file mode 100644 index 000000000..635bcc42e --- /dev/null +++ b/v1.43/02x9gn510.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6088132, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.23085, + "lng": -72.61292, + "name": "Nicolet" + } + } + ], + "established": 1969, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9471 627X" + ], + "preferred": "0000 0000 9471 627X" + }, + { + "type": "wikidata", + "all": [ + "Q3578131" + ], + "preferred": "Q3578131" + } + ], + "id": "https://ror.org/02x9gn510", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.enpq.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/%C3%89cole_nationale_de_police_du_Qu%C3%A9bec" + } + ], + "names": [ + { + "value": "École nationale de police du Québec", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ENPQ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02xe5ns62.json b/v1.43/02xe5ns62.json new file mode 100644 index 000000000..8d073cbd1 --- /dev/null +++ b/v1.43/02xe5ns62.json @@ -0,0 +1,117 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1906, + "external_ids": [ + { + "all": [ + "501100004024" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.258164.c" + ], + "preferred": "grid.258164.c", + "type": "grid" + }, + { + "all": [ + "0000 0004 1790 3548" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2687517" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/02xe5ns62", + "links": [ + { + "type": "website", + "value": "https://english.jnu.edu.cn/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Jinan_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 23.11667, + "lng": 113.25, + "name": "Guangzhou" + }, + "geonames_id": 1809858 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "JNU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Jinan University" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "暨南大学" + } + ], + "relationships": [ + { + "label": "Guangdong-Hongkong-Macau Joint Laboratory of Collaborative Innovation for Environmental Quality", + "type": "child", + "id": "https://ror.org/02gwsx029" + }, + { + "label": "First Affiliated Hospital of Jinan University", + "type": "related", + "id": "https://ror.org/05d5vvz89" + }, + { + "label": "ShenZhen People’s Hospital", + "type": "related", + "id": "https://ror.org/01hcefx46" + }, + { + "label": "The Affiliated Shunde Hospital of Jinan University", + "type": "child", + "id": "https://ror.org/04x2nq985" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/02xkjwb21.json b/v1.43/02xkjwb21.json new file mode 100644 index 000000000..4d4e2caa0 --- /dev/null +++ b/v1.43/02xkjwb21.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.434658.8" + ], + "preferred": "grid.434658.8" + } + ], + "id": "https://ror.org/02xkjwb21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fundacionconfemetal.com" + } + ], + "names": [ + { + "value": "Fundación Confemetal", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02xnnng09.json b/v1.43/02xnnng09.json new file mode 100644 index 000000000..a1b532531 --- /dev/null +++ b/v1.43/02xnnng09.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0390 3862" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30261615" + ], + "preferred": "Q30261615" + }, + { + "type": "grid", + "all": [ + "grid.462965.a" + ], + "preferred": "grid.462965.a" + } + ], + "id": "https://ror.org/02xnnng09", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.centralesupelec.fr/fr/geeps-group-electrical-engineering-paris" + } + ], + "names": [ + { + "value": "Laboratoire de Génie Électrique et Électronique de Paris", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Group of Electrical Engineering - Paris Laboratory", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Group of Electrical Engineering - Paris", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "GeePs", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "CentraleSupélec", + "type": "parent", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02y0cs367.json b/v1.43/02y0cs367.json new file mode 100644 index 000000000..068838302 --- /dev/null +++ b/v1.43/02y0cs367.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 9972834, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -33.83488, + "lng": 151.05703, + "name": "Newington" + } + } + ], + "established": 1926, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8855 3435" + ], + "preferred": "0000 0000 8855 3435" + }, + { + "type": "grid", + "all": [ + "grid.489063.0" + ], + "preferred": "grid.489063.0" + }, + { + "type": "wikidata", + "all": [ + "Q7279568" + ], + "preferred": "Q7279568" + } + ], + "id": "https://ror.org/02y0cs367", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fpnsw.org.au/" + } + ], + "names": [ + { + "value": "Family Planning NSW", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Family Planning Australia", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02y6dp041.json b/v1.43/02y6dp041.json new file mode 100644 index 000000000..060dfc021 --- /dev/null +++ b/v1.43/02y6dp041.json @@ -0,0 +1,101 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100016153" + ], + "preferred": "100016153" + } + ], + "id": "https://ror.org/02y6dp041", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.energy.gov/oe/office-electricity" + } + ], + "names": [ + { + "value": "Office of Electricity", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "United States Department of Energy Office of Electricity", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "U.S. Department of Energy Office of Electricity", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Office of Electricity Delivery and Energy Reliability", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Grid Systems and Components", + "type": "child", + "id": "https://ror.org/04bym8a28" + }, + { + "label": "Grid Controls and Communications Division", + "type": "child", + "id": "https://ror.org/04b1tq154" + }, + { + "label": "United States Department of Energy", + "type": "parent", + "id": "https://ror.org/01bj3aw27" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02ygek028.json b/v1.43/02ygek028.json new file mode 100644 index 000000000..470da8e70 --- /dev/null +++ b/v1.43/02ygek028.json @@ -0,0 +1,130 @@ +{ + "locations": [ + { + "geonames_id": 2800866, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + } + } + ], + "established": 1858, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0941 6203" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100008137" + ], + "preferred": "501100008137" + }, + { + "type": "wikidata", + "all": [ + "Q1391752" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434229.a" + ], + "preferred": "grid.434229.a" + } + ], + "id": "https://ror.org/02ygek028", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.usaintlouis.be/sl/1058.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Universit%C3%A9_Saint-Louis_Bruxelles" + } + ], + "names": [ + { + "value": "UCLouvain Saint-Louis Brussels", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Facultés Universitaires Saint-Louis", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université Saint-Louis - Bruxelles", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université Saint-Louis", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Saint-Louis University", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Facultés universitaires saint-louis", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "USLB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "UCLouvain", + "type": "parent", + "id": "https://ror.org/02495e989" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02yjyfs84.json b/v1.43/02yjyfs84.json new file mode 100644 index 000000000..ed3f0fd2b --- /dev/null +++ b/v1.43/02yjyfs84.json @@ -0,0 +1,73 @@ +{ + "locations": [ + { + "geonames_id": 2946447, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.73438, + "lng": 7.09549, + "name": "Bonn" + } + } + ], + "established": 2022, + "external_ids": [], + "id": "https://ror.org/02yjyfs84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mpinb.mpg.de" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Max-Planck-Institut_f%C3%BCr_Neurobiologie_des_Verhaltens_-_caesar" + } + ], + "names": [ + { + "value": "Max Planck Institute for Neurobiology of Behavior – caesar", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stiftung Caesar", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MPINB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Max Planck Society", + "type": "parent", + "id": "https://ror.org/01hhn8329" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02zap0h66.json b/v1.43/02zap0h66.json new file mode 100644 index 000000000..847b75046 --- /dev/null +++ b/v1.43/02zap0h66.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5987650, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.0164, + "lng": -73.4236, + "name": "Joliette" + } + } + ], + "established": 1988, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8059 5285" + ], + "preferred": "0000 0004 8059 5285" + } + ], + "id": "https://ror.org/02zap0h66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cisss-lanaudiere.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de Lanaudière", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de Lanaudière", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02zms4m18.json b/v1.43/02zms4m18.json new file mode 100644 index 000000000..96cd5c682 --- /dev/null +++ b/v1.43/02zms4m18.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1988, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2191 9006" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434668.b" + ], + "preferred": "grid.434668.b" + } + ], + "id": "https://ror.org/02zms4m18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fundaciononce.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ONCE" + } + ], + "names": [ + { + "value": "Fundación ONCE", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fundación ONCE for Cooperation and Social Inclusion of Persons with Disabilities", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ONCE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02zv3kp89.json b/v1.43/02zv3kp89.json new file mode 100644 index 000000000..1023afd50 --- /dev/null +++ b/v1.43/02zv3kp89.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2874545, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.12773, + "lng": 11.62916, + "name": "Magdeburg" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.494321.9" + ], + "preferred": "grid.494321.9" + }, + { + "type": "wikidata", + "all": [ + "Q123647955" + ], + "preferred": "Q123647955" + } + ], + "id": "https://ror.org/02zv3kp89", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mule.sachsen-anhalt.de" + } + ], + "names": [ + { + "value": "Ministerium für Umwelt, Landwirtschaft und Energie des Landes Sachsen-Anhalt", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry for the Environment, Agriculture and Energy of the State of Saxony-Anhalt", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MULE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0300g2m85.json b/v1.43/0300g2m85.json new file mode 100644 index 000000000..b6babb7f2 --- /dev/null +++ b/v1.43/0300g2m85.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 2654993, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.79391, + "lng": -1.75206, + "name": "Bradford" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100014338" + ], + "preferred": "501100014338" + } + ], + "id": "https://ror.org/0300g2m85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.arc-yh.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC Yorkshire and Humber", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC YH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0306aeb62.json b/v1.43/0306aeb62.json new file mode 100644 index 000000000..08ca73447 --- /dev/null +++ b/v1.43/0306aeb62.json @@ -0,0 +1,107 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-02-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1867, + "external_ids": [ + { + "all": [ + "100011958" + ], + "preferred": "100011958", + "type": "fundref" + }, + { + "all": [ + "grid.264262.6" + ], + "preferred": "grid.264262.6", + "type": "grid" + }, + { + "all": [ + "0000 0001 0725 9953" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7603617" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/0306aeb62", + "links": [ + { + "type": "website", + "value": "http://www.brockport.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Brockport" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.21367, + "lng": -77.93918, + "name": "Brockport" + }, + "geonames_id": 5110227 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "SUNY Brockport" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "State University of New York at Brockport" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "The College at Brockport: State University of New York" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/030d6wr93.json b/v1.43/030d6wr93.json new file mode 100644 index 000000000..9e4a2225d --- /dev/null +++ b/v1.43/030d6wr93.json @@ -0,0 +1,94 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": 2018, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q52607321" + ], + "preferred": "Q52607321" + } + ], + "id": "https://ror.org/030d6wr93", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://lima.unistra.fr" + } + ], + "names": [ + { + "value": "Laboratoire d'innovation moléculaire et applications", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire d’Innovation Moléculaire & Applications", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LIMA - Laboratoire d'innovation moléculaire et applications", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LIMA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Upper Alsace", + "type": "parent", + "id": "https://ror.org/04k8k6n84" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/030gd0911.json b/v1.43/030gd0911.json new file mode 100644 index 000000000..cd21a5cf4 --- /dev/null +++ b/v1.43/030gd0911.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2509954, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.47391, + "lng": -0.37966, + "name": "Valencia" + } + } + ], + "established": 1984, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1807 8930" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423830.e" + ], + "preferred": "grid.423830.e" + } + ], + "id": "https://ror.org/030gd0911", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.aidima.eu/" + } + ], + "names": [ + { + "value": "AIDIMA Technology Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AIDIMA - Instituto Tecnológico del Mueble", + "types": [ + "label" + ], + "lang": "es" + } + ], + "relationships": [ + { + "label": "Instituto Tecnológico Metalmecánico, Mueble, Madera, Embalaje y Afines", + "type": "successor", + "id": "https://ror.org/057f9wg13" + } + ], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/030przz70.json b/v1.43/030przz70.json new file mode 100644 index 000000000..6f9492957 --- /dev/null +++ b/v1.43/030przz70.json @@ -0,0 +1,120 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": 1980, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 3260" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.464078.9" + ], + "preferred": "grid.464078.9" + } + ], + "id": "https://ror.org/030przz70", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ibmc.cnrs.fr/laboratoire/m3i/" + } + ], + "names": [ + { + "value": "Modèles Insectes de l'Immunité Innée", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Immune Response and Development in Insects", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Réponse Immunitaire et Développement chez les Insectes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Insect Models of Innate Immunity", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "RIDI", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "M3I", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Institute for Molecular and Cellular Biology", + "type": "parent", + "id": "https://ror.org/05qpmg879" + }, + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/030tc8e27.json b/v1.43/030tc8e27.json new file mode 100644 index 000000000..a9e5d5654 --- /dev/null +++ b/v1.43/030tc8e27.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3996069, + "geonames_details": { + "country_code": "MX", + "country_name": "Mexico", + "lat": 32.62781, + "lng": -115.45446, + "name": "Mexicali" + } + } + ], + "established": 1982, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30293933" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.441602.5" + ], + "preferred": "grid.441602.5" + } + ], + "id": "https://ror.org/030tc8e27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ueepmxl.edu.mx" + } + ], + "names": [ + { + "value": "Universidad Estatal de Estudios Pedagógicos", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "UEEP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03126ng80.json b/v1.43/03126ng80.json new file mode 100644 index 000000000..03a6e9e77 --- /dev/null +++ b/v1.43/03126ng80.json @@ -0,0 +1,102 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2000, + "external_ids": [ + { + "all": [ + "grid.449020.b" + ], + "preferred": "grid.449020.b", + "type": "grid" + }, + { + "all": [ + "0000 0004 1792 5560" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2319621" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03126ng80", + "links": [ + { + "type": "website", + "value": "https://www.univda.it/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Aosta_Valley_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.73764, + "lng": 7.31722, + "name": "Aosta" + }, + "geonames_id": 3182997 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNIVDA" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Aosta Valley" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Università della Valle d'Aosta" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de la vallée d'aoste" + } + ], + "relationships": [ + { + "label": "NODES S.c.a.r.l", + "type": "related", + "id": "https://ror.org/04hp1ky92" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/0315e5x55.json b/v1.43/0315e5x55.json new file mode 100644 index 000000000..2cfb5dadd --- /dev/null +++ b/v1.43/0315e5x55.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2988758, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.71828, + "lng": 2.2498, + "name": "Palaiseau" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q18156000" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457355.5" + ], + "preferred": "grid.457355.5" + } + ], + "id": "https://ror.org/0315e5x55", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.inria.fr/en/centre/saclay" + } + ], + "names": [ + { + "value": "Inria Saclay - Île-de-France Research Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Inria Saclay - Île de France", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [ + { + "label": "French Institute for Research in Computer Science and Automation", + "type": "parent", + "id": "https://ror.org/02kvxyf05" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/031p4kj21.json b/v1.43/031p4kj21.json new file mode 100644 index 000000000..14e8c71d1 --- /dev/null +++ b/v1.43/031p4kj21.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1935, + "external_ids": [ + { + "all": [ + "0000 0004 0399 4514" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4969003" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.418482.3" + ], + "preferred": "grid.418482.3", + "type": "grid" + } + ], + "id": "https://ror.org/031p4kj21", + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/bristol-royal-infirmary/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Bristol_Royal_Infirmary" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bristol Royal Infirmary" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BRI" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/031tb8x29.json b/v1.43/031tb8x29.json new file mode 100644 index 000000000..c063ceb51 --- /dev/null +++ b/v1.43/031tb8x29.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2655642, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.84861, + "lng": -1.83857, + "name": "Bingley" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8307 2092" + ], + "preferred": "0000 0004 8307 2092" + }, + { + "type": "fundref", + "all": [ + "100014894" + ], + "preferred": "100014894" + } + ], + "id": "https://ror.org/031tb8x29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.emeraldgrouppublishing.com" + } + ], + "names": [ + { + "value": "The Emerald Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Emerald Foundation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Emerald Group Publishing (United Kingdom)", + "type": "parent", + "id": "https://ror.org/02avhnb77" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/031yjqj32.json b/v1.43/031yjqj32.json new file mode 100644 index 000000000..5c2ce98fc --- /dev/null +++ b/v1.43/031yjqj32.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6138495, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.30713, + "lng": -73.26259, + "name": "Saint-Jean-sur-Richelieu" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0392 8621" + ], + "preferred": "0000 0004 0392 8621" + }, + { + "type": "wikidata", + "all": [ + "Q3009991" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462162.5" + ], + "preferred": "grid.462162.5" + } + ], + "id": "https://ror.org/031yjqj32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cstjean.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/C%C3%A9gep_de_Saint-Jean-sur-Richelieu" + } + ], + "names": [ + { + "value": "Cégep Saint-Jean-sur-Richelieu", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0321g0743.json b/v1.43/0321g0743.json new file mode 100644 index 000000000..c5901cf3d --- /dev/null +++ b/v1.43/0321g0743.json @@ -0,0 +1,110 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1926, + "external_ids": [ + { + "all": [ + "0000 0001 2284 9388" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100008017" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q266227" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.14925.3b" + ], + "preferred": "grid.14925.3b", + "type": "grid" + } + ], + "id": "https://ror.org/0321g0743", + "links": [ + { + "type": "website", + "value": "http://www.gustaveroussy.fr/en" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Institut_Gustave_Roussy" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.7939, + "lng": 2.35992, + "name": "Villejuif" + }, + "geonames_id": 2968705 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institut Gustave Roussy" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Institut Gustave-Roussy" + } + ], + "relationships": [ + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "child", + "id": "https://ror.org/00p73bw06" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/0329bcd18.json b/v1.43/0329bcd18.json new file mode 100644 index 000000000..1ec42f55f --- /dev/null +++ b/v1.43/0329bcd18.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3171180, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 43.1122, + "lng": 12.38878, + "name": "Perugia" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2337 4150" + ], + "preferred": "0000 0001 2337 4150" + }, + { + "type": "wikidata", + "all": [ + "Q30888354" + ], + "preferred": "Q30888354" + }, + { + "type": "fundref", + "all": [ + "501100009889" + ], + "preferred": "501100009889" + } + ], + "id": "https://ror.org/0329bcd18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.regione.umbria.it/la-regione" + }, + { + "type": "wikipedia", + "value": "https://it.wikipedia.org/wiki/Giunta_regionale_dell%27Umbria" + } + ], + "names": [ + { + "value": "Regione Umbria", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Region of Umbria", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Umbria Region", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/032jk8892.json b/v1.43/032jk8892.json new file mode 100644 index 000000000..fb631dc1e --- /dev/null +++ b/v1.43/032jk8892.json @@ -0,0 +1,102 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1984, + "external_ids": [ + { + "all": [ + "501100009536" + ], + "preferred": "501100009536", + "type": "fundref" + }, + { + "all": [ + "grid.412423.2" + ], + "preferred": "grid.412423.2", + "type": "grid" + }, + { + "all": [ + "0000 0001 0369 3226" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7488784" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/032jk8892", + "links": [ + { + "type": "website", + "value": "http://www.sastra.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Shanmugha_Arts,_Science,_Technology_%26_Research_Academy" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 10.78523, + "lng": 79.13909, + "name": "Thanjavur" + }, + "geonames_id": 1254649 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "SASTRA University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Shanmugha Arts, Science, Technology & Research Academy" + }, + { + "lang": "ta", + "types": [ + "label" + ], + "value": "சண்முகா கலை, அறிவியல், தொழில்நுட்பம் மற்றும் ஆராய்ச்சி அகாதமி" + } + ], + "relationships": [ + { + "label": "Elite School of Optometry", + "type": "related", + "id": "https://ror.org/00vvz3k68" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/032mthd30.json b/v1.43/032mthd30.json new file mode 100644 index 000000000..db03be70b --- /dev/null +++ b/v1.43/032mthd30.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3118594, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.32718, + "lng": -3.7635, + "name": "Leganés" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.423614.6" + ], + "preferred": "grid.423614.6" + } + ], + "id": "https://ror.org/032mthd30", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.aitemin.es/index_e.php" + } + ], + "names": [ + { + "value": "Association for Research and Industrial Development of Natural Resources", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Asociación para Investigación y el Desarrollo Industrial de los Recursos Naturales", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "AITEMIN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/032qgrc76.json b/v1.43/032qgrc76.json new file mode 100644 index 000000000..844d55d0f --- /dev/null +++ b/v1.43/032qgrc76.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1816, + "external_ids": [ + { + "all": [ + "100010968" + ], + "preferred": "100010968", + "type": "fundref" + }, + { + "all": [ + "grid.264275.0" + ], + "preferred": "grid.264275.0", + "type": "grid" + }, + { + "all": [ + "0000 0000 9900 0190" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7603628" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/032qgrc76", + "links": [ + { + "type": "website", + "value": "http://www.potsdam.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/State_University_of_New_York_at_Potsdam" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.66978, + "lng": -74.98131, + "name": "Potsdam" + }, + "geonames_id": 5132103 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "SUNY Potsdam" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "State University of New York at Potsdam" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/033frs404.json b/v1.43/033frs404.json new file mode 100644 index 000000000..e5cb55e51 --- /dev/null +++ b/v1.43/033frs404.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1972, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2175 7086" + ], + "preferred": "0000 0001 2175 7086" + }, + { + "type": "fundref", + "all": [ + "100014693" + ], + "preferred": "100014693" + } + ], + "id": "https://ror.org/033frs404", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://sempre.org.uk" + } + ], + "names": [ + { + "value": "Society for Education, Music and Psychology Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SEMPRE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/033svsm10.json b/v1.43/033svsm10.json new file mode 100644 index 000000000..4047232d2 --- /dev/null +++ b/v1.43/033svsm10.json @@ -0,0 +1,112 @@ +{ + "locations": [ + { + "geonames_id": 2648108, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.45, + "lng": -2.23333, + "name": "Greater Manchester" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0612 4047" + ], + "preferred": "0000 0004 0612 4047" + }, + { + "type": "wikidata", + "all": [ + "Q24060265" + ], + "preferred": "Q24060265" + }, + { + "type": "fundref", + "all": [ + "501100017008" + ], + "preferred": "501100017008" + } + ], + "id": "https://ror.org/033svsm10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.crukcentre.manchester.ac.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Manchester_Cancer_Research_Centre" + } + ], + "names": [ + { + "value": "Cancer Research UK Manchester Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CRUK Manchester Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Manchester Cancer Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MCRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Cancer Research UK", + "type": "parent", + "id": "https://ror.org/054225q67" + }, + { + "label": "University of Manchester", + "type": "parent", + "id": "https://ror.org/027m9bs27" + }, + { + "label": "The Christie NHS Foundation Trust", + "type": "parent", + "id": "https://ror.org/03v9efr22" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/033x0mt18.json b/v1.43/033x0mt18.json new file mode 100644 index 000000000..ca5ed9916 --- /dev/null +++ b/v1.43/033x0mt18.json @@ -0,0 +1,94 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2003, + "external_ids": [ + { + "all": [ + "Q51780120" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.503398.4" + ], + "preferred": "grid.503398.4", + "type": "grid" + } + ], + "id": "https://ror.org/033x0mt18", + "links": [ + { + "type": "website", + "value": "https://umr-system.cirad.fr/en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Tropical and Mediterranean Cropping System Functioning and Management" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "UMR System" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Fonctionnement et Conduite des Systèmes de Culture Tropicaux et Méditerranéens" + } + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/033zmj163.json b/v1.43/033zmj163.json new file mode 100644 index 000000000..30913e8f6 --- /dev/null +++ b/v1.43/033zmj163.json @@ -0,0 +1,105 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-04-12", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1889, + "external_ids": [ + { + "all": [ + "100007288" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.264274.1" + ], + "preferred": "grid.264274.1", + "type": "grid" + }, + { + "all": [ + "0000 0001 0724 5877" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7603626" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/033zmj163", + "links": [ + { + "type": "website", + "value": "http://www.plattsburgh.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Plattsburgh" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.69949, + "lng": -73.45291, + "name": "Plattsburgh" + }, + "geonames_id": 5131692 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Plattsburgh State" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "SUNY Plattsburgh" + } + ], + "relationships": [ + { + "label": "Lake Champlain Sea Grant", + "type": "child", + "id": "https://ror.org/05k70qf45" + }, + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/034a0rc87.json b/v1.43/034a0rc87.json new file mode 100644 index 000000000..a7b83f876 --- /dev/null +++ b/v1.43/034a0rc87.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2966685, + "geonames_details": { + "country_code": "IE", + "country_name": "Ireland", + "lat": 53.33082, + "lng": -6.23643, + "name": "Ballsbridge" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7784 8691" + ], + "preferred": "0000 0004 7784 8691" + }, + { + "type": "wikidata", + "all": [ + "Q122978876" + ], + "preferred": "Q122978876" + }, + { + "type": "fundref", + "all": [ + "100014251" + ], + "preferred": "100014251" + } + ], + "id": "https://ror.org/034a0rc87", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://heranet.info" + } + ], + "names": [ + { + "value": "Humanities in the European Research Area", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "HERA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/034d74a71.json b/v1.43/034d74a71.json new file mode 100644 index 000000000..b1e7cf4c0 --- /dev/null +++ b/v1.43/034d74a71.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6782 3650" + ], + "preferred": "0000 0004 6782 3650" + } + ], + "id": "https://ror.org/034d74a71", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fciencias-id.pt" + } + ], + "names": [ + { + "value": "FCiências.ID - Associação para a Investigação e Desenvolvimento de Ciências", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "FCiências.ID", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/034dfs572.json b/v1.43/034dfs572.json new file mode 100644 index 000000000..a6fe4d32a --- /dev/null +++ b/v1.43/034dfs572.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.512209.d" + ], + "preferred": "grid.512209.d" + } + ], + "id": "https://ror.org/034dfs572", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ecopathinternational.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ecopath" + } + ], + "names": [ + { + "value": "Ecopath International Initiative", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "EII", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/034vb5t35.json b/v1.43/034vb5t35.json new file mode 100644 index 000000000..f204ab5ac --- /dev/null +++ b/v1.43/034vb5t35.json @@ -0,0 +1,115 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1851, + "external_ids": [ + { + "all": [ + "501100000650" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.424926.f" + ], + "preferred": "grid.424926.f", + "type": "grid" + }, + { + "all": [ + "0000 0004 0417 0461" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q50575536" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/034vb5t35", + "links": [ + { + "type": "website", + "value": "http://www.nhs.uk/Services/hospitals/Overview/DefaultView.aspx?id=1416" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Royal_Marsden_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "RM" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Royal Marsden Hospital" + } + ], + "relationships": [ + { + "label": "Royal Marsden NHS Foundation Trust", + "type": "parent", + "id": "https://ror.org/0008wzh48" + }, + { + "label": "Imperial College London", + "type": "related", + "id": "https://ror.org/041kmwe10" + }, + { + "label": "Institute of Cancer Research", + "type": "related", + "id": "https://ror.org/043jzw605" + }, + { + "label": "University of London", + "type": "related", + "id": "https://ror.org/04cw6st05" + }, + { + "label": "Royal Marsden Cancer Charity", + "type": "child", + "id": "https://ror.org/058ne9w36" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/034x1af55.json b/v1.43/034x1af55.json new file mode 100644 index 000000000..602978b96 --- /dev/null +++ b/v1.43/034x1af55.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6453323, + "geonames_details": { + "country_code": "NO", + "country_name": "Norway", + "lat": 67.28325, + "lng": 14.38319, + "name": "Bodø" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2326 7101" + ], + "preferred": "0000 0001 2326 7101" + }, + { + "type": "wikidata", + "all": [ + "Q1779468" + ], + "preferred": "Q1779468" + }, + { + "type": "fundref", + "all": [ + "100015995" + ], + "preferred": "100015995" + } + ], + "id": "https://ror.org/034x1af55", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://uin.no" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Nordland" + } + ], + "names": [ + { + "value": "University of Nordland", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/035gq6r08.json b/v1.43/035gq6r08.json new file mode 100644 index 000000000..c0514816b --- /dev/null +++ b/v1.43/035gq6r08.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011879" + ], + "preferred": "501100011879" + }, + { + "type": "wikidata", + "all": [ + "Q124525851" + ], + "preferred": "Q124525851" + } + ], + "id": "https://ror.org/035gq6r08", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.labex-lermit.fr" + } + ], + "names": [ + { + "value": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "LabEx LERMIT", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Laboratory of Excellence in Research on Medication and Innovative Therapeutics", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LERMIT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/035z18f46.json b/v1.43/035z18f46.json new file mode 100644 index 000000000..0ab3bbc64 --- /dev/null +++ b/v1.43/035z18f46.json @@ -0,0 +1,69 @@ +{ + "locations": [ + { + "geonames_id": 1793511, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 37.86944, + "lng": 112.56028, + "name": "Taiyuan" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/035z18f46", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://sklqo.sxu.edu.cn" + } + ], + "names": [ + { + "value": "State Key Laboratory of Quantum Optics and Quantum Optics Devices", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Quantum Optics and Quantum Optics Devices", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "量子光学与光量子器件国家重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "Shanxi University", + "type": "parent", + "id": "https://ror.org/03y3e3s17" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0364rd617.json b/v1.43/0364rd617.json new file mode 100644 index 000000000..f7b6eb7b9 --- /dev/null +++ b/v1.43/0364rd617.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2509954, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.47391, + "lng": -0.37966, + "name": "Valencia" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2162 6430" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5917720" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.507092.9" + ], + "preferred": "grid.507092.9" + } + ], + "id": "https://ror.org/0364rd617", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://istas.net" + } + ], + "names": [ + { + "value": "Instituto Sindical de Trabajo Ambiente y Salud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ISTAS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/036dxts37.json b/v1.43/036dxts37.json new file mode 100644 index 000000000..6014a0df0 --- /dev/null +++ b/v1.43/036dxts37.json @@ -0,0 +1,108 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2008, + "external_ids": [ + { + "all": [ + "501100000811", + "100010686" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.453486.8" + ], + "preferred": "grid.453486.8", + "type": "grid" + }, + { + "all": [ + "0000 0001 2195 4661" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q993120" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/036dxts37", + "links": [ + { + "type": "website", + "value": "http://eit.europa.eu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/European_Institute_of_Innovation_and_Technology" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 47.49835, + "lng": 19.04045, + "name": "Budapest" + }, + "geonames_id": 3054643 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "EIT" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "European Institute of Innovation and Technology" + }, + { + "lang": "hu", + "types": [ + "label" + ], + "value": "Európai Innovációs és Technológiai Intézet" + } + ], + "relationships": [ + { + "label": "European Union", + "type": "parent", + "id": "https://ror.org/019w4f821" + }, + { + "label": "EIT Food", + "type": "child", + "id": "https://ror.org/01kde4v59" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/036mest28.json b/v1.43/036mest28.json new file mode 100644 index 000000000..3a0bdddfe --- /dev/null +++ b/v1.43/036mest28.json @@ -0,0 +1,87 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.463808.1" + ], + "preferred": "grid.463808.1" + } + ], + "id": "https://ror.org/036mest28", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www-archbac.u-psud.fr/" + } + ], + "names": [ + { + "value": "Biology of Extremophiles Laboratory", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire de Biologie Moleculaire du Gène chez les Extremophiles", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "BMGE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Délégation Ile-de-France Sud", + "type": "parent", + "id": "https://ror.org/01y8j9r24" + }, + { + "label": "Institute of Integrative Biology of the Cell", + "type": "parent", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "University of Paris-Sud", + "type": "parent", + "id": "https://ror.org/028rypz17" + } + ], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/036wkjd70.json b/v1.43/036wkjd70.json new file mode 100644 index 000000000..dccb5a39e --- /dev/null +++ b/v1.43/036wkjd70.json @@ -0,0 +1,105 @@ +{ + "locations": [ + { + "geonames_id": 4932869, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.59981, + "lng": -71.36728, + "name": "Chelmsford" + } + } + ], + "established": 1980, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0413 2799" + ], + "preferred": "0000 0004 0413 2799" + }, + { + "type": "wikidata", + "all": [ + "Q118075142" + ], + "preferred": "Q118075142" + }, + { + "type": "fundref", + "all": [ + "100015345" + ], + "preferred": "100015345" + } + ], + "id": "https://ror.org/036wkjd70", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.zoll.com" + } + ], + "names": [ + { + "value": "ZOLL Medical Corporation (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ZOLL", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ZOLL Medical", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ZOLL Medical Corporation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ZMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Asahi Kasei (Japan)", + "type": "parent", + "id": "https://ror.org/018wp0236" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/036xwe059.json b/v1.43/036xwe059.json new file mode 100644 index 000000000..02c3ab569 --- /dev/null +++ b/v1.43/036xwe059.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2934246, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.22172, + "lng": 6.77616, + "name": "Düsseldorf" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/036xwe059", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.mlv.nrw.de" + } + ], + "names": [ + { + "value": "Ministerium für Landwirtschaft und Verbraucherschutz des Landes Nordrhein-Westfalen", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Agriculture and Consumer Protection of the State of North Rhine-Westphalia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MLV NRW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/037405308.json b/v1.43/037405308.json new file mode 100644 index 000000000..9b6012735 --- /dev/null +++ b/v1.43/037405308.json @@ -0,0 +1,172 @@ +{ + "locations": [ + { + "geonames_id": 2174003, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -27.46794, + "lng": 153.02809, + "name": "Brisbane" + } + } + ], + "established": 1859, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0380 0628" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100003550" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3112627" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.453171.5" + ], + "preferred": "grid.453171.5" + } + ], + "id": "https://ror.org/037405308", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.qld.gov.au" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Government_of_Queensland" + } + ], + "names": [ + { + "value": "Queensland Government", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Government of Queensland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State of Queensland", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Australian e-Health Research Centre", + "type": "child", + "id": "https://ror.org/04ywhbc61" + }, + { + "label": "Department of Agriculture and Fisheries", + "type": "child", + "id": "https://ror.org/05s5aag36" + }, + { + "label": "Department of Natural Resources, Mines and Energy", + "type": "child", + "id": "https://ror.org/007zyap28" + }, + { + "label": "Department of Transport and Main Roads", + "type": "child", + "id": "https://ror.org/024ws6f80" + }, + { + "label": "Department of the Premier and Cabinet", + "type": "child", + "id": "https://ror.org/05sz45x40" + }, + { + "label": "Queensland Academy of Sport", + "type": "child", + "id": "https://ror.org/04tnw9626" + }, + { + "label": "Queensland Curriculum and Assessment Authority", + "type": "child", + "id": "https://ror.org/05fvmm618" + }, + { + "label": "Queensland Department of Education", + "type": "child", + "id": "https://ror.org/043k84p27" + }, + { + "label": "Queensland Department of Environment and Science", + "type": "child", + "id": "https://ror.org/02wtcj248" + }, + { + "label": "Queensland Health", + "type": "child", + "id": "https://ror.org/00c1dt378" + }, + { + "label": "Queensland Police Service", + "type": "child", + "id": "https://ror.org/04p74nw72" + }, + { + "label": "Queensland Rail", + "type": "child", + "id": "https://ror.org/01fykd523" + }, + { + "label": "Seqwater", + "type": "child", + "id": "https://ror.org/01vz3ga16" + }, + { + "label": "Australian Tropical Herbarium", + "type": "related", + "id": "https://ror.org/02bjj9p45" + }, + { + "label": "Advance Queensland", + "type": "child", + "id": "https://ror.org/05fb23t53" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/037p13h95.json b/v1.43/037p13h95.json new file mode 100644 index 000000000..998ea2303 --- /dev/null +++ b/v1.43/037p13h95.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3674962, + "geonames_details": { + "country_code": "CO", + "country_name": "Colombia", + "lat": 6.25184, + "lng": -75.56359, + "name": "Medellín" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0812 5789" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100018005" + ], + "preferred": "100018005" + }, + { + "type": "grid", + "all": [ + "grid.411140.1" + ], + "preferred": "grid.411140.1" + }, + { + "type": "wikidata", + "all": [ + "Q6156377" + ], + "preferred": "Q6156377" + } + ], + "id": "https://ror.org/037p13h95", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ces.edu.co" + } + ], + "names": [ + { + "value": "CES University", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/037zgn354.json b/v1.43/037zgn354.json new file mode 100644 index 000000000..b2fd2ff1e --- /dev/null +++ b/v1.43/037zgn354.json @@ -0,0 +1,138 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1996, + "external_ids": [ + { + "all": [ + "grid.469474.c" + ], + "preferred": "grid.469474.c", + "type": "grid" + }, + { + "all": [ + "0000 0000 8617 4175", + "0000 0001 2150 6738" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q50363516" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/037zgn354", + "links": [ + { + "type": "website", + "value": "https://www.hopkinsmedicine.org" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + }, + "geonames_id": 4347778 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Johns Hopkins Medicine" + } + ], + "relationships": [ + { + "label": "Howard County General Hospital", + "type": "child", + "id": "https://ror.org/05mgsm482" + }, + { + "label": "Johns Hopkins All Children's Hospital", + "type": "child", + "id": "https://ror.org/013x5cp73" + }, + { + "label": "Johns Hopkins Bayview Medical Center", + "type": "child", + "id": "https://ror.org/04pwc8466" + }, + { + "label": "Johns Hopkins Hospital", + "type": "child", + "id": "https://ror.org/05cb1k848" + }, + { + "label": "Peninsula Regional Medical Center", + "type": "child", + "id": "https://ror.org/02tc4ww71" + }, + { + "label": "Saudi Aramco Medical Services Organization", + "type": "child", + "id": "https://ror.org/04k820v98" + }, + { + "label": "Sibley Memorial Hospital", + "type": "child", + "id": "https://ror.org/056jn9s46" + }, + { + "label": "Sidney Kimmel Comprehensive Cancer Center", + "type": "child", + "id": "https://ror.org/05m5b8x20" + }, + { + "label": "Suburban Hospital", + "type": "child", + "id": "https://ror.org/00jtwsb29" + }, + { + "label": "Neurofibromatosis Therapeutic Acceleration Program", + "type": "child", + "id": "https://ror.org/01359dk79" + }, + { + "label": "Johns Hopkins University School of Medicine", + "type": "predecessor", + "id": "https://ror.org/02nfzhn33" + }, + { + "label": "Johns Hopkins University", + "type": "related", + "id": "https://ror.org/00za53h95" + }, + { + "label": "Center for Innovative Medicine", + "type": "child", + "id": "https://ror.org/04d4pvt78" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/038e0dv78.json b/v1.43/038e0dv78.json new file mode 100644 index 000000000..8fb8af427 --- /dev/null +++ b/v1.43/038e0dv78.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1884, + "external_ids": [ + { + "all": [ + "grid.411318.e" + ], + "preferred": "grid.411318.e", + "type": "grid" + }, + { + "all": [ + "0000 0004 0369 9275" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7842344" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/038e0dv78", + "links": [ + { + "type": "website", + "value": "http://www.trine.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Trine_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.63477, + "lng": -84.99941, + "name": "Angola" + }, + "geonames_id": 4917614 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Tri-State University" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Trine University" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/038kr2d80.json b/v1.43/038kr2d80.json new file mode 100644 index 000000000..673970c0d --- /dev/null +++ b/v1.43/038kr2d80.json @@ -0,0 +1,109 @@ +{ + "locations": [ + { + "geonames_id": 4180439, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 33.749, + "lng": -84.38798, + "name": "Atlanta" + } + } + ], + "established": 1930, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8741 8346" + ], + "preferred": "0000 0000 8741 8346" + }, + { + "type": "wikidata", + "all": [ + "Q2600140" + ], + "preferred": "Q2600140" + }, + { + "type": "fundref", + "all": [ + "100012692" + ], + "preferred": "100012692" + } + ], + "id": "https://ror.org/038kr2d80", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.enprc.emory.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Emory_National_Primate_Research_Center" + } + ], + "names": [ + { + "value": "Emory National Primate Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Yerkes National Primate Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Emory University Yerkes National Primate Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Emory University National Primate Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "YNPRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Emory University", + "type": "parent", + "id": "https://ror.org/03czfpz43" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/038synb39.json b/v1.43/038synb39.json new file mode 100644 index 000000000..97e83d3f3 --- /dev/null +++ b/v1.43/038synb39.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.481813.7" + ], + "preferred": "grid.481813.7", + "type": "grid" + } + ], + "id": "https://ror.org/038synb39", + "links": [ + { + "type": "website", + "value": "http://www.brc.hu/biophysics.php?change_lang=en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 46.253, + "lng": 20.14824, + "name": "Szeged" + }, + "geonames_id": 715429 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute of Biophysics" + }, + { + "lang": "hu", + "types": [ + "label" + ], + "value": "Biofizikai Intézet Szegedi Biológiai Kutatóközpont" + } + ], + "relationships": [ + { + "label": "HUN-REN Szegedi Biológiai Kutatóközpont", + "type": "parent", + "id": "https://ror.org/016gb1631" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/039epzh36.json b/v1.43/039epzh36.json new file mode 100644 index 000000000..188f53bbc --- /dev/null +++ b/v1.43/039epzh36.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 2524907, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 39.2989, + "lng": 16.25307, + "name": "Cosenza" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/039epzh36", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cs.infn.it" + } + ], + "names": [ + { + "value": "INFN Gruppo Collegato di Cosenza", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Istituto Nazionale di Fisica Nucleare Gruppo Collegato di Cosenza", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "National Institute of Nuclear Physics - Cosenza Unit", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "GCC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "University of Calabria", + "type": "related", + "id": "https://ror.org/02rc97e94" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/039h1gd08.json b/v1.43/039h1gd08.json new file mode 100644 index 000000000..2c5ef8ec9 --- /dev/null +++ b/v1.43/039h1gd08.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.481816.2" + ], + "preferred": "grid.481816.2", + "type": "grid" + } + ], + "id": "https://ror.org/039h1gd08", + "links": [ + { + "type": "website", + "value": "http://www.brc.hu/plant_biology.php?change_lang=en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 46.253, + "lng": 20.14824, + "name": "Szeged" + }, + "geonames_id": 715429 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute of Plant Biology" + }, + { + "lang": "hu", + "types": [ + "label" + ], + "value": "Növénybiológiai Intézet Szegedi Biológiai Kutatóközpont Magyar Tudományos Akadémia" + } + ], + "relationships": [ + { + "label": "HUN-REN Szegedi Biológiai Kutatóközpont", + "type": "parent", + "id": "https://ror.org/016gb1631" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/03a3nj982.json b/v1.43/03a3nj982.json new file mode 100644 index 000000000..522e21870 --- /dev/null +++ b/v1.43/03a3nj982.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432540.4" + ], + "preferred": "grid.432540.4" + } + ], + "id": "https://ror.org/03a3nj982", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ecoinstitut.coop" + } + ], + "names": [ + { + "value": "Ecoinstitut", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03ab0zs98.json b/v1.43/03ab0zs98.json new file mode 100644 index 000000000..dbd779417 --- /dev/null +++ b/v1.43/03ab0zs98.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0368 9704" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463900.8" + ], + "preferred": "grid.463900.8" + } + ], + "id": "https://ror.org/03ab0zs98", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.imo.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratoire de Mathématiques d'Orsay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratoire de Mathématiques d’Orsay", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Mathematics Laboratory of Orsay", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LMO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03artm726.json b/v1.43/03artm726.json new file mode 100644 index 000000000..148cb2aac --- /dev/null +++ b/v1.43/03artm726.json @@ -0,0 +1,96 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1955, + "external_ids": [ + { + "all": [ + "grid.417118.a" + ], + "preferred": "grid.417118.a", + "type": "grid" + }, + { + "all": [ + "0000 0004 0435 1924" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q30286651" + ], + "preferred": "Q30286651", + "type": "wikidata" + } + ], + "id": "https://ror.org/03artm726", + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/locations/beaumont-hospital-royal-oak" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.48948, + "lng": -83.14465, + "name": "Royal Oak" + }, + "geonames_id": 5007804 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Beaumont Hospital, Royal Oak" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "WBH" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "William Beaumont Hospital, Royal Oak" + } + ], + "relationships": [ + { + "label": "Oakland University", + "type": "related", + "id": "https://ror.org/01ythxj32" + }, + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/03b21sh32.json b/v1.43/03b21sh32.json new file mode 100644 index 000000000..6d0a092e8 --- /dev/null +++ b/v1.43/03b21sh32.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3128026, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.26271, + "lng": -2.92528, + "name": "Bilbao" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0467 2410" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100014371" + ], + "preferred": "501100014371" + }, + { + "type": "wikidata", + "all": [ + "Q4867846" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462072.5" + ], + "preferred": "grid.462072.5" + } + ], + "id": "https://ror.org/03b21sh32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bcamath.org" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Basque_Center_for_Applied_Mathematics" + } + ], + "names": [ + { + "value": "Basque Center for Applied Mathematics", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BCAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03bk8p931.json b/v1.43/03bk8p931.json new file mode 100644 index 000000000..3e9ea84ba --- /dev/null +++ b/v1.43/03bk8p931.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1970, + "external_ids": [ + { + "all": [ + "grid.413656.3" + ], + "preferred": "grid.413656.3", + "type": "grid" + }, + { + "all": [ + "0000 0004 0450 6121" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q14716129" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03bk8p931", + "links": [ + { + "type": "website", + "value": "http://www.helendevoschildrens.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Helen_DeVos_Children%27s_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.96336, + "lng": -85.66809, + "name": "Grand Rapids" + }, + "geonames_id": 4994358 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Helen DeVos Children's Hospital" + } + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/03byxpy70.json b/v1.43/03byxpy70.json new file mode 100644 index 000000000..1a0bdd151 --- /dev/null +++ b/v1.43/03byxpy70.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2349276, + "geonames_details": { + "country_code": "NG", + "country_name": "Nigeria", + "lat": 6.19824, + "lng": 6.73187, + "name": "Asaba" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/03byxpy70", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://dou.edu.ng" + } + ], + "names": [ + { + "value": "Dennis Osadebay University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Dennis Osadebay University, Asaba", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DOU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03c4atk17.json b/v1.43/03c4atk17.json new file mode 100644 index 000000000..e1e527f7f --- /dev/null +++ b/v1.43/03c4atk17.json @@ -0,0 +1,132 @@ +{ + "locations": [ + { + "geonames_id": 2659836, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.01008, + "lng": 8.96004, + "name": "Lugano" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2203 2861" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q689617", + "Q27484979" + ], + "preferred": "Q689617" + }, + { + "type": "grid", + "all": [ + "grid.29078.34" + ], + "preferred": "grid.29078.34" + } + ], + "id": "https://ror.org/03c4atk17", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.usi.ch" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Universit%C3%A0_della_Svizzera_italiana" + } + ], + "names": [ + { + "value": "Università della Svizzera italiana", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Lugano", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Italian Switzerland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université de la Suisse italienne", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Southern Switzerland", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "USI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institute of Oncology Research", + "type": "child", + "id": "https://ror.org/01dpyn972" + }, + { + "label": "Institute for Research in Biomedicine", + "type": "child", + "id": "https://ror.org/05gfswd81" + }, + { + "label": "Dalle Molle Institute for Artificial Intelligence Research", + "type": "child", + "id": "https://ror.org/013355g38" + }, + { + "label": "Facoltà di Teologia di Lugano", + "type": "child", + "id": "https://ror.org/02k3baz05" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03c7e3050.json b/v1.43/03c7e3050.json new file mode 100644 index 000000000..62a17f6d0 --- /dev/null +++ b/v1.43/03c7e3050.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4904 4581" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.477257.4" + ], + "preferred": "grid.477257.4" + } + ], + "id": "https://ror.org/03c7e3050", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uab.cat/web/fundacio-salut-i-envelliment-1345754058073.html" + } + ], + "names": [ + { + "value": "Fundació Salut i Envelliment UAB", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Universitat Autònoma de Barcelona", + "type": "related", + "id": "https://ror.org/052g8jq94" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03cebjr81.json b/v1.43/03cebjr81.json new file mode 100644 index 000000000..49c3288a9 --- /dev/null +++ b/v1.43/03cebjr81.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1917, + "external_ids": [ + { + "all": [ + "grid.422658.f" + ], + "preferred": "grid.422658.f", + "type": "grid" + }, + { + "all": [ + "0000 0004 0369 9160" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4754216" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03cebjr81", + "links": [ + { + "type": "website", + "value": "http://www.anderson.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Anderson_University_(Indiana)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.10532, + "lng": -85.68025, + "name": "Anderson" + }, + "geonames_id": 4917592 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Anderson University - Indiana" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/03cmntr54.json b/v1.43/03cmntr54.json new file mode 100644 index 000000000..a729df75a --- /dev/null +++ b/v1.43/03cmntr54.json @@ -0,0 +1,108 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1975, + "external_ids": [ + { + "all": [ + "501100022432" + ], + "preferred": "501100022432", + "type": "fundref" + }, + { + "all": [ + "grid.17423.33" + ], + "preferred": "grid.17423.33", + "type": "grid" + }, + { + "all": [ + "0000 0004 1767 6621" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1583495" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03cmntr54", + "links": [ + { + "type": "website", + "value": "https://www.iac.es" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 28.46824, + "lng": -16.25462, + "name": "Tenerife" + }, + "geonames_id": 2511174 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IAC" + }, + { + "lang": "ca", + "types": [ + "label" + ], + "value": "Institut Astrofísic de les Illes Canàries" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Instituto de Astrofísica de Canarias" + } + ], + "relationships": [ + { + "label": "Isaac Newton Group", + "type": "child", + "id": "https://ror.org/054tmk179" + }, + { + "label": "Red Española de Supercomputación", + "type": "related", + "id": "https://ror.org/02x2fbb57" + }, + { + "label": "Universidad de La Laguna", + "type": "parent", + "id": "https://ror.org/01r9z8p25" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/03cn98e27.json b/v1.43/03cn98e27.json new file mode 100644 index 000000000..ceb503dc5 --- /dev/null +++ b/v1.43/03cn98e27.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1945, + "external_ids": [ + { + "all": [ + "100001200" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.479950.6" + ], + "preferred": "grid.479950.6", + "type": "grid" + }, + { + "all": [ + "0000 0004 5906 4738" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/03cn98e27", + "links": [ + { + "type": "website", + "value": "http://www.jmkfund.org/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.71427, + "lng": -74.00597, + "name": "New York" + }, + "geonames_id": 5128581 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "J.M. Kaplan Fund" + } + ], + "relationships": [ + { + "label": "FURTHERMORE grants in publishing", + "type": "child", + "id": "https://ror.org/04vzm8988" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/v1.43/03csrq586.json b/v1.43/03csrq586.json new file mode 100644 index 000000000..ebbb9dde4 --- /dev/null +++ b/v1.43/03csrq586.json @@ -0,0 +1,102 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2007, + "external_ids": [ + { + "all": [ + "100012329" + ], + "preferred": "100012329", + "type": "fundref" + }, + { + "all": [ + "grid.484119.1" + ], + "preferred": "grid.484119.1", + "type": "grid" + }, + { + "all": [ + "0000 0004 6432 5234" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5324551" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03csrq586", + "links": [ + { + "type": "website", + "value": "https://www.euramet.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/EURAMET" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.26594, + "lng": 10.52673, + "name": "Braunschweig" + }, + "geonames_id": 2945024 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "EURAMET" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "EUROMET" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "European Association of National Metrology Institutes" + } + ], + "relationships": [ + { + "label": "European Metrology Programme for Innovation and Research", + "type": "child", + "id": "https://ror.org/042k5q325" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/v1.43/03cve4549.json b/v1.43/03cve4549.json new file mode 100644 index 000000000..8cbd94991 --- /dev/null +++ b/v1.43/03cve4549.json @@ -0,0 +1,189 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1911, + "external_ids": [ + { + "all": [ + "501100004147", + "501100004407", + "501100005150" + ], + "preferred": "501100004147", + "type": "fundref" + }, + { + "all": [ + "grid.12527.33" + ], + "preferred": "grid.12527.33", + "type": "grid" + }, + { + "all": [ + "0000 0001 0662 3178" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q16955" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03cve4549", + "links": [ + { + "type": "website", + "value": "https://www.tsinghua.edu.cn" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Tsinghua_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + }, + "geonames_id": 1816670 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "THU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Tsinghua University" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "清华大学" + } + ], + "relationships": [ + { + "label": "Center for Life Sciences", + "type": "child", + "id": "https://ror.org/05kje8j93" + }, + { + "label": "Collaborative Innovation Center of Quantum Matter", + "type": "child", + "id": "https://ror.org/03jn38r85" + }, + { + "label": "State Key Laboratory on Integrated Optoelectronics", + "type": "child", + "id": "https://ror.org/00g102351" + }, + { + "label": "The Synergetic Innovation Center for Advanced Materials", + "type": "child", + "id": "https://ror.org/05nzc1r88" + }, + { + "label": "Tsinghua–Berkeley Shenzhen Institute", + "type": "child", + "id": "https://ror.org/02hhwwz98" + }, + { + "label": "State Key Laboratory of Microwave and Digital Communication Technology", + "type": "child", + "id": "https://ror.org/00jxb4047" + }, + { + "label": "State Key Laboratory of Tribology", + "type": "child", + "id": "https://ror.org/03h33sq24" + }, + { + "label": "State Key Laboratory of Automobile Safety and Energy Conservation", + "type": "child", + "id": "https://ror.org/023ht6a36" + }, + { + "label": "State Key Laboratory of Water and Sediment Science and Water Conservancy and Hydropower Engineering", + "type": "child", + "id": "https://ror.org/01ekf5a72" + }, + { + "label": "State Key Laboratory of Precision Testing Technology and Instruments", + "type": "child", + "id": "https://ror.org/04r1ssz88" + }, + { + "label": "State Key Laboratory of New Ceramics and Fine Processing", + "type": "child", + "id": "https://ror.org/01t8xrx60" + }, + { + "label": "State Key Laboratory of Membrane Biology", + "type": "child", + "id": "https://ror.org/03mq8q210" + }, + { + "label": "State Key Laboratory of Low-Dimensional Quantum Physics", + "type": "child", + "id": "https://ror.org/016g9tg59" + }, + { + "label": "Beijing Hua Xin Hospital", + "type": "related", + "id": "https://ror.org/04k6zqn86" + }, + { + "label": "Beijing Tsinghua Chang Gung Hospital", + "type": "related", + "id": "https://ror.org/050nfgr37" + }, + { + "label": "Chinese Academy of Medical Sciences & Peking Union Medical College", + "type": "related", + "id": "https://ror.org/02drdmm93" + }, + { + "label": "Peking Union Medical College Hospital", + "type": "related", + "id": "https://ror.org/04jztag35" + }, + { + "label": "State Key Laboratory of Power System and Generation Equipment", + "type": "child", + "id": "https://ror.org/043evzg22" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/03czfpz43.json b/v1.43/03czfpz43.json new file mode 100644 index 000000000..47349257e --- /dev/null +++ b/v1.43/03czfpz43.json @@ -0,0 +1,164 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1836, + "external_ids": [ + { + "all": [ + "100006939", + "100007814", + "100007623", + "100010416", + "100008374", + "100007667", + "100006786", + "100006529", + "100006528", + "100005833", + "100013116" + ], + "preferred": "100006939", + "type": "fundref" + }, + { + "all": [ + "grid.189967.8" + ], + "preferred": "grid.189967.8", + "type": "grid" + }, + { + "all": [ + "0000 0001 0941 6502", + "0000 0004 1936 7398" + ], + "preferred": "0000 0004 1936 7398", + "type": "isni" + }, + { + "all": [ + "Q621043" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03czfpz43", + "links": [ + { + "type": "website", + "value": "http://www.emory.edu/home/index.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Emory_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 33.749, + "lng": -84.38798, + "name": "Atlanta" + }, + "geonames_id": 4180439 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Emory University" + } + ], + "relationships": [ + { + "label": "Center for Translational Research in Neuroimaging and Data Science", + "type": "child", + "id": "https://ror.org/02qx6zf82" + }, + { + "label": "Emory Eye Center", + "type": "child", + "id": "https://ror.org/00hr6kp69" + }, + { + "label": "The Wallace H. Coulter Department of Biomedical Engineering", + "type": "child", + "id": "https://ror.org/02j15s898" + }, + { + "label": "Woodruff Health Sciences Center", + "type": "child", + "id": "https://ror.org/01xm4tt59" + }, + { + "label": "Emory Global Health Institute", + "type": "child", + "id": "https://ror.org/043s0sy92" + }, + { + "label": "Georgia Clinical and Translational Science Alliance", + "type": "child", + "id": "https://ror.org/034hw7m59" + }, + { + "label": "Atlanta VA Medical Center", + "type": "related", + "id": "https://ror.org/04z89xx32" + }, + { + "label": "Children's Healthcare of Atlanta", + "type": "related", + "id": "https://ror.org/050fhx250" + }, + { + "label": "Emory Rehabilitation Hospital", + "type": "related", + "id": "https://ror.org/02sfkc120" + }, + { + "label": "Emory University Hospital", + "type": "related", + "id": "https://ror.org/05dm4ck87" + }, + { + "label": "Emory University Hospital Midtown", + "type": "related", + "id": "https://ror.org/02aknh966" + }, + { + "label": "Grady Memorial Hospital", + "type": "related", + "id": "https://ror.org/009hj8759" + }, + { + "label": "Henrietta Egleston Hospital for Children", + "type": "related", + "id": "https://ror.org/002q1t780" + }, + { + "label": "Emory National Primate Research Center", + "type": "child", + "id": "https://ror.org/038kr2d80" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/03dcvs546.json b/v1.43/03dcvs546.json new file mode 100644 index 000000000..4d1270a49 --- /dev/null +++ b/v1.43/03dcvs546.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2636432, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.62079, + "lng": -3.94323, + "name": "Swansea" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7765 6809" + ], + "preferred": "0000 0004 7765 6809" + }, + { + "type": "fundref", + "all": [ + "100014590" + ], + "preferred": "100014590" + } + ], + "id": "https://ror.org/03dcvs546", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ernw.ac.uk" + } + ], + "names": [ + { + "value": "Engineering Research Network Wales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Rhwydwaith Ymchwil Peirianneg Cymru", + "types": [ + "label" + ], + "lang": "cy" + }, + { + "value": "ERNW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03eewzy02.json b/v1.43/03eewzy02.json new file mode 100644 index 000000000..61aa0237f --- /dev/null +++ b/v1.43/03eewzy02.json @@ -0,0 +1,74 @@ +{ + "locations": [ + { + "geonames_id": 2996944, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.74846, + "lng": 4.84671, + "name": "Lyon" + } + } + ], + "established": 1983, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q1052684" + ], + "preferred": "Q1052684" + } + ], + "id": "https://ror.org/03eewzy02", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cegid.com" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Cegid" + } + ], + "names": [ + { + "value": "Cegid (France)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Cegid", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Meta4 (Spain)", + "type": "predecessor", + "id": "https://ror.org/03kevw840" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03eh3y714.json b/v1.43/03eh3y714.json new file mode 100644 index 000000000..300974d8e --- /dev/null +++ b/v1.43/03eh3y714.json @@ -0,0 +1,117 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-03-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1988, + "external_ids": [ + { + "all": [ + "501100004219" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.5991.4" + ], + "preferred": "grid.5991.4", + "type": "grid" + }, + { + "all": [ + "0000 0001 1090 7501" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q351857" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03eh3y714", + "links": [ + { + "type": "website", + "value": "http://www.psi.ch/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Paul_Scherrer_Institute" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 47.52682, + "lng": 8.21486, + "name": "Villigen" + }, + "geonames_id": 2658120 + } + ], + "names": [ + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Institut Paul Scherrer" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "PSI" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Paul Scherrer Institute" + } + ], + "relationships": [ + { + "label": "Lib4RI - Library for the Research Institutes within the ETH Domain: Eawag, Empa, PSI & WSL", + "type": "child", + "id": "https://ror.org/021f7p178" + }, + { + "label": "Swiss Light Source", + "type": "child", + "id": "https://ror.org/04xrb7c55" + }, + { + "label": "Board of the Swiss Federal Institutes of Technology", + "type": "parent", + "id": "https://ror.org/01rvn4p91" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/03f1agw55.json b/v1.43/03f1agw55.json new file mode 100644 index 000000000..a8038df29 --- /dev/null +++ b/v1.43/03f1agw55.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2007, + "external_ids": [], + "id": "https://ror.org/03f1agw55", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://dpr-barcelona.com" + } + ], + "names": [ + { + "value": "dpr-barcelona", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DPR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03f6cng42.json b/v1.43/03f6cng42.json new file mode 100644 index 000000000..4c355c95d --- /dev/null +++ b/v1.43/03f6cng42.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9850 0097" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434693.f" + ], + "preferred": "grid.434693.f" + } + ], + "id": "https://ror.org/03f6cng42", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.opti.org" + } + ], + "names": [ + { + "value": "Observatorio de Prospectiva Tecnológica Industrial", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Observatory for Prospective Technological Industry", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "OPTI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03fdma228.json b/v1.43/03fdma228.json new file mode 100644 index 000000000..dce66ff24 --- /dev/null +++ b/v1.43/03fdma228.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8785 8261" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5871651" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434260.7" + ], + "preferred": "grid.434260.7" + } + ], + "id": "https://ror.org/03fdma228", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://fride.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/FRIDE" + } + ], + "names": [ + { + "value": "Fundación para las Relaciones Internacionales y el Diálogo Exterior", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Foundation for International Relations and Foreign Dialogue", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "FRIDE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03fpf5m04.json b/v1.43/03fpf5m04.json new file mode 100644 index 000000000..0d3a56f23 --- /dev/null +++ b/v1.43/03fpf5m04.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2634308, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.34603, + "lng": -2.97665, + "name": "Weston-super-Mare" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0484 4171" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.439741.c" + ], + "preferred": "grid.439741.c" + } + ], + "id": "https://ror.org/03fpf5m04", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.waht.nhs.uk/" + } + ], + "names": [ + { + "value": "Weston Area Health NHS Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Weston General Hospital", + "type": "child", + "id": "https://ror.org/03mc19e15" + }, + { + "label": "University Hospitals Bristol and Weston NHS Foundation Trust", + "type": "successor", + "id": "https://ror.org/03jzzxg14" + } + ], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03fte3n86.json b/v1.43/03fte3n86.json new file mode 100644 index 000000000..7f082e4e7 --- /dev/null +++ b/v1.43/03fte3n86.json @@ -0,0 +1,99 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1993, + "external_ids": [ + { + "all": [ + "0000 0004 0445 8166" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q51782228" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.503314.0" + ], + "preferred": "grid.503314.0", + "type": "grid" + } + ], + "id": "https://ror.org/03fte3n86", + "links": [ + { + "type": "website", + "value": "https://www6.montpellier.inra.fr/lepse" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Laboratoire d'Écophysiologie Moléculaire des Plantes sous Stress Environnementaux" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LEPSE" + } + ], + "relationships": [ + { + "label": "Agence Nationale de la Recherche", + "type": "parent", + "id": "https://ror.org/00rbzpz17" + }, + { + "label": "Centre Occitanie-Montpellier", + "type": "parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/03g1q6c06.json b/v1.43/03g1q6c06.json new file mode 100644 index 000000000..2534a74f5 --- /dev/null +++ b/v1.43/03g1q6c06.json @@ -0,0 +1,121 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1871, + "external_ids": [ + { + "all": [ + "100008679" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.264269.d" + ], + "preferred": "grid.264269.d", + "type": "grid" + }, + { + "all": [ + "0000 0001 0151 0940" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q6149540" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03g1q6c06", + "links": [ + { + "type": "website", + "value": "http://www.geneseo.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Geneseo" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.7959, + "lng": -77.81695, + "name": "Geneseo" + }, + "geonames_id": 5118394 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "SUNY Geneseo" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "State University of New York at Geneseo" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "State University of New York-College at Geneseo" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal de Nueva York en Geneseo" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Wadsworth Normal and Training School" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/03g5ew477.json b/v1.43/03g5ew477.json new file mode 100644 index 000000000..ad3e1a7a7 --- /dev/null +++ b/v1.43/03g5ew477.json @@ -0,0 +1,126 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1757 1854" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100017170" + ], + "preferred": "100017170" + }, + { + "type": "wikidata", + "all": [ + "Q3775506" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5853.b" + ], + "preferred": "grid.5853.b" + } + ], + "id": "https://ror.org/03g5ew477", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.icfo.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ICFO_%E2%80%93_The_Institute_of_Photonic_Sciences" + } + ], + "names": [ + { + "value": "Institute of Photonic Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto de Ciencias Fotónicas", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Institut de Ciències Fotòniques", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "ICFO", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "ICFO-CERCA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Barcelona Institute for Science and Technology", + "type": "parent", + "id": "https://ror.org/03kpps236" + }, + { + "label": "CERCA Institution", + "type": "parent", + "id": "https://ror.org/01bkbaq61" + }, + { + "label": "Universitat Politècnica de Catalunya", + "type": "parent", + "id": "https://ror.org/03mb6wj31" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03gbd4842.json b/v1.43/03gbd4842.json new file mode 100644 index 000000000..d38d5ac8a --- /dev/null +++ b/v1.43/03gbd4842.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1906, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q14715871" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.449497.3" + ], + "preferred": "grid.449497.3" + } + ], + "id": "https://ror.org/03gbd4842", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.suffolk.edu/madrid-campus" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Suffolk_University" + } + ], + "names": [ + { + "value": "Suffolk University Madrid", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Suffolk University Madrid Campus", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universidad Suffolk Madrid", + "types": [ + "label" + ], + "lang": "es" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03gd0dm95.json b/v1.43/03gd0dm95.json new file mode 100644 index 000000000..c6b2baaba --- /dev/null +++ b/v1.43/03gd0dm95.json @@ -0,0 +1,122 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1983, + "external_ids": [ + { + "all": [ + "100007607" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.7147.5" + ], + "preferred": "grid.7147.5", + "type": "grid" + }, + { + "all": [ + "0000 0001 0633 6224" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4690953" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03gd0dm95", + "links": [ + { + "type": "website", + "value": "http://aku.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Aga_Khan_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PK", + "country_name": "Pakistan", + "lat": 24.8608, + "lng": 67.0104, + "name": "Karachi" + }, + "geonames_id": 1174872 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "AKU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Aga Khan University" + }, + { + "lang": "ur", + "types": [ + "label" + ], + "value": "آغا خان یونیورسٹی" + } + ], + "relationships": [ + { + "label": "Aga Khan Hospital for Women", + "type": "child", + "id": "https://ror.org/00d3ws365" + }, + { + "label": "Aga Khan University Hospital", + "type": "child", + "id": "https://ror.org/05xcx0k58" + }, + { + "label": "Aga Khan University Nairobi", + "type": "child", + "id": "https://ror.org/01zv98a09" + }, + { + "label": "Aga Khan Development Network", + "type": "parent", + "id": "https://ror.org/028mpsh75" + }, + { + "label": "The Aga Khan University (International) in the United Kingdom", + "type": "child", + "id": "https://ror.org/04m2z2476" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/03gf4dx13.json b/v1.43/03gf4dx13.json new file mode 100644 index 000000000..714e7ef00 --- /dev/null +++ b/v1.43/03gf4dx13.json @@ -0,0 +1,69 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/03gf4dx13", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.drace.com" + } + ], + "names": [ + { + "value": "DRACE GEOCISA S.A. (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DRACE GEOCISA S.A.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DRACE GEOCISA", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Geocisa (Spain)", + "type": "predecessor", + "id": "https://ror.org/0040z4m89" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03gmkya61.json b/v1.43/03gmkya61.json new file mode 100644 index 000000000..42d5e35ad --- /dev/null +++ b/v1.43/03gmkya61.json @@ -0,0 +1,87 @@ +{ + "locations": [ + { + "geonames_id": 2995206, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.72692, + "lng": 2.28301, + "name": "Massy" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109621296" + ], + "preferred": "Q109621296" + } + ], + "id": "https://ror.org/03gmkya61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www6.versailles-grignon.inrae.fr/umr-sayfood/UMR-SayFood" + } + ], + "names": [ + { + "value": "SayFood - Food and Bioproduct Engineering", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SayFood", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Paris-saclay food and bioproduct engineering research unit", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03gna4510.json b/v1.43/03gna4510.json new file mode 100644 index 000000000..db67f63a6 --- /dev/null +++ b/v1.43/03gna4510.json @@ -0,0 +1,68 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2012, + "external_ids": [ + { + "all": [ + "grid.454367.7" + ], + "preferred": "grid.454367.7", + "type": "grid" + } + ], + "id": "https://ror.org/03gna4510", + "links": [ + { + "type": "website", + "value": "http://www.ukcrcexpmed.org.uk/BristolCVBRU/Pages/FacilityWelcome.aspx" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + }, + "geonames_id": 2654675 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "NIHR Bristol Cardiovascular Biomedical Research Unit" + } + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "related", + "id": "https://ror.org/0524sp257" + }, + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/03h4zjr91.json b/v1.43/03h4zjr91.json new file mode 100644 index 000000000..830b42765 --- /dev/null +++ b/v1.43/03h4zjr91.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 5381396, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 34.14778, + "lng": -118.14452, + "name": "Pasadena" + } + } + ], + "established": 1904, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0373 5870" + ], + "preferred": "0000 0004 0373 5870" + }, + { + "type": "grid", + "all": [ + "grid.432988.c" + ], + "preferred": "grid.432988.c" + }, + { + "type": "fundref", + "all": [ + "100029528" + ], + "preferred": "100029528" + } + ], + "id": "https://ror.org/03h4zjr91", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://obs.carnegiescience.edu/" + } + ], + "names": [ + { + "value": "Carnegie Observatories", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Carnegie Institution of Washington", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Carnegie Institution for Science", + "type": "parent", + "id": "https://ror.org/04jr01610" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03hc27x54.json b/v1.43/03hc27x54.json new file mode 100644 index 000000000..4cc3a8449 --- /dev/null +++ b/v1.43/03hc27x54.json @@ -0,0 +1,76 @@ +{ + "locations": [ + { + "geonames_id": 2464461, + "geonames_details": { + "country_code": "TN", + "country_name": "Tunisia", + "lat": 34, + "lng": 9, + "name": "Tunisia" + } + } + ], + "established": 1978, + "external_ids": [], + "id": "https://ror.org/03hc27x54", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cnudst.rnrt.tn" + } + ], + "names": [ + { + "value": "University National Center of Scientific and Technical Documentation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre National Universitaire de Documentation Scientifique et Technique", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "المركز الوطني الجامعي للتوثيق العلمي والتقني", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "CNUDST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ministry of Higher Education and Scientific Research", + "type": "parent", + "id": "https://ror.org/05v1m8q81" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03hecy592.json b/v1.43/03hecy592.json new file mode 100644 index 000000000..1de003a95 --- /dev/null +++ b/v1.43/03hecy592.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2857458, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 53.14118, + "lng": 8.21467, + "name": "Oldenburg" + } + } + ], + "established": 1792, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2331 9127" + ], + "preferred": "0000 0001 2331 9127" + }, + { + "type": "wikidata", + "all": [ + "Q1802139" + ], + "preferred": "Q1802139" + } + ], + "id": "https://ror.org/03hecy592", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lb-oldenburg.de" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Landesbibliothek_Oldenburg" + } + ], + "names": [ + { + "value": "Landesbibliothek Oldenburg", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Library of Oldenburg", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LBO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03hpdk269.json b/v1.43/03hpdk269.json new file mode 100644 index 000000000..311a9a4d1 --- /dev/null +++ b/v1.43/03hpdk269.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3124569, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.35, + "lng": 2.08333, + "name": "Cornellà de Llobregat" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.8563.8" + ], + "preferred": "grid.8563.8" + } + ], + "id": "https://ror.org/03hpdk269", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cric.cat/" + } + ], + "names": [ + { + "value": "Catalonian Research and Innovation Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CRIC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ateknea Solutions (Spain)", + "type": "successor", + "id": "https://ror.org/01m260238" + } + ], + "status": "inactive", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03hv28176.json b/v1.43/03hv28176.json new file mode 100644 index 000000000..8299d7c35 --- /dev/null +++ b/v1.43/03hv28176.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2820860, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.52266, + "lng": 9.05222, + "name": "Tübingen" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0493 3318" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1813768" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418956.7" + ], + "preferred": "grid.418956.7" + } + ], + "id": "https://ror.org/03hv28176", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iwm-tuebingen.de" + } + ], + "names": [ + { + "value": "Leibniz-Institut für Wissensmedien", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Stiftung „Medien in der Bildung“", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "IWM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03hvdbf98.json b/v1.43/03hvdbf98.json new file mode 100644 index 000000000..5a4e18147 --- /dev/null +++ b/v1.43/03hvdbf98.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1839, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7239 8126" + ], + "preferred": "0000 0004 7239 8126" + }, + { + "type": "fundref", + "all": [ + "501100011950" + ], + "preferred": "501100011950" + } + ], + "id": "https://ror.org/03hvdbf98", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bmafoundationmr.org.uk" + } + ], + "names": [ + { + "value": "BMA Foundation for Medical Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BMA Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "British Medical Association Foundation for Medical Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "British Medical Association Foundation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "British Medical Association", + "type": "parent", + "id": "https://ror.org/02caz1f24" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03jdj4y14.json b/v1.43/03jdj4y14.json new file mode 100644 index 000000000..1b39d774c --- /dev/null +++ b/v1.43/03jdj4y14.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1993, + "external_ids": [ + { + "all": [ + "100007065" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.451133.1" + ], + "preferred": "grid.451133.1", + "type": "grid" + }, + { + "all": [ + "0000 0004 0458 4453" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q182477" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03jdj4y14", + "links": [ + { + "type": "website", + "value": "http://www.nvidia.com/page/home.html" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Nvidia" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.35411, + "lng": -121.95524, + "name": "Santa Clara" + }, + "geonames_id": 5393015 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "NVIDIA Corporation" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Nvidia (United States)" + } + ], + "relationships": [ + { + "label": "Nvidia (United Kingdom)", + "type": "child", + "id": "https://ror.org/02kr42612" + }, + { + "label": "NVIDIA (Italy)", + "type": "child", + "id": "https://ror.org/04z2hsy54" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/03jn2p430.json b/v1.43/03jn2p430.json new file mode 100644 index 000000000..bd0b0759f --- /dev/null +++ b/v1.43/03jn2p430.json @@ -0,0 +1,116 @@ +{ + "locations": [ + { + "geonames_id": 1176615, + "geonames_details": { + "country_code": "PK", + "country_name": "Pakistan", + "lat": 33.72148, + "lng": 73.04329, + "name": "Islamabad" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2230 840X" + ], + "preferred": "0000 0001 2230 840X" + }, + { + "type": "wikidata", + "all": [ + "Q4294470" + ], + "preferred": "Q4294470" + }, + { + "type": "fundref", + "all": [ + "100019473" + ], + "preferred": "100019473" + } + ], + "id": "https://ror.org/03jn2p430", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://most.gov.pk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Science_and_Technology_%28Pakistan%29" + } + ], + "names": [ + { + "value": "Ministry of Science and Technology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Science and Technology, Government of Pakistan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Science and Technology of Pakistan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Pakistan Ministry of Science and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "وزارت سائنس و ٹیکنالوجی", + "types": [ + "label" + ], + "lang": "ar" + }, + { + "value": "MoST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Government of Pakistan", + "type": "parent", + "id": "https://ror.org/00pnp4y96" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03jsyxh43.json b/v1.43/03jsyxh43.json new file mode 100644 index 000000000..4254b13d8 --- /dev/null +++ b/v1.43/03jsyxh43.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2034937, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 41.79222, + "lng": 123.43278, + "name": "Shenyang" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/03jsyxh43", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sysard.com" + } + ], + "names": [ + { + "value": "Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Shenyang Sinochem Agrochemicals R&D Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Shenyang Sinochem Agrochemicals R&D Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "沈阳中化农药化工研发有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03jzzxg14.json b/v1.43/03jzzxg14.json new file mode 100644 index 000000000..55361c606 --- /dev/null +++ b/v1.43/03jzzxg14.json @@ -0,0 +1,119 @@ +{ + "locations": [ + { + "geonames_id": 2654675, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q17028004" + ], + "preferred": "Q17028004" + }, + { + "type": "fundref", + "all": [ + "100012141" + ], + "preferred": "100012141" + } + ], + "id": "https://ror.org/03jzzxg14", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uhbw.nhs.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_Hospitals_Bristol_and_Weston_NHS_Foundation_Trust" + } + ], + "names": [ + { + "value": "University Hospitals Bristol and Weston NHS Foundation Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Bristol and Weston Foundation Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Bristol and Weston NHS Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University Hospitals Bristol and Weston Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UHBW NHS Foundation Trust", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UHBW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University Hospitals Bristol NHS Foundation Trust", + "type": "predecessor", + "id": "https://ror.org/04nm1cv11" + }, + { + "label": "Weston Area Health NHS Trust", + "type": "predecessor", + "id": "https://ror.org/03fpf5m04" + }, + { + "label": "Weston General Hospital", + "type": "child", + "id": "https://ror.org/03mc19e15" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03k4wdb90.json b/v1.43/03k4wdb90.json new file mode 100644 index 000000000..a8f403952 --- /dev/null +++ b/v1.43/03k4wdb90.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.476174.7" + ], + "preferred": "grid.476174.7" + }, + { + "type": "isni", + "all": [ + "0000 0004 7677 6809" + ], + "preferred": "0000 0004 7677 6809" + }, + { + "type": "wikidata", + "all": [ + "Q117405723" + ], + "preferred": "Q117405723" + } + ], + "id": "https://ror.org/03k4wdb90", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.barcelonabeta.org" + } + ], + "names": [ + { + "value": "Barcelonaβeta Brain Research Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Barcelonabeta Brain Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BBRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Pompeu Fabra University", + "type": "parent", + "id": "https://ror.org/04n0g0b29" + }, + { + "label": "Pasqual Maragall Foundation", + "type": "parent", + "id": "https://ror.org/01nry9c15" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03k8zj440.json b/v1.43/03k8zj440.json new file mode 100644 index 000000000..045be61b3 --- /dev/null +++ b/v1.43/03k8zj440.json @@ -0,0 +1,122 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0001 1530 8903" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "grid.426047.3" + ], + "preferred": "grid.426047.3", + "type": "grid" + } + ], + "id": "https://ror.org/03k8zj440", + "links": [ + { + "type": "website", + "value": "http://sescam.castillalamancha.es/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.8581, + "lng": -4.02263, + "name": "Toledo" + }, + "geonames_id": 2510409 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Servicio de Salud de Castilla La Mancha" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SESCAM" + } + ], + "relationships": [ + { + "label": "Complejo Hospitalario Universitario de Albacete", + "type": "child", + "id": "https://ror.org/04a5hr295" + }, + { + "label": "Complejo Hospitalario Universitario de Toledo", + "type": "child", + "id": "https://ror.org/04q4ppz72" + }, + { + "label": "Hospital General Nuestra Señora del Prado", + "type": "child", + "id": "https://ror.org/00k5pj069" + }, + { + "label": "Hospital General Universitario de Ciudad Real", + "type": "child", + "id": "https://ror.org/02f30ff69" + }, + { + "label": "Hospital General de Almansa", + "type": "child", + "id": "https://ror.org/01wc63152" + }, + { + "label": "Hospital General de Tomelloso", + "type": "child", + "id": "https://ror.org/01zbsrk34" + }, + { + "label": "Hospital Nacional de Parapléjicos", + "type": "child", + "id": "https://ror.org/04xzgfg07" + }, + { + "label": "Hospital Universitario de Guadalajara", + "type": "child", + "id": "https://ror.org/00jkz9152" + }, + { + "label": "Hospital Virgen de la Luz", + "type": "child", + "id": "https://ror.org/00k49k182" + }, + { + "label": "Hospital de Hellín", + "type": "child", + "id": "https://ror.org/01gaptw32" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/03k9z2963.json b/v1.43/03k9z2963.json new file mode 100644 index 000000000..4362fbffa --- /dev/null +++ b/v1.43/03k9z2963.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0624 4946" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q51784704" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.503142.1" + ], + "preferred": "grid.503142.1" + } + ], + "id": "https://ror.org/03k9z2963", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.math.ens.psl.eu" + } + ], + "names": [ + { + "value": "Département de mathématiques et applications", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Department of Mathematics and their Applications", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "DMA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "École Normale Supérieure - PSL", + "type": "parent", + "id": "https://ror.org/05a0dhs15" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03kbarg82.json b/v1.43/03kbarg82.json new file mode 100644 index 000000000..e0f4a9205 --- /dev/null +++ b/v1.43/03kbarg82.json @@ -0,0 +1,92 @@ +{ + "admin": { + "created": { + "date": "2023-08-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-08-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2003, + "external_ids": [ + { + "all": [ + "0000 0001 2191 6219" + ], + "preferred": "0000 0001 2191 6219", + "type": "isni" + }, + { + "all": [ + "Q51780451" + ], + "preferred": "Q51780451", + "type": "wikidata" + } + ], + "id": "https://ror.org/03kbarg82", + "links": [ + { + "type": "website", + "value": "http://lirdef.edu.umontpellier.fr" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LIRDEF" + } + ], + "relationships": [ + { + "label": "École Nationale Supérieure de Formation de l’Enseignement Agricole", + "type": "parent", + "id": "https://ror.org/03ac68784" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "Université Paul-Valéry Montpellier", + "type": "parent", + "id": "https://ror.org/00qhdy563" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/03kevw840.json b/v1.43/03kevw840.json new file mode 100644 index 000000000..791916bb8 --- /dev/null +++ b/v1.43/03kevw840.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30290690" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.436359.e" + ], + "preferred": "grid.436359.e" + } + ], + "id": "https://ror.org/03kevw840", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.meta4.es/" + } + ], + "names": [ + { + "value": "Meta4 (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03kk7td41.json b/v1.43/03kk7td41.json new file mode 100644 index 000000000..63b4dc330 --- /dev/null +++ b/v1.43/03kk7td41.json @@ -0,0 +1,126 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-06-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1883, + "external_ids": [ + { + "all": [ + "501100008533", + "501100000866" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.5600.3" + ], + "preferred": "grid.5600.3", + "type": "grid" + }, + { + "all": [ + "0000 0001 0807 5670" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1035745" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03kk7td41", + "links": [ + { + "type": "website", + "value": "http://www.cardiff.ac.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Cardiff_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.48, + "lng": -3.18, + "name": "Cardiff" + }, + "geonames_id": 2653822 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Cardiff University" + }, + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Prifysgol Caerdydd" + } + ], + "relationships": [ + { + "label": "Morriston Hospital", + "type": "related", + "id": "https://ror.org/01p830915" + }, + { + "label": "University Hospital of Wales", + "type": "related", + "id": "https://ror.org/04fgpet95" + }, + { + "label": "Whitchurch Hospital", + "type": "related", + "id": "https://ror.org/00xc08717" + }, + { + "label": "GW4 Facility for High-Resolution Electron Cryo-Microscopy", + "type": "related", + "id": "https://ror.org/022p86748" + }, + { + "label": "GW4", + "type": "related", + "id": "https://ror.org/000vekr11" + }, + { + "label": "Wales Centre for Public Policy", + "type": "related", + "id": "https://ror.org/03y0ymy78" + }, + { + "label": "Life Sciences Research Network Wales", + "type": "child", + "id": "https://ror.org/0526zh358" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/03mc19e15.json b/v1.43/03mc19e15.json new file mode 100644 index 000000000..bc5bc944d --- /dev/null +++ b/v1.43/03mc19e15.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1986, + "external_ids": [ + { + "all": [ + "grid.417077.2" + ], + "preferred": "grid.417077.2", + "type": "grid" + }, + { + "all": [ + "0000 0004 0417 1843" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7989433" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03mc19e15", + "links": [ + { + "type": "website", + "value": "http://www.waht.nhs.uk/Childrens-Services/Childrens-Services1/Seashore-Centre-at-Weston-General-Hospital/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Weston_General_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.34603, + "lng": -2.97665, + "name": "Weston-super-Mare" + }, + "geonames_id": 2634308 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Weston General Hospital" + } + ], + "relationships": [ + { + "label": "University Hospitals Bristol and Weston NHS Foundation Trust", + "type": "parent", + "id": "https://ror.org/03jzzxg14" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/03mkjjy25.json b/v1.43/03mkjjy25.json new file mode 100644 index 000000000..7144deca0 --- /dev/null +++ b/v1.43/03mkjjy25.json @@ -0,0 +1,287 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1991, + "external_ids": [ + { + "all": [ + "0000 0001 2323 0229" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100020875" + ], + "preferred": "501100020875", + "type": "fundref" + }, + { + "all": [ + "Q186638" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.12832.3a" + ], + "preferred": "grid.12832.3a", + "type": "grid" + } + ], + "id": "https://ror.org/03mkjjy25", + "links": [ + { + "type": "website", + "value": "https://www.uvsq.fr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Versailles_Saint-Quentin-en-Yvelines_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.80359, + "lng": 2.13424, + "name": "Versailles" + }, + "geonames_id": 2969679 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Université de Versailles Saint-Quentin-en-Yvelines" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Versailles Saint-Quentin-en-Yvelines University" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UVSQ" + } + ], + "relationships": [ + { + "label": "Raymond Poincaré University Hospital", + "type": "related", + "id": "https://ror.org/03pef0w96" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "Centre de Recherches Sociologiques sur le Droit et les Institutions Pénales", + "type": "child", + "id": "https://ror.org/01qm1tk92" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Groupe d’Étude de la Matière Condensée", + "type": "child", + "id": "https://ror.org/01wrng808" + }, + { + "label": "Handicap neuromusculaire : Physiopathologie, Biothérapie et Pharmacologie appliquées", + "type": "child", + "id": "https://ror.org/02nxezb95" + }, + { + "label": "Institut Lavoisier de Versailles", + "type": "child", + "id": "https://ror.org/05mzd8v39" + }, + { + "label": "Laboratoire Printemps", + "type": "child", + "id": "https://ror.org/00mdx2x22" + }, + { + "label": "Laboratoire des Sciences du Climat et de l'Environnement", + "type": "child", + "id": "https://ror.org/03dsd0g48" + }, + { + "label": "Maison de la Simulation", + "type": "child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Laboratoire de Mathématiques de Versailles", + "type": "child", + "id": "https://ror.org/04k5jw363" + }, + { + "label": "Soutenabilité et Résilence", + "type": "child", + "id": "https://ror.org/047rqcm40" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Laboratoire atmosphères, milieux, observations spatiales", + "type": "child", + "id": "https://ror.org/05ppf7q77" + }, + { + "label": "Infection et inflammation", + "type": "child", + "id": "https://ror.org/021sh3243" + }, + { + "label": "Biomarqueurs et essais cliniques en Cancérologie et Onco-Hématologie", + "type": "child", + "id": "https://ror.org/05r0mw364" + }, + { + "label": "Cultures, Environnements, Arctique, Représentations, Climat", + "type": "child", + "id": "https://ror.org/01bt3e159" + }, + { + "label": "Centre d’histoire culturelle des sociétés contemporaines", + "type": "child", + "id": "https://ror.org/0087n5v55" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Laboratoire de Droit des affaires et nouvelles technologies", + "type": "child", + "id": "https://ror.org/04ate5z57" + }, + { + "label": "Données et algorithmes pour une ville intelligente et durable", + "type": "child", + "id": "https://ror.org/01xta2p78" + }, + { + "label": "Dynamiques patrimoniales et culturelles", + "type": "child", + "id": "https://ror.org/00cw4qm30" + }, + { + "label": "Equipe de recherche paramédicale sur le handicap neuromoteur", + "type": "child", + "id": "https://ror.org/023bv6t84" + }, + { + "label": "Institut photonique d'analyse non-destructive européen des matériaux anciens", + "type": "child", + "id": "https://ror.org/04k0drf78" + }, + { + "label": "Institut de recherches arctiques Jean Malaurie", + "type": "child", + "id": "https://ror.org/008hxwy89" + }, + { + "label": "Laboratoire Anthropologie, Archéologie, Biologie", + "type": "child", + "id": "https://ror.org/023b2c435" + }, + { + "label": "Laboratoire de recherche en Management", + "type": "child", + "id": "https://ror.org/00s4fex77" + }, + { + "label": "Laboratoire de génétique et biologie cellulaire", + "type": "child", + "id": "https://ror.org/00edzht24" + }, + { + "label": "Laboratoire interdisciplinaire sur les mutations des espaces économiques et politiques - Paris Saclay", + "type": "child", + "id": "https://ror.org/01jdptv64" + }, + { + "label": "Laboratoire d’informatique Parallélisme Réseaux Algorithmes Distribués", + "type": "child", + "id": "https://ror.org/00qyswv14" + }, + { + "label": "Laboratoire d'Ingénierie des Systèmes de Versailles", + "type": "child", + "id": "https://ror.org/01hcc6p91" + }, + { + "label": "Laboratoire physiopathologie et pharmacologie clinique de la douleur", + "type": "child", + "id": "https://ror.org/02k243t26" + }, + { + "label": "Risques cliniques et sécurité en santé des femmes et en santé périnatale", + "type": "child", + "id": "https://ror.org/01wc6sh26" + }, + { + "label": "Centre de recherche Versailles Saint-Quentin Institutions Publiques", + "type": "child", + "id": "https://ror.org/042j26x71" + }, + { + "label": "Biologie de la Reproduction, Environnement, Epigénétique et Développement", + "type": "child", + "id": "https://ror.org/05mfwtg94" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/03n15ch10.json b/v1.43/03n15ch10.json new file mode 100644 index 000000000..c8c717606 --- /dev/null +++ b/v1.43/03n15ch10.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.457334.2" + ], + "preferred": "grid.457334.2" + } + ], + "id": "https://ror.org/03n15ch10", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www-centre-saclay.cea.fr/fr" + } + ], + "names": [ + { + "value": "CEA Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Direction des énergies", + "type": "parent", + "id": "https://ror.org/03cwzta72" + }, + { + "label": "Laboratoire Interactions, Dynamiques et Lasers", + "type": "child", + "id": "https://ror.org/04dy97z61" + }, + { + "label": "Saclay Nuclear Research Centre", + "type": "child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "Soleil Synchrotron", + "type": "child", + "id": "https://ror.org/01ydb3330" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03n8fv677.json b/v1.43/03n8fv677.json new file mode 100644 index 000000000..81c3679d7 --- /dev/null +++ b/v1.43/03n8fv677.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.491054.d" + ], + "preferred": "grid.491054.d" + } + ], + "id": "https://ror.org/03n8fv677", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pronokal.com" + } + ], + "names": [ + { + "value": "Fundación Pronokal", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03n9ja422.json b/v1.43/03n9ja422.json new file mode 100644 index 000000000..82ecaad26 --- /dev/null +++ b/v1.43/03n9ja422.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2928810, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.45657, + "lng": 7.01228, + "name": "Essen" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1956 7507" + ], + "preferred": "0000 0001 1956 7507" + }, + { + "type": "wikidata", + "all": [ + "Q2175050" + ], + "preferred": "Q2175050" + } + ], + "id": "https://ror.org/03n9ja422", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ruhrmuseum.de" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ruhr_Museum" + } + ], + "names": [ + { + "value": "Ruhr Museum", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ruhrlandmuseum", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03n9mt987.json b/v1.43/03n9mt987.json new file mode 100644 index 000000000..9d7628dde --- /dev/null +++ b/v1.43/03n9mt987.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 4644" + ], + "preferred": "0000 0004 4910 4644" + } + ], + "id": "https://ror.org/03n9mt987", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciusssnordmtl.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré universitaire de santé et de services sociaux du Nord-de-l’Île-de-Montréal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUSSS du Nord-de-l'Île-de-Montréal", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03nr10290.json b/v1.43/03nr10290.json new file mode 100644 index 000000000..4c0bd3c46 --- /dev/null +++ b/v1.43/03nr10290.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 5007804, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.48948, + "lng": -83.14465, + "name": "Royal Oak" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.459348.7" + ], + "preferred": "grid.459348.7" + } + ], + "id": "https://ror.org/03nr10290", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/services/childrens" + } + ], + "names": [ + { + "value": "Corewell Health Children's", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Beaumont Children's", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03p40sz62.json b/v1.43/03p40sz62.json new file mode 100644 index 000000000..c5225acfd --- /dev/null +++ b/v1.43/03p40sz62.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5901 7165" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100008055" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.483886.9" + ], + "preferred": "grid.483886.9" + } + ], + "id": "https://ror.org/03p40sz62", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fundacioneugeniorodriguezpascual.es" + } + ], + "names": [ + { + "value": "Fundación Eugenio Rodríguez Pascual", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03p81rq42.json b/v1.43/03p81rq42.json new file mode 100644 index 000000000..b9f02f03b --- /dev/null +++ b/v1.43/03p81rq42.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 643492, + "geonames_details": { + "country_code": "FI", + "country_name": "Finland", + "lat": 65.01236, + "lng": 25.46816, + "name": "Oulu" + } + } + ], + "established": 2018, + "external_ids": [], + "id": "https://ror.org/03p81rq42", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.filnan.com" + } + ], + "names": [ + { + "value": "The Filipino Nurses Association in the Nordic Region", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Filipino Nurses Association in the Nordic Region", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Pohjoismainen Filippiiniläishoitajien Yhdistys Ry", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FINAN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03pbpa834.json b/v1.43/03pbpa834.json new file mode 100644 index 000000000..33b914bf5 --- /dev/null +++ b/v1.43/03pbpa834.json @@ -0,0 +1,67 @@ +{ + "admin": { + "created": { + "date": "2022-06-16", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-06-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2017, + "external_ids": [], + "id": "https://ror.org/03pbpa834", + "links": [ + { + "type": "website", + "value": "https://www.genturis.eu" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + }, + "geonames_id": 2750053 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "ERN GENTURIS" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "European Reference Network on rare genetic tumour risk syndromes" + } + ], + "relationships": [ + { + "label": "ERN Board of Member States", + "type": "parent", + "id": "https://ror.org/00r7apq26" + }, + { + "label": "Radboud University Medical Center", + "type": "related", + "id": "https://ror.org/05wg1m734" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/03pdbtd82.json b/v1.43/03pdbtd82.json new file mode 100644 index 000000000..fdf50b7df --- /dev/null +++ b/v1.43/03pdbtd82.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2650628, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 54.77676, + "lng": -1.57566, + "name": "Durham" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q4231269" + ], + "preferred": "Q4231269" + }, + { + "type": "fundref", + "all": [ + "501100015066" + ], + "preferred": "501100015066" + } + ], + "id": "https://ror.org/03pdbtd82", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://virgo.dur.ac.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Virgo_Consortium" + } + ], + "names": [ + { + "value": "The Virgo Consortium", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Virgo Consortium", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03prydq77.json b/v1.43/03prydq77.json new file mode 100644 index 000000000..d3b59def8 --- /dev/null +++ b/v1.43/03prydq77.json @@ -0,0 +1,133 @@ +{ + "locations": [ + { + "geonames_id": 2761369, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.20849, + "lng": 16.37208, + "name": "Vienna" + } + } + ], + "established": 1365, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2286 1424" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100003065", + "501100003066" + ], + "preferred": "501100003065" + }, + { + "type": "wikidata", + "all": [ + "Q165980", + "Q1362780" + ], + "preferred": "Q165980" + }, + { + "type": "grid", + "all": [ + "grid.10420.37" + ], + "preferred": "grid.10420.37" + } + ], + "id": "https://ror.org/03prydq77", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.univie.ac.at/en/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Vienna" + } + ], + "names": [ + { + "value": "University of Vienna", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universität Wien", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "Sveučilište u Beču", + "types": [ + "label" + ], + "lang": "hr" + }, + { + "value": "Bécsi Egyetem", + "types": [ + "label" + ], + "lang": "hu" + }, + { + "value": "Univerza na Dunaju", + "types": [ + "label" + ], + "lang": "sl" + } + ], + "relationships": [ + { + "label": "Vienna General Hospital", + "type": "related", + "id": "https://ror.org/05f0zr486" + }, + { + "label": "Christian Doppler Laboratory for Thermoelectricity", + "type": "child", + "id": "https://ror.org/01cbw5x35" + }, + { + "label": "Vienna Center for Quantum Science and Technology", + "type": "child", + "id": "https://ror.org/014cpn338" + }, + { + "label": "Vienna BioCenter Core Facilities", + "type": "child", + "id": "https://ror.org/01w64ht88" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03pvr2g57.json b/v1.43/03pvr2g57.json new file mode 100644 index 000000000..a00127422 --- /dev/null +++ b/v1.43/03pvr2g57.json @@ -0,0 +1,120 @@ +{ + "locations": [ + { + "geonames_id": 2805615, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.79391, + "lng": 9.95121, + "name": "Würzburg" + } + } + ], + "established": 1402, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1378 7891" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1784848" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.411760.5" + ], + "preferred": "grid.411760.5" + } + ], + "id": "https://ror.org/03pvr2g57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ukw.de" + } + ], + "names": [ + { + "value": "Universitätsklinikum Würzburg", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University Hospital Würzburg", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University Hospital of Wuerzburg", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universitaetsklinikum Wuerzburg - Klinikum Der Bayerischen Julius-Maximilians-Universitat", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UKW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Würzburg", + "type": "related", + "id": "https://ror.org/00fbnyb24" + }, + { + "label": "Augenklinik Universitätsklinikum Würzburg", + "type": "child", + "id": "https://ror.org/00rwpbm87" + }, + { + "label": "Comprehensive Cancer Center Mainfranken", + "type": "child", + "id": "https://ror.org/013tmk464" + }, + { + "label": "Universitäts-Kinderklinik Würzburg", + "type": "child", + "id": "https://ror.org/000ph9k36" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03pzxq793.json b/v1.43/03pzxq793.json new file mode 100644 index 000000000..d9b22f120 --- /dev/null +++ b/v1.43/03pzxq793.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 2654675, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9128 4888" + ], + "preferred": "0000 0004 9128 4888" + }, + { + "type": "fundref", + "all": [ + "501100022244" + ], + "preferred": "501100022244" + } + ], + "id": "https://ror.org/03pzxq793", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://arc-w.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Applied Research Collaboration West", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Applied Research Collaboration West", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR ARC West", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03q1qx424.json b/v1.43/03q1qx424.json new file mode 100644 index 000000000..737aa40e6 --- /dev/null +++ b/v1.43/03q1qx424.json @@ -0,0 +1,89 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2011, + "external_ids": [ + { + "all": [ + "Q61933021" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.503158.a" + ], + "preferred": "grid.503158.a", + "type": "grid" + } + ], + "id": "https://ror.org/03q1qx424", + "links": [ + { + "type": "website", + "value": "https://www6.montpellier.inra.fr/dgimi_eng/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Diversity, Genomes and Insects-Microorganisms Interactions" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Diversité, génomes et interactions micro-organismes-insectes" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DGIMI" + } + ], + "relationships": [ + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/03q28x580.json b/v1.43/03q28x580.json new file mode 100644 index 000000000..bf9c18f4e --- /dev/null +++ b/v1.43/03q28x580.json @@ -0,0 +1,74 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1944, + "external_ids": [ + { + "all": [ + "grid.503035.0" + ], + "preferred": "grid.503035.0", + "type": "grid" + }, + { + "all": [ + "Q15243261" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03q28x580", + "links": [ + { + "type": "website", + "value": "https://www.maxiv.lu.se/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/MAX_IV_Laboratory" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "SE", + "country_name": "Sweden", + "lat": 55.70584, + "lng": 13.19321, + "name": "Lund" + }, + "geonames_id": 2693678 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "MAX IV Laboratory" + } + ], + "relationships": [ + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/03q5e6q66.json b/v1.43/03q5e6q66.json new file mode 100644 index 000000000..fecb7412e --- /dev/null +++ b/v1.43/03q5e6q66.json @@ -0,0 +1,62 @@ +{ + "locations": [ + { + "geonames_id": 3171728, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.40797, + "lng": 11.88586, + "name": "Padua" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/03q5e6q66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.fondbiomed.it" + } + ], + "names": [ + { + "value": "Fondazione Ricerca Biomedica Avanzata Onlus - VIMM", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fondazione Ricerca Biomedica Avanzata Onlus", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Veneto Institute of Molecular Medicine Home", + "type": "related", + "id": "https://ror.org/0048jxt15" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03qk53891.json b/v1.43/03qk53891.json new file mode 100644 index 000000000..fae9e3ebd --- /dev/null +++ b/v1.43/03qk53891.json @@ -0,0 +1,117 @@ +{ + "locations": [ + { + "geonames_id": 1805518, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 35.405, + "lng": 116.58139, + "name": "Jining" + } + } + ], + "established": 1976, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7245 6824" + ], + "preferred": "0000 0004 7245 6824" + }, + { + "type": "wikidata", + "all": [ + "Q884019" + ], + "preferred": "Q884019" + } + ], + "id": "https://ror.org/03qk53891", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.yanzhoucoal.com.cn" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Yankuang_Group" + } + ], + "names": [ + { + "value": "Yankuang Energy Group Company Limited (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Yankuang Energy Group Company Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yankuang Energy Group Company", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yankuang Energy Group Company, Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yankuang Energy Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Yankuang Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "兗礦集團有限公司", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "兖矿能源集团股份有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03rd4h240.json b/v1.43/03rd4h240.json new file mode 100644 index 000000000..4d9cad3d7 --- /dev/null +++ b/v1.43/03rd4h240.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100006130", + "100006172", + "100006149" + ], + "preferred": "100006130" + }, + { + "type": "wikidata", + "all": [ + "Q12064662" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.453355.1" + ], + "preferred": "grid.453355.1" + } + ], + "id": "https://ror.org/03rd4h240", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://energy.gov/oe/office-electricity-delivery-and-energy-reliability" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Office_of_Electricity_Delivery_and_Energy_Reliability" + } + ], + "names": [ + { + "value": "Office of Electricity Delivery and Energy Reliability", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "OE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United States Department of Energy", + "type": "parent", + "id": "https://ror.org/01bj3aw27" + }, + { + "label": "Office of Electricity", + "type": "successor", + "id": "https://ror.org/02y6dp041" + } + ], + "status": "withdrawn", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03rnk6m14.json b/v1.43/03rnk6m14.json new file mode 100644 index 000000000..f3904f3a0 --- /dev/null +++ b/v1.43/03rnk6m14.json @@ -0,0 +1,178 @@ +{ + "locations": [ + { + "geonames_id": 2992166, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + } + } + ], + "established": 1842, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2172 5332" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2945808" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434209.8" + ], + "preferred": "grid.434209.8" + } + ], + "id": "https://ror.org/03rnk6m14", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.institut-agro-montpellier.fr" + } + ], + "names": [ + { + "value": "Institut Agro Montpellier", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Montpellier SupAgro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "SupAgro", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Centre international d'études supérieures en sciences agronomiques", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [ + { + "label": "Languedoc-Roussillon Universities", + "type": "parent", + "id": "https://ror.org/04f6hmf16" + }, + { + "label": "Agropolymerpolymer Engineering and Emerging Technologies", + "type": "child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Biochemistry and Plant Molecular Physiology", + "type": "child", + "id": "https://ror.org/05r332y60" + }, + { + "label": "Centre d'Écologie Fonctionnelle et Évolutive", + "type": "child", + "id": "https://ror.org/008rywf59" + }, + { + "label": "Centre de Biologie et de Gestion des Populations", + "type": "child", + "id": "https://ror.org/05h7ddb14" + }, + { + "label": "Diversity, Genomes and Insects-Microorganisms Interactions", + "type": "child", + "id": "https://ror.org/03q1qx424" + }, + { + "label": "Functional Ecology and Biogeochemistry of Soils and Agrosystems", + "type": "child", + "id": "https://ror.org/00b80ez59" + }, + { + "label": "Gestion de l'Eau, Acteurs, Usages", + "type": "child", + "id": "https://ror.org/020g0rw41" + }, + { + "label": "Innovation and Development in Agriculture and Food", + "type": "child", + "id": "https://ror.org/0262br971" + }, + { + "label": "Laboratoire d'Écophysiologie Moléculaire des Plantes sous Stress Environnementaux", + "type": "child", + "id": "https://ror.org/03fte3n86" + }, + { + "label": "Laboratoire des Symbioses Tropicales et Méditerranéennes", + "type": "child", + "id": "https://ror.org/05q94pf14" + }, + { + "label": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "type": "child", + "id": "https://ror.org/011xg1225" + }, + { + "label": "Mathématiques, Informatique et Statistique pour l'Environnement et l'Agronomie", + "type": "child", + "id": "https://ror.org/01pd2sz18" + }, + { + "label": "Sciences pour L’Œnologie", + "type": "child", + "id": "https://ror.org/04w07sc25" + }, + { + "label": "Tropical and Mediterranean Animal Production Systems", + "type": "child", + "id": "https://ror.org/05merjr74" + }, + { + "label": "Tropical and Mediterranean Cropping System Functioning and Management", + "type": "child", + "id": "https://ror.org/033x0mt18" + }, + { + "label": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation", + "type": "child", + "id": "https://ror.org/03kbarg82" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03rtqzj55.json b/v1.43/03rtqzj55.json new file mode 100644 index 000000000..2e5fec25f --- /dev/null +++ b/v1.43/03rtqzj55.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2510911, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 37.38283, + "lng": -5.97317, + "name": "Seville" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.425160.4" + ], + "preferred": "grid.425160.4" + } + ], + "id": "https://ror.org/03rtqzj55", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.inabensa.com/web/en/index.html" + } + ], + "names": [ + { + "value": "Inabensa (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instalaciones Inabensa, S.A.", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03rwgpn18.json b/v1.43/03rwgpn18.json new file mode 100644 index 000000000..4f04b5114 --- /dev/null +++ b/v1.43/03rwgpn18.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1896, + "external_ids": [ + { + "all": [ + "100009217", + "100006465", + "100009218" + ], + "preferred": "100009217", + "type": "fundref" + }, + { + "all": [ + "grid.254280.9" + ], + "preferred": "grid.254280.9", + "type": "grid" + }, + { + "all": [ + "0000 0001 0741 9486" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q931865" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03rwgpn18", + "links": [ + { + "type": "website", + "value": "http://www.clarkson.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Clarkson_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.66978, + "lng": -74.98131, + "name": "Potsdam" + }, + "geonames_id": 5132103 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Clarkson University" + } + ], + "relationships": [ + { + "label": "Union Graduate College", + "type": "child", + "id": "https://ror.org/05p9w4h97" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/03s4khd80.json b/v1.43/03s4khd80.json new file mode 100644 index 000000000..47cfeb3c3 --- /dev/null +++ b/v1.43/03s4khd80.json @@ -0,0 +1,101 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1976, + "external_ids": [ + { + "all": [ + "501100005042", + "501100006587" + ], + "preferred": "501100005042", + "type": "fundref" + }, + { + "all": [ + "grid.48769.34" + ], + "preferred": "grid.48769.34", + "type": "grid" + }, + { + "all": [ + "0000 0004 0461 6320" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2979314" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03s4khd80", + "links": [ + { + "type": "website", + "value": "http://www.saintluc.be/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Cliniques_Universitaires_Saint-Luc" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + }, + "geonames_id": 2800866 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Cliniques Universitaires Saint-Luc" + }, + { + "lang": "nl", + "types": [ + "label" + ], + "value": "Universitair ziekenhuis Sint-Lambrechts-Woluwe" + } + ], + "relationships": [ + { + "label": "UCLouvain", + "type": "related", + "id": "https://ror.org/02495e989" + }, + { + "label": "Fondation Saint-Luc", + "type": "child", + "id": "https://ror.org/021354321" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/03s92mv58.json b/v1.43/03s92mv58.json new file mode 100644 index 000000000..82b52a2e0 --- /dev/null +++ b/v1.43/03s92mv58.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.464121.4" + ], + "preferred": "grid.464121.4" + } + ], + "id": "https://ror.org/03s92mv58", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://geops.geol.u-psud.fr/" + } + ], + "names": [ + { + "value": "Geosciences Paris Sud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "GEOPS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut National des Sciences de l'Univers", + "type": "parent", + "id": "https://ror.org/04kdfz702" + }, + { + "label": "University of Paris-Sud", + "type": "parent", + "id": "https://ror.org/028rypz17" + } + ], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03sdv7269.json b/v1.43/03sdv7269.json new file mode 100644 index 000000000..2c6cef076 --- /dev/null +++ b/v1.43/03sdv7269.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2640729, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.75222, + "lng": -1.25596, + "name": "Oxford" + } + } + ], + "established": 2018, + "external_ids": [], + "id": "https://ror.org/03sdv7269", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://pqshield.com" + } + ], + "names": [ + { + "value": "PQShield (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PQShield", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PQShield, SAS", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PQShield, Inc.", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03sv46s19.json b/v1.43/03sv46s19.json new file mode 100644 index 000000000..7b8d31a0e --- /dev/null +++ b/v1.43/03sv46s19.json @@ -0,0 +1,93 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100010198" + ], + "preferred": "501100010198" + }, + { + "type": "wikidata", + "all": [ + "Q81886673" + ], + "preferred": "Q81886673" + } + ], + "id": "https://ror.org/03sv46s19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://portal.mineco.gob.es" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Ministerio_de_Asuntos_Econ%C3%B3micos_y_Transformaci%C3%B3n_Digital" + } + ], + "names": [ + { + "value": "Ministerio de Asuntos Económicos y Transformación Digital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Economic Affairs and Digital Transformation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "MINECO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ministry of Economy, Industry and Competitiveness", + "type": "predecessor", + "id": "https://ror.org/034900433" + }, + { + "label": "Ministerio para la Transformación Digital y de la Función Pública", + "type": "successor", + "id": "https://ror.org/01qh08519" + } + ], + "status": "inactive", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03sypqe31.json b/v1.43/03sypqe31.json new file mode 100644 index 000000000..05baa3b23 --- /dev/null +++ b/v1.43/03sypqe31.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 495X" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.464173.3" + ], + "preferred": "grid.464173.3" + } + ], + "id": "https://ror.org/03sypqe31", + "domains": [], + "links": [], + "names": [ + { + "value": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SMPSD", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Atomic Energy and Alternative Energies Commission", + "type": "parent", + "id": "https://ror.org/00jjx8s55" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03t61s708.json b/v1.43/03t61s708.json new file mode 100644 index 000000000..d00fb0d3f --- /dev/null +++ b/v1.43/03t61s708.json @@ -0,0 +1,108 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1707, + "external_ids": [ + { + "all": [ + "grid.451251.6" + ], + "preferred": "grid.451251.6", + "type": "grid" + }, + { + "all": [ + "0000 0001 2181 0086" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q11010", + "Q11007" + ], + "preferred": "Q11010", + "type": "wikidata" + } + ], + "id": "https://ror.org/03t61s708", + "links": [ + { + "type": "website", + "value": "http://www.parliament.uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Parliament_of_the_United_Kingdom" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "British Parliament" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Parliament of United Kingdom" + }, + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Tŷ'r Arglwyddi" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "UK Parliament" + } + ], + "relationships": [ + { + "label": "Parliamentary Office of Science and Technology", + "type": "child", + "id": "https://ror.org/02pvnr704" + }, + { + "label": "Scottish Home and Health Department", + "type": "child", + "id": "https://ror.org/043xqa828" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/03tdnf746.json b/v1.43/03tdnf746.json new file mode 100644 index 000000000..9ebd2db55 --- /dev/null +++ b/v1.43/03tdnf746.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3117164, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.54211, + "lng": 2.4445, + "name": "Mataró" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q5065642" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.424852.d" + ], + "preferred": "grid.424852.d" + } + ], + "id": "https://ror.org/03tdnf746", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cetemmsa.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Cetemmsa" + } + ], + "names": [ + { + "value": "CETEMMSA Technological Centre (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fundación Privada CETEMMSA", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03thdsj80.json b/v1.43/03thdsj80.json new file mode 100644 index 000000000..2b3d04888 --- /dev/null +++ b/v1.43/03thdsj80.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2641689, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.40148, + "lng": -1.32471, + "name": "Newbury" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q99440281" + ], + "preferred": "Q99440281" + }, + { + "type": "fundref", + "all": [ + "100008058" + ], + "preferred": "100008058" + } + ], + "id": "https://ror.org/03thdsj80", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vodafone.com/vodafone-foundation" + } + ], + "names": [ + { + "value": "Vodafone Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Vodafone (United Kingdom)", + "type": "parent", + "id": "https://ror.org/01v7jrq42" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03tj80n37.json b/v1.43/03tj80n37.json new file mode 100644 index 000000000..d5ddc9e6d --- /dev/null +++ b/v1.43/03tj80n37.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1894, + "external_ids": [ + { + "all": [ + "grid.420452.5" + ], + "preferred": "grid.420452.5", + "type": "grid" + }, + { + "all": [ + "0000 0001 2108 2015" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1538540" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03tj80n37", + "links": [ + { + "type": "website", + "value": "https://www.goshen.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Goshen_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.58227, + "lng": -85.83444, + "name": "Goshen" + }, + "geonames_id": 4920808 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Elkhart Institute of Science, Industry and the Arts" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Goshen College" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/03tkwyq76.json b/v1.43/03tkwyq76.json new file mode 100644 index 000000000..4239dd7c6 --- /dev/null +++ b/v1.43/03tkwyq76.json @@ -0,0 +1,79 @@ +{ + "admin": { + "created": { + "date": "2023-07-06", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-06", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2013, + "external_ids": [], + "id": "https://ror.org/03tkwyq76", + "links": [ + { + "type": "website", + "value": "https://www.ru.nl/felix/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + }, + "geonames_id": 2750053 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "FELIX" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "FELIX Laboratory" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Free Electron Lasers for Infrared eXperiments" + } + ], + "relationships": [ + { + "label": "Radboud University Nijmegen", + "type": "parent", + "id": "https://ror.org/016xsfp80" + }, + { + "label": "Dutch Research Council", + "type": "parent", + "id": "https://ror.org/04jsz6e67" + }, + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/03tmzq288.json b/v1.43/03tmzq288.json new file mode 100644 index 000000000..349f837ca --- /dev/null +++ b/v1.43/03tmzq288.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2644210, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.41058, + "lng": -2.97794, + "name": "Liverpool" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100015509" + ], + "preferred": "501100015509" + } + ], + "id": "https://ror.org/03tmzq288", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://arc-nwc.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Collaboration for Leadership in Applied Health Research and Care North West Coast", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care North West Coast", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR CLAHRC NWC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03tscbz39.json b/v1.43/03tscbz39.json new file mode 100644 index 000000000..2104253a5 --- /dev/null +++ b/v1.43/03tscbz39.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 2973783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + } + } + ], + "established": 2007, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100009120" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423766.2" + ], + "preferred": "grid.423766.2" + }, + { + "type": "wikidata", + "all": [ + "Q30284524" + ], + "preferred": "Q30284524" + } + ], + "id": "https://ror.org/03tscbz39", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fondation-lehn.fr" + } + ], + "names": [ + { + "value": "Fondation Jean-Marie Lehn", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "International Center for Frontier Research in Chemistry", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Jean-Marie Lehn Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Centre international de recherche aux frontières de la chimie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Strasbourg Center for Frontier Research in Chemistry", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Le Centre International de Recherche aux Frontières de la Chimie", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "ICRFC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03tsg3y65.json b/v1.43/03tsg3y65.json new file mode 100644 index 000000000..55e266781 --- /dev/null +++ b/v1.43/03tsg3y65.json @@ -0,0 +1,107 @@ +{ + "locations": [ + { + "geonames_id": 2644688, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.79648, + "lng": -1.54785, + "name": "Leeds" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9439 5292" + ], + "preferred": "0000 0004 9439 5292" + }, + { + "type": "wikidata", + "all": [ + "Q5062378" + ], + "preferred": "Q5062378" + }, + { + "type": "fundref", + "all": [ + "100012730" + ], + "preferred": "100012730" + } + ], + "id": "https://ror.org/03tsg3y65", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cccep.ac.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Centre_for_Climate_Change_Economics_and_Policy" + } + ], + "names": [ + { + "value": "Centre for Climate Change Economics and Policy", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ESRC Centre for Climate Change Economics and Policy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Economic and Social Research Council Centre for Climate Change Economics and Policy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CCCEP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Leeds", + "type": "parent", + "id": "https://ror.org/024mrxd33" + }, + { + "label": "London School of Economics and Political Science", + "type": "parent", + "id": "https://ror.org/0090zs177" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03v2nbx43.json b/v1.43/03v2nbx43.json new file mode 100644 index 000000000..37d43e6d5 --- /dev/null +++ b/v1.43/03v2nbx43.json @@ -0,0 +1,102 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1893, + "external_ids": [ + { + "all": [ + "501100003770" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.466503.2" + ], + "preferred": "grid.466503.2", + "type": "grid" + }, + { + "all": [ + "0000 0001 2296 4343" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q806176" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03v2nbx43", + "links": [ + { + "type": "website", + "value": "http://www.bancaditalia.it/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Banca_d%27Italia" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 41.89193, + "lng": 12.51133, + "name": "Rome" + }, + "geonames_id": 3169070 + } + ], + "names": [ + { + "lang": "it", + "types": [ + "label" + ], + "value": "Banca d'Italia" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bank of Italy" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bankitalia" + } + ], + "relationships": [ + { + "label": "Einaudi Institute for Economics and Finance", + "type": "related", + "id": "https://ror.org/04e874t64" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/v1.43/03v9efr22.json b/v1.43/03v9efr22.json new file mode 100644 index 000000000..df9737b98 --- /dev/null +++ b/v1.43/03v9efr22.json @@ -0,0 +1,93 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-02-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2007, + "external_ids": [ + { + "all": [ + "501100015686" + ], + "preferred": "501100015686", + "type": "fundref" + }, + { + "all": [ + "grid.412917.8" + ], + "preferred": "grid.412917.8", + "type": "grid" + }, + { + "all": [ + "0000 0004 0430 9259" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/03v9efr22", + "links": [ + { + "type": "website", + "value": "http://www.christie.nhs.uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Christie_NHS_Foundation_Trust" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.48095, + "lng": -2.23743, + "name": "Manchester" + }, + "geonames_id": 2643123 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Christie Hospital NHS Foundation Trust" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "The Christie NHS Foundation Trust" + } + ], + "relationships": [ + { + "label": "The Christie Hospital", + "type": "child", + "id": "https://ror.org/03nd63441" + }, + { + "label": "Cancer Research UK Manchester Centre", + "type": "child", + "id": "https://ror.org/033svsm10" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/03vam5b06.json b/v1.43/03vam5b06.json new file mode 100644 index 000000000..d49e418a1 --- /dev/null +++ b/v1.43/03vam5b06.json @@ -0,0 +1,116 @@ +{ + "locations": [ + { + "geonames_id": 3029276, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.79632, + "lng": 2.33661, + "name": "Cachan" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0370 4273" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30262402" + ], + "preferred": "Q30262402" + }, + { + "type": "grid", + "all": [ + "grid.464043.1" + ], + "preferred": "grid.464043.1" + } + ], + "id": "https://ror.org/03vam5b06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://satie.ens-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory of Systems and Applications of Information and Energy Technologies", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "SATIE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "CY Cergy Paris University", + "type": "parent", + "id": "https://ror.org/043htjv09" + }, + { + "label": "Conservatoire National des Arts et Métiers", + "type": "parent", + "id": "https://ror.org/0175hh227" + }, + { + "label": "Université Gustave Eiffel", + "type": "parent", + "id": "https://ror.org/03x42jk29" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "parent", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03vek6s52.json b/v1.43/03vek6s52.json new file mode 100644 index 000000000..fa4d5aa6e --- /dev/null +++ b/v1.43/03vek6s52.json @@ -0,0 +1,329 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1636, + "external_ids": [ + { + "all": [ + "100007229", + "100010520", + "100009802", + "100009868", + "100008548", + "100008549", + "100005724", + "100005578", + "100009116", + "100008036", + "100009345", + "100005668", + "100010952", + "100008024", + "100005487", + "100005473", + "100005293", + "100006075", + "100005915", + "100005469", + "100005650", + "100005678", + "100005692", + "100005802", + "100005856", + "100005893", + "100005941", + "100006007", + "100006011", + "100006274", + "100007230", + "100007300", + "100007887", + "100008263", + "100005574", + "100007299", + "100006691", + "100007301", + "100019552" + ], + "preferred": "100007229", + "type": "fundref" + }, + { + "all": [ + "grid.38142.3c" + ], + "preferred": "grid.38142.3c", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 754X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q13371", + "Q5676556" + ], + "preferred": "Q13371", + "type": "wikidata" + } + ], + "id": "https://ror.org/03vek6s52", + "links": [ + { + "type": "website", + "value": "http://www.harvard.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Harvard_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.3751, + "lng": -71.10561, + "name": "Cambridge" + }, + "geonames_id": 4931972 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Harvard University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de Harvard" + } + ], + "relationships": [ + { + "label": "Athinoula A. Martinos Center for Biomedical Imaging", + "type": "child", + "id": "https://ror.org/032q5ym94" + }, + { + "label": "Berenson Allen Center for Noninvasive Brain Stimulation", + "type": "child", + "id": "https://ror.org/03hj6c016" + }, + { + "label": "Center for Astrophysics Harvard & Smithsonian", + "type": "child", + "id": "https://ror.org/03c3r2d17" + }, + { + "label": "Center for Systems Biology", + "type": "child", + "id": "https://ror.org/05r3dyn47" + }, + { + "label": "Center for Vascular Biology Research", + "type": "child", + "id": "https://ror.org/04wsv7966" + }, + { + "label": "Gordon Center for Medical Imaging", + "type": "child", + "id": "https://ror.org/004y4rj95" + }, + { + "label": "Harvard Stem Cell Institute", + "type": "child", + "id": "https://ror.org/04kj1hn59" + }, + { + "label": "Harvard University Press", + "type": "child", + "id": "https://ror.org/006v7bf86" + }, + { + "label": "MIT-Harvard Center for Ultracold Atoms", + "type": "child", + "id": "https://ror.org/053tmcn30" + }, + { + "label": "Ragon Institute of MGH, MIT and Harvard", + "type": "child", + "id": "https://ror.org/053r20n13" + }, + { + "label": "Sleep and Human Health Institute", + "type": "child", + "id": "https://ror.org/04r5ess67" + }, + { + "label": "The NSF AI Institute for Artificial Intelligence and Fundamental Interactions", + "type": "child", + "id": "https://ror.org/04pvzz946" + }, + { + "label": "Arnold Arboretum", + "type": "child", + "id": "https://ror.org/05xsxgs79" + }, + { + "label": "Harvard Forest Long Term Ecological Research", + "type": "child", + "id": "https://ror.org/059cpzx98" + }, + { + "label": "Wyss Institute for Biologically Inspired Engineering", + "type": "child", + "id": "https://ror.org/008cfmj78" + }, + { + "label": "Dana-Farber/Harvard Cancer Center", + "type": "child", + "id": "https://ror.org/03pvyf116" + }, + { + "label": "Beth Israel Deaconess Medical Center", + "type": "related", + "id": "https://ror.org/04drvxt59" + }, + { + "label": "Boston Children's Hospital", + "type": "related", + "id": "https://ror.org/00dvg7y05" + }, + { + "label": "Boston IVF", + "type": "related", + "id": "https://ror.org/05xckek43" + }, + { + "label": "Botswana Harvard AIDS Institute Partnership", + "type": "related", + "id": "https://ror.org/04rkbns44" + }, + { + "label": "Brigham and Women's Faulkner Hospital", + "type": "related", + "id": "https://ror.org/03w44ff23" + }, + { + "label": "Brigham and Women's Hospital", + "type": "related", + "id": "https://ror.org/04b6nzv94" + }, + { + "label": "Broad Institute", + "type": "related", + "id": "https://ror.org/05a0ya142" + }, + { + "label": "Cambridge Health Alliance", + "type": "related", + "id": "https://ror.org/059c3mv67" + }, + { + "label": "Dana-Farber Cancer Institute", + "type": "related", + "id": "https://ror.org/02jzgtq86" + }, + { + "label": "Harvard Pilgrim Health Care", + "type": "related", + "id": "https://ror.org/01zxdeg39" + }, + { + "label": "Harvard–MIT Division of Health Sciences and Technology", + "type": "related", + "id": "https://ror.org/00jjeh629" + }, + { + "label": "Hebrew SeniorLife", + "type": "related", + "id": "https://ror.org/02vptss42" + }, + { + "label": "IIT@Harvard", + "type": "related", + "id": "https://ror.org/044hpwe09" + }, + { + "label": "Joslin Diabetes Center", + "type": "related", + "id": "https://ror.org/0280a3n32" + }, + { + "label": "Judge Baker Children's Center", + "type": "related", + "id": "https://ror.org/05tby3y60" + }, + { + "label": "Lahey Hospital and Medical Center", + "type": "related", + "id": "https://ror.org/03mbq3y29" + }, + { + "label": "Massachusetts Eye and Ear Infirmary", + "type": "related", + "id": "https://ror.org/04g3dn724" + }, + { + "label": "Massachusetts General Hospital", + "type": "related", + "id": "https://ror.org/002pd6e78" + }, + { + "label": "Massachusetts Green High Performance Computing Center", + "type": "related", + "id": "https://ror.org/05par7p11" + }, + { + "label": "McLean Hospital", + "type": "related", + "id": "https://ror.org/01kta7d96" + }, + { + "label": "Newton Wellesley Hospital", + "type": "related", + "id": "https://ror.org/03hrxmf69" + }, + { + "label": "Somerville Hospital", + "type": "related", + "id": "https://ror.org/023pf5e38" + }, + { + "label": "Spaulding Rehabilitation Hospital", + "type": "related", + "id": "https://ror.org/011dvr318" + }, + { + "label": "Real Colegio Complutense", + "type": "child", + "id": "https://ror.org/05b0g2v72" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/03vgcjv39.json b/v1.43/03vgcjv39.json new file mode 100644 index 000000000..f97845015 --- /dev/null +++ b/v1.43/03vgcjv39.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/03vgcjv39", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://conhecimentoinovacao.iscte-iul.pt" + } + ], + "names": [ + { + "value": "Iscte-Conhecimento e Inovação é um Centro de Valorização e Transferência de Tecnologias", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Iscte Conhecimento E Inovacao - Centro De Valorizacao E Transferencia De Tecnologias", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03x3g5467.json b/v1.43/03x3g5467.json new file mode 100644 index 000000000..b2515271c --- /dev/null +++ b/v1.43/03x3g5467.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 4407066, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.62727, + "lng": -90.19789, + "name": "St Louis" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100013395" + ], + "preferred": "100013395" + } + ], + "id": "https://ror.org/03x3g5467", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://taylorfamilyinstitute.wustl.edu" + } + ], + "names": [ + { + "value": "Taylor Family Institute for Innovative Psychiatric Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Taylor Family Institute for Innovative Psychiatric Research at Washington University School of Medicine in St. Louis", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Washington University in St. Louis", + "type": "parent", + "id": "https://ror.org/01yc7t268" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03x42jk29.json b/v1.43/03x42jk29.json new file mode 100644 index 000000000..f46e8d997 --- /dev/null +++ b/v1.43/03x42jk29.json @@ -0,0 +1,223 @@ +{ + "admin": { + "created": { + "date": "2020-12-21", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2020, + "external_ids": [ + { + "all": [ + "501100023359" + ], + "preferred": "501100023359", + "type": "fundref" + }, + { + "all": [ + "Q65153823" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.509737.f" + ], + "preferred": "grid.509737.f", + "type": "grid" + } + ], + "id": "https://ror.org/03x42jk29", + "links": [ + { + "type": "website", + "value": "https://www.univ-gustave-eiffel.fr/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Gustave_Eiffel_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85, + "lng": 2.6, + "name": "Champs-sur-Marne" + }, + "geonames_id": 3027014 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Université Gustave Eiffel" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Gustave Eiffel University" + } + ], + "relationships": [ + { + "label": "Biomechanics and Impact Mechanics Laboratory", + "type": "child", + "id": "https://ror.org/02awy7178" + }, + { + "label": "Fédération de Recherche FCLAB", + "type": "child", + "id": "https://ror.org/01kvxx237" + }, + { + "label": "Institut des Sciences de la Terre", + "type": "child", + "id": "https://ror.org/01cf2sz15" + }, + { + "label": "Laboratoire Modélisation et Simulation Multi-Echelle", + "type": "child", + "id": "https://ror.org/04rrzfd14" + }, + { + "label": "Laboratoire Navier", + "type": "child", + "id": "https://ror.org/029hkd614" + }, + { + "label": "Laboratoire Ville Mobilité Transport", + "type": "child", + "id": "https://ror.org/056vbnz12" + }, + { + "label": "Laboratoire d'Informatique Gaspard-Monge", + "type": "child", + "id": "https://ror.org/04t50yk91" + }, + { + "label": "Laboratoire d'Ingénierie Circulation Transports", + "type": "child", + "id": "https://ror.org/02ahzca76" + }, + { + "label": "Laboratoire d'Urbanisme", + "type": "child", + "id": "https://ror.org/017x69387" + }, + { + "label": "Laboratoire d’Analyse et de Mathématiques Appliquées", + "type": "child", + "id": "https://ror.org/0581g8849" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Équipe de Recherche sur l’Utilisation des Données Individuelles en Lien avec la Théorie Économique", + "type": "child", + "id": "https://ror.org/047egvh76" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "related", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "Dispositifs d'information et de communication à l'ère du numérique - Paris Ile-de-france", + "type": "child", + "id": "https://ror.org/05wrsh961" + }, + { + "label": "Institut de Recherche en Gestion", + "type": "child", + "id": "https://ror.org/0546daj73" + }, + { + "label": "Laboratoire d'électronique, systèmes de communication et microsystèmes", + "type": "child", + "id": "https://ror.org/01m83bk32" + }, + { + "label": "Unité Mixte de Recherche Epidémiologique et de Surveillance Transport Travail Environnement", + "type": "child", + "id": "https://ror.org/03vmza063" + }, + { + "label": "Laboratoire Interdisciplinaire d'étude du Politique Hannah Arendt", + "type": "child", + "id": "https://ror.org/03zffa955" + }, + { + "label": "Laboratoire Interdisciplinaire Sciences, Innovations, Sociétés", + "type": "child", + "id": "https://ror.org/007yrhe07" + }, + { + "label": "Unité Mixte de Recherche en Acoustique Environnementale", + "type": "child", + "id": "https://ror.org/00tjzq647" + }, + { + "label": "Laboratoire de Psychologie et d’Ergonomie Appliquées", + "type": "child", + "id": "https://ror.org/0572pak88" + }, + { + "label": "ESIEE Paris", + "type": "child", + "id": "https://ror.org/04x383a88" + }, + { + "label": "Laboratoire Instrumentation, Simulation et Informatique Scientifique", + "type": "child", + "id": "https://ror.org/01q2bn656" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Ecole Nationale des Sciences Géographiques", + "type": "child", + "id": "https://ror.org/03r3n3715" + }, + { + "label": "Laboratoire Techniques, Territoires et Sociétés", + "type": "child", + "id": "https://ror.org/05fc1hn07" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/03x4pp342.json b/v1.43/03x4pp342.json new file mode 100644 index 000000000..e4f6630d2 --- /dev/null +++ b/v1.43/03x4pp342.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 4990510, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.32226, + "lng": -83.17631, + "name": "Dearborn" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0394 7232" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.416675.7" + ], + "preferred": "grid.416675.7" + } + ], + "id": "https://ror.org/03x4pp342", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/locations/beaumont-hospital-dearborn" + } + ], + "names": [ + { + "value": "Beaumont Hospital, Dearborn", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Beaumont Hospital", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Oakwood Hospital - Dearborn", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03x94j517.json b/v1.43/03x94j517.json new file mode 100644 index 000000000..77cb6fc54 --- /dev/null +++ b/v1.43/03x94j517.json @@ -0,0 +1,290 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1913, + "external_ids": [ + { + "all": [ + "501100000265" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.14105.31" + ], + "preferred": "grid.14105.31", + "type": "grid" + }, + { + "all": [ + "0000 0001 2247 8951" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q746879" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03x94j517", + "links": [ + { + "type": "website", + "value": "https://www.ukri.org/councils/mrc/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Medical_Research_Council_%28United_Kingdom%29" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MRC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Medical Research Council" + } + ], + "relationships": [ + { + "label": "CRUK/MRC Oxford Institute for Radiation Oncology", + "type": "child", + "id": "https://ror.org/011hz4254" + }, + { + "label": "Centre for Inflammation Research", + "type": "child", + "id": "https://ror.org/05wcr1b38" + }, + { + "label": "Dementias Platform UK", + "type": "child", + "id": "https://ror.org/05p21nq18" + }, + { + "label": "Hutchison/MRC Research Centre", + "type": "child", + "id": "https://ror.org/01ajt3179" + }, + { + "label": "MRC Biostatistics Unit", + "type": "child", + "id": "https://ror.org/046vje122" + }, + { + "label": "MRC Brain Network Dynamics Unit", + "type": "child", + "id": "https://ror.org/01tfjyv98" + }, + { + "label": "MRC Cancer Unit", + "type": "child", + "id": "https://ror.org/015nth639" + }, + { + "label": "MRC Centre for Regenerative Medicine", + "type": "child", + "id": "https://ror.org/01x802g65" + }, + { + "label": "MRC Centre for Reproductive Health", + "type": "child", + "id": "https://ror.org/02f4tsf92" + }, + { + "label": "MRC Clinical Trials Unit at UCL", + "type": "child", + "id": "https://ror.org/001mm6w73" + }, + { + "label": "MRC Cognition and Brain Sciences Unit", + "type": "child", + "id": "https://ror.org/055bpw879" + }, + { + "label": "MRC Epidemiology Unit", + "type": "child", + "id": "https://ror.org/052578691" + }, + { + "label": "MRC Harwell Institute", + "type": "child", + "id": "https://ror.org/0001h1y25" + }, + { + "label": "MRC Human Immunology Unit", + "type": "child", + "id": "https://ror.org/02kcpr174" + }, + { + "label": "MRC Human Nutrition Research", + "type": "child", + "id": "https://ror.org/050pqs331" + }, + { + "label": "MRC Institute of Genetics and Molecular Medicine", + "type": "child", + "id": "https://ror.org/05hygey35" + }, + { + "label": "MRC Institute of Hearing Research", + "type": "child", + "id": "https://ror.org/04gycm791" + }, + { + "label": "MRC Laboratory for Molecular Cell Biology", + "type": "child", + "id": "https://ror.org/00fv61j67" + }, + { + "label": "MRC Laboratory of Molecular Biology", + "type": "child", + "id": "https://ror.org/00tw3jy02" + }, + { + "label": "MRC Lifecourse Epidemiology Unit", + "type": "child", + "id": "https://ror.org/04j4a6x59" + }, + { + "label": "MRC Mitochondrial Biology Unit", + "type": "child", + "id": "https://ror.org/01vdt8f48" + }, + { + "label": "MRC Prion Unit", + "type": "child", + "id": "https://ror.org/043j90n04" + }, + { + "label": "MRC Protein Phosphorylation and Ubiquitylation Unit", + "type": "child", + "id": "https://ror.org/01zg1tt02" + }, + { + "label": "MRC Toxicology Unit", + "type": "child", + "id": "https://ror.org/05362x394" + }, + { + "label": "MRC Unit for Lifelong Health and Ageing", + "type": "child", + "id": "https://ror.org/03kpvby98" + }, + { + "label": "MRC Unit the Gambia", + "type": "child", + "id": "https://ror.org/025wfj672" + }, + { + "label": "MRC University of Glasgow Centre for Virus Research", + "type": "child", + "id": "https://ror.org/03vaer060" + }, + { + "label": "MRC Weatherall Institute of Molecular Medicine", + "type": "child", + "id": "https://ror.org/01q496a73" + }, + { + "label": "MRC/CSO Social and Public Health Sciences Unit", + "type": "child", + "id": "https://ror.org/02v3sdn51" + }, + { + "label": "Scottish Collaboration for Public Health Research and Policy", + "type": "child", + "id": "https://ror.org/05x7p8987" + }, + { + "label": "Wellcome/MRC Cambridge Stem Cell Institute", + "type": "child", + "id": "https://ror.org/05nz0zp31" + }, + { + "label": "Wellcome/MRC Institute of Metabolic Science", + "type": "child", + "id": "https://ror.org/0264dxb48" + }, + { + "label": "MRC Human Genetics Unit", + "type": "child", + "id": "https://ror.org/011jsc803" + }, + { + "label": "MRC Integrative Epidemiology Unit", + "type": "child", + "id": "https://ror.org/030qtrs05" + }, + { + "label": "MRC Population Health Research Unit", + "type": "child", + "id": "https://ror.org/01p4s0142" + }, + { + "label": "MRC Molecular Haematology Unit", + "type": "child", + "id": "https://ror.org/02khxwt12" + }, + { + "label": "MRC Centre for Medical Mycology", + "type": "child", + "id": "https://ror.org/00vbzva31" + }, + { + "label": "MRC Metabolic Diseases Unit", + "type": "child", + "id": "https://ror.org/037a8w620" + }, + { + "label": "UK Research and Innovation", + "type": "parent", + "id": "https://ror.org/001aqnf71" + }, + { + "label": "MRC Centre for Environment and Health", + "type": "child", + "id": "https://ror.org/01vw4c203" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/03xjwb503.json b/v1.43/03xjwb503.json new file mode 100644 index 000000000..a7f6eb063 --- /dev/null +++ b/v1.43/03xjwb503.json @@ -0,0 +1,569 @@ +{ + "locations": [ + { + "geonames_id": 3016078, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.68333, + "lng": 2.13333, + "name": "Gif-sur-Yvette" + } + } + ], + "established": 2015, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 6535" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100007241" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q109409389" + ], + "preferred": "Q109409389" + }, + { + "type": "grid", + "all": [ + "grid.460789.4" + ], + "preferred": "grid.460789.4" + } + ], + "id": "https://ror.org/03xjwb503", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.universite-paris-saclay.fr/fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Paris-Saclay" + } + ], + "names": [ + { + "value": "University of Paris-Saclay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Université Paris-Saclay", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "Universitat París-Saclay", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Paris-Saclayko Unibertsitatea", + "types": [ + "label" + ], + "lang": "eu" + } + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "child", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "Biologie de la Reproduction, Environnement, Epigénétique et Développement", + "type": "child", + "id": "https://ror.org/05mfwtg94" + }, + { + "label": "CentraleSupélec", + "type": "child", + "id": "https://ror.org/019tcpt25" + }, + { + "label": "Centre for Nanoscience and Nanotechnology", + "type": "child", + "id": "https://ror.org/00zay3w86" + }, + { + "label": "Computer Science, Integrative Biology and Complex Systems", + "type": "child", + "id": "https://ror.org/01aqxgr98" + }, + { + "label": "Hautes Études Commerciales de Paris", + "type": "child", + "id": "https://ror.org/0423jsj19" + }, + { + "label": "Hemostase Inflammation Thrombosis", + "type": "child", + "id": "https://ror.org/03ka94606" + }, + { + "label": "Institut des Cellules Souches pour le Traitement et l'Étude des Maladies Monogéniques", + "type": "child", + "id": "https://ror.org/04g9rt435" + }, + { + "label": "Institut d’Optique Graduate School", + "type": "child", + "id": "https://ror.org/00d0rke27" + }, + { + "label": "Laboratoire Génie Industriel", + "type": "child", + "id": "https://ror.org/0455wwj08" + }, + { + "label": "Laboratoire de Physique des 2 Infinis Irène Joliot-Curie", + "type": "child", + "id": "https://ror.org/03gc1p724" + }, + { + "label": "Laboratoire de Physique des Gaz et des Plasmas", + "type": "child", + "id": "https://ror.org/04bgjpg77" + }, + { + "label": "Laboratory of Quantum and Molecular Photonics", + "type": "child", + "id": "https://ror.org/01bn5c048" + }, + { + "label": "Laboratoire Interactions, Dynamiques et Lasers", + "type": "child", + "id": "https://ror.org/04dy97z61" + }, + { + "label": "Leprince-Ringuet Laboratory", + "type": "child", + "id": "https://ror.org/058t6p923" + }, + { + "label": "Saclay Nuclear Research Centre", + "type": "child", + "id": "https://ror.org/01fv25t22" + }, + { + "label": "University of Évry Val d'Essonne", + "type": "child", + "id": "https://ror.org/00e96v939" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "child", + "id": "https://ror.org/03mkjjy25" + }, + { + "label": "École Nationale de la Statistique et de l'Administration Économique", + "type": "child", + "id": "https://ror.org/01fz7mn40" + }, + { + "label": "École Normale Supérieure Paris-Saclay", + "type": "child", + "id": "https://ror.org/00hx6zz33" + }, + { + "label": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "type": "child", + "id": "https://ror.org/0050cbz19" + }, + { + "label": "Laboratoire Universitaire de Recherche en Production Automatisée", + "type": "child", + "id": "https://ror.org/05wjc8a85" + }, + { + "label": "SADAPT Science Action Développement - Activités Produits Territoires", + "type": "child", + "id": "https://ror.org/01cmdgj85" + }, + { + "label": "Laboratoire Structures, Propriétés et Modélisation des Solides", + "type": "child", + "id": "https://ror.org/01t05f005" + }, + { + "label": "Bibliothèque Jacques Hadamard", + "type": "child", + "id": "https://ror.org/04g0ktq11" + }, + { + "label": "Mathématiques et Informatique pour la Complexité et les Systèmes", + "type": "child", + "id": "https://ror.org/03q29s414" + }, + { + "label": "Physiologie et Physiopathlogie Endocriniennes", + "type": "child", + "id": "https://ror.org/05kz79f96" + }, + { + "label": "Immunologie intégrative des tumeurs et immunothérapie du cancer", + "type": "child", + "id": "https://ror.org/0266c5p67" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "child", + "id": "https://ror.org/048qk7477" + }, + { + "label": "Prédicteurs moléculaires et nouvelles cibles en oncologie", + "type": "child", + "id": "https://ror.org/01earvv39" + }, + { + "label": "Mathématiques et Informatique Appliquées", + "type": "child", + "id": "https://ror.org/00780az30" + }, + { + "label": "Radiothérapie Moléculaire et Innovation Thérapeutique", + "type": "child", + "id": "https://ror.org/00jp5dw81" + }, + { + "label": "Physiopathogénèse et Traitement des Maladies du Foie", + "type": "child", + "id": "https://ror.org/01zrk7293" + }, + { + "label": "Contrôle transcriptionnel et épigénétique de l’hématopoïèse maligne", + "type": "child", + "id": "https://ror.org/00p73bw06" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Le Laboratoire des Maladies Neurodégénératives", + "type": "child", + "id": "https://ror.org/00az7j379" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "Laboratoire de Biologie de l'Exercice pour la Performance et la Santé", + "type": "child", + "id": "https://ror.org/0449rap84" + }, + { + "label": "Centre de Recherche en Design", + "type": "child", + "id": "https://ror.org/007y9b339" + }, + { + "label": "Laboratoire Lumière, Matière et Interfaces", + "type": "child", + "id": "https://ror.org/048d5xq24" + }, + { + "label": "SayFood - Food and Bioproduct Engineering", + "type": "child", + "id": "https://ror.org/03gmkya61" + }, + { + "label": "Laboratoire Interdisciplinaire des Sciences du Numérique", + "type": "child", + "id": "https://ror.org/00rd81916" + }, + { + "label": "Laboratoire Méthodes Formelles", + "type": "child", + "id": "https://ror.org/00gdtta79" + }, + { + "label": "Virologie et Immunologie Moléculaires", + "type": "child", + "id": "https://ror.org/01jvz7e61" + }, + { + "label": "Fédération Francilienne de Mécanique - Matériaux, Structures, Procédés", + "type": "child", + "id": "https://ror.org/01bbf9m56" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Bioinformatique Moléculaire", + "type": "child", + "id": "https://ror.org/02r1kz177" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Laboratoire de Physique des Plasmas", + "type": "child", + "id": "https://ror.org/05c95bg36" + }, + { + "label": "Biomarqueurs et essais cliniques en Cancérologie et Onco-Hématologie", + "type": "child", + "id": "https://ror.org/05r0mw364" + }, + { + "label": "Centre d’histoire culturelle des sociétés contemporaines", + "type": "child", + "id": "https://ror.org/0087n5v55" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "child", + "id": "https://ror.org/00ex3jm11" + }, + { + "label": "Equipe de recherche paramédicale sur le handicap neuromoteur", + "type": "child", + "id": "https://ror.org/023bv6t84" + }, + { + "label": "Institut de recherches arctiques Jean Malaurie", + "type": "child", + "id": "https://ror.org/008hxwy89" + }, + { + "label": "Laboratoire Anthropologie, Archéologie, Biologie", + "type": "child", + "id": "https://ror.org/023b2c435" + }, + { + "label": "Laboratoire interdisciplinaire sur les mutations des espaces économiques et politiques - Paris Saclay", + "type": "child", + "id": "https://ror.org/01jdptv64" + }, + { + "label": "Maison de la Simulation", + "type": "child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "CIRED", + "type": "child", + "id": "https://ror.org/01b436806" + }, + { + "label": "Laboratoire Charles Fabry", + "type": "child", + "id": "https://ror.org/046hjmc37" + }, + { + "label": "Centre de recherche en Epidémiologie et Santé des Populations", + "type": "child", + "id": "https://ror.org/01ed4t417" + }, + { + "label": "Laboratoire de Mathématiques d'Orsay", + "type": "child", + "id": "https://ror.org/03ab0zs98" + }, + { + "label": "Fluides, Automatique et Systèmes Thermiques", + "type": "child", + "id": "https://ror.org/02byv2846" + }, + { + "label": "Genome Integrity, RNA and Cancer", + "type": "child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Génétique Quantitative et Évolution Le Moulon", + "type": "child", + "id": "https://ror.org/012fqzm33" + }, + { + "label": "Inflammation, Microbiome and Immunosurveillance", + "type": "child", + "id": "https://ror.org/05dy6wv04" + }, + { + "label": "Institut Galien Paris-Saclay", + "type": "child", + "id": "https://ror.org/02mnw9q71" + }, + { + "label": "Institut d'Astrophysique Spatiale", + "type": "child", + "id": "https://ror.org/014p8mr66" + }, + { + "label": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "type": "child", + "id": "https://ror.org/05wzh1m37" + }, + { + "label": "Institut de Chimie des Substances Naturelles", + "type": "child", + "id": "https://ror.org/02st4q439" + }, + { + "label": "Institut des Sciences Moléculaires d'Orsay", + "type": "child", + "id": "https://ror.org/0211r2z47" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institute of Integrative Biology of the Cell", + "type": "child", + "id": "https://ror.org/01fftxe08" + }, + { + "label": "Interactions Cellulaires et Physiopathologie Hépathique", + "type": "child", + "id": "https://ror.org/05dpfhh73" + }, + { + "label": "Laboratoire Aimé Cotton", + "type": "child", + "id": "https://ror.org/021xexe56" + }, + { + "label": "Complexité, Innovation et Activités Motrices et Sportives", + "type": "child", + "id": "https://ror.org/00k3ph542" + }, + { + "label": "Laboratoire de Chimie Physique", + "type": "child", + "id": "https://ror.org/016r2hq43" + }, + { + "label": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "child", + "id": "https://ror.org/02xnnng09" + }, + { + "label": "Laboratoire des signaux et systèmes", + "type": "child", + "id": "https://ror.org/00skw9v43" + }, + { + "label": "Laboratoire de physique des Solides", + "type": "child", + "id": "https://ror.org/02dyaew97" + }, + { + "label": "Laboratory of Theoretical Physics and Statistical Models", + "type": "child", + "id": "https://ror.org/00w67e447" + }, + { + "label": "Institut des Neurosciences Paris-Saclay", + "type": "child", + "id": "https://ror.org/002v40q27" + }, + { + "label": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "type": "child", + "id": "https://ror.org/01et6g203" + }, + { + "label": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "type": "child", + "id": "https://ror.org/03sypqe31" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Laboratoire Albert Fert", + "type": "child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Écologie, Systématique et Évolution", + "type": "child", + "id": "https://ror.org/00kk89y84" + }, + { + "label": "Évolution, Génomes, Comportement, Écologie", + "type": "child", + "id": "https://ror.org/011abem59" + }, + { + "label": "Agronomie", + "type": "child", + "id": "https://ror.org/02cptmd52" + }, + { + "label": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "type": "child", + "id": "https://ror.org/035gq6r08" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03y0ymy78.json b/v1.43/03y0ymy78.json new file mode 100644 index 000000000..7cad1fed7 --- /dev/null +++ b/v1.43/03y0ymy78.json @@ -0,0 +1,93 @@ +{ + "locations": [ + { + "geonames_id": 2653822, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.48, + "lng": -3.18, + "name": "Cardiff" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9503 2776" + ], + "preferred": "0000 0004 9503 2776" + }, + { + "type": "wikidata", + "all": [ + "Q65060598" + ], + "preferred": "Q65060598" + } + ], + "id": "https://ror.org/03y0ymy78", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.wcpp.org.uk" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Wales_Centre_for_Public_Policy" + } + ], + "names": [ + { + "value": "Wales Centre for Public Policy", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Canolfan Polisi Cyhoeddus Cymru", + "types": [ + "label" + ], + "lang": "cy" + }, + { + "value": "WCPP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Public Policy Institute for Wales", + "type": "predecessor", + "id": "https://ror.org/05j5g1b69" + }, + { + "label": "Cardiff University", + "type": "related", + "id": "https://ror.org/03kk7td41" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03y3e3s17.json b/v1.43/03y3e3s17.json new file mode 100644 index 000000000..4a779b529 --- /dev/null +++ b/v1.43/03y3e3s17.json @@ -0,0 +1,109 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1902, + "external_ids": [ + { + "all": [ + "501100004311" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.163032.5" + ], + "preferred": "grid.163032.5", + "type": "grid" + }, + { + "all": [ + "0000 0004 1760 2008" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7489128" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/03y3e3s17", + "links": [ + { + "type": "website", + "value": "http://english.sxu.edu.cn/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Shanxi_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 37.86944, + "lng": 112.56028, + "name": "Taiyuan" + }, + "geonames_id": 1793511 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SXU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Shanxi University" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Shānxī Dàxué" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "山西大学" + } + ], + "relationships": [ + { + "label": "State Key Laboratory of Quantum Optics and Quantum Optics Devices", + "type": "child", + "id": "https://ror.org/035z18f46" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/03y8jvk69.json b/v1.43/03y8jvk69.json new file mode 100644 index 000000000..ad9adca60 --- /dev/null +++ b/v1.43/03y8jvk69.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 8299576, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.60079, + "lng": -74.64815, + "name": "Bridgewater" + } + } + ], + "established": 2011, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6430 7044" + ], + "preferred": "0000 0004 6430 7044" + }, + { + "type": "wikidata", + "all": [ + "Q45132270" + ], + "preferred": "Q45132270" + }, + { + "type": "fundref", + "all": [ + "100010886" + ], + "preferred": "100010886" + } + ], + "id": "https://ror.org/03y8jvk69", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nestlehealthscience.com" + } + ], + "names": [ + { + "value": "Nestlé Health Science (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Nestlé Health Science", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Nestlé (Switzerland)", + "type": "parent", + "id": "https://ror.org/01v5xwf23" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03yk4dt83.json b/v1.43/03yk4dt83.json new file mode 100644 index 000000000..8f012904f --- /dev/null +++ b/v1.43/03yk4dt83.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 2516345, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 38.99042, + "lng": -0.51852, + "name": "Xàtiva" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1768 2773" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.414979.6" + ], + "preferred": "grid.414979.6" + } + ], + "id": "https://ror.org/03yk4dt83", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://xativaontinyent.san.gva.es" + } + ], + "names": [ + { + "value": "Hospital Lluis Alcanyis", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Hospital Lluís Alcanyís", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hospital General d'Ontinyent", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Hospital General de Ontinyent", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Departament de Salut Xàtiva Ontinyent", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Departamento de Salud Xàtiva Ontinyent", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03yycdv57.json b/v1.43/03yycdv57.json new file mode 100644 index 000000000..f88202245 --- /dev/null +++ b/v1.43/03yycdv57.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1870, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0639 2930" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3137513" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.425204.5" + ], + "preferred": "grid.425204.5" + } + ], + "id": "https://ror.org/03yycdv57", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.ign.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Instituto_Geogr%C3%A1fico_Nacional_(Spain)" + } + ], + "names": [ + { + "value": "Instituto Geográfico Nacional", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Geographic Institute", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "IGN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03zyxxj44.json b/v1.43/03zyxxj44.json new file mode 100644 index 000000000..4fd6387e8 --- /dev/null +++ b/v1.43/03zyxxj44.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5938 4379" + ], + "preferred": "0000 0004 5938 4379" + }, + { + "type": "wikidata", + "all": [ + "Q30260211" + ], + "preferred": "Q30260211" + } + ], + "id": "https://ror.org/03zyxxj44", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ciusss-estmtl.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré universitaire de santé et de services sociaux de l'Est-de-l'Île-de-Montréal", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CIUSSS de l'Est-de-l'Île-de-Montréal", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/041kmwe10.json b/v1.43/041kmwe10.json new file mode 100644 index 000000000..ed6b7aae5 --- /dev/null +++ b/v1.43/041kmwe10.json @@ -0,0 +1,183 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1907, + "external_ids": [ + { + "all": [ + "501100000761", + "501100000850" + ], + "preferred": "501100000761", + "type": "fundref" + }, + { + "all": [ + "grid.7445.2" + ], + "preferred": "grid.7445.2", + "type": "grid" + }, + { + "all": [ + "0000 0001 2113 8111" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q189022" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/041kmwe10", + "links": [ + { + "type": "website", + "value": "https://www.imperial.ac.uk" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Imperial_College_London" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": "cy", + "types": [ + "label" + ], + "value": "Coleg Imperial Llundain" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Imperial College London" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Imperial College of Science, Technology and Medicine" + } + ], + "relationships": [ + { + "label": "MRC London Institute of Medical Sciences", + "type": "child", + "id": "https://ror.org/05p1n6x86" + }, + { + "label": "Charing Cross Hospital", + "type": "related", + "id": "https://ror.org/02gcp3110" + }, + { + "label": "Ealing Hospital", + "type": "related", + "id": "https://ror.org/05a90fj07" + }, + { + "label": "Hammersmith Hospital", + "type": "related", + "id": "https://ror.org/05jg8yp15" + }, + { + "label": "Harefield Hospital", + "type": "related", + "id": "https://ror.org/04fwa4t58" + }, + { + "label": "Hillingdon Hospital", + "type": "related", + "id": "https://ror.org/00jpae132" + }, + { + "label": "Mount Vernon Hospital", + "type": "related", + "id": "https://ror.org/04am5a125" + }, + { + "label": "NIHR Royal Brompton Cardiovascular Biomedical Research Unit", + "type": "related", + "id": "https://ror.org/01y4kmz24" + }, + { + "label": "NIHR Royal Brompton Respiratory Biomedical Research Unit", + "type": "related", + "id": "https://ror.org/02j3q7j55" + }, + { + "label": "Northwick Park Hospital", + "type": "related", + "id": "https://ror.org/030j6qm79" + }, + { + "label": "Royal Marsden Hospital", + "type": "related", + "id": "https://ror.org/034vb5t35" + }, + { + "label": "St Mark's Hospital", + "type": "related", + "id": "https://ror.org/05am5g719" + }, + { + "label": "St Mary's Hospital", + "type": "related", + "id": "https://ror.org/01aysdw42" + }, + { + "label": "St Peter's Hospital", + "type": "related", + "id": "https://ror.org/0159cmf83" + }, + { + "label": "West Middlesex University Hospital", + "type": "related", + "id": "https://ror.org/05vgg2c14" + }, + { + "label": "The George Institute for Global Health", + "type": "related", + "id": "https://ror.org/023331s46" + }, + { + "label": "MRC Centre for Environment and Health", + "type": "child", + "id": "https://ror.org/01vw4c203" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/041kymq04.json b/v1.43/041kymq04.json new file mode 100644 index 000000000..4d5dc3e2d --- /dev/null +++ b/v1.43/041kymq04.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 1271715, + "geonames_details": { + "country_code": "IN", + "country_name": "India", + "lat": 23.21667, + "lng": 72.68333, + "name": "Gandhinagar" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0726 9739" + ], + "preferred": "0000 0005 0726 9739" + }, + { + "type": "fundref", + "all": [ + "100019126" + ], + "preferred": "100019126" + } + ], + "id": "https://ror.org/041kymq04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://dst.gujarat.gov.in/gcst.htm" + } + ], + "names": [ + { + "value": "Gujarat Council on Science and Technology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Gujarat Council of Science and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "GCST", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/041m9xr71.json b/v1.43/041m9xr71.json new file mode 100644 index 000000000..3ce248881 --- /dev/null +++ b/v1.43/041m9xr71.json @@ -0,0 +1,107 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1947, + "external_ids": [ + { + "all": [ + "0000 0001 0690 157X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100011659" + ], + "preferred": "100011659", + "type": "fundref" + }, + { + "all": [ + "Q4745875" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.451319.b" + ], + "preferred": "grid.451319.b", + "type": "grid" + } + ], + "id": "https://ror.org/041m9xr71", + "links": [ + { + "type": "website", + "value": "https://www.ameslab.gov/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ames_Laboratory" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.03471, + "lng": -93.61994, + "name": "Ames" + }, + "geonames_id": 4846834 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Ames National Laboratory" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Ames Laboratory" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "United States Department of Energy Office of Science Ames National Laboratory" + } + ], + "relationships": [ + { + "label": "Iowa State University", + "type": "parent", + "id": "https://ror.org/04rswrd78" + }, + { + "label": "Office of Science", + "type": "parent", + "id": "https://ror.org/00mmn6b08" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/041qq2t66.json b/v1.43/041qq2t66.json new file mode 100644 index 000000000..856c0db4f --- /dev/null +++ b/v1.43/041qq2t66.json @@ -0,0 +1,79 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6085 4796" + ], + "preferred": "0000 0004 6085 4796" + }, + { + "type": "wikidata", + "all": [ + "Q45132743" + ], + "preferred": "Q45132743" + }, + { + "type": "fundref", + "all": [ + "501100008754" + ], + "preferred": "501100008754" + } + ], + "id": "https://ror.org/041qq2t66", + "domains": [], + "links": [], + "names": [ + { + "value": "Leverhulme Centre for Integrative Research on Agriculture and Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "LCIRAH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "London International Development Centre", + "type": "parent", + "id": "https://ror.org/053xt2a19" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/041repn61.json b/v1.43/041repn61.json new file mode 100644 index 000000000..45b5ab44a --- /dev/null +++ b/v1.43/041repn61.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 6066513, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.86682, + "lng": -79.2663, + "name": "Markham" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0634 9545" + ], + "preferred": "0000 0004 0634 9545" + }, + { + "type": "fundref", + "all": [ + "100012317" + ], + "preferred": "100012317" + } + ], + "id": "https://ror.org/041repn61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.astellas.com/ca/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Astellas_Pharma" + } + ], + "names": [ + { + "value": "Astellas Pharma (Canada)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Astellas Pharmaceuticals", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Astellas Pharma (Japan)", + "type": "parent", + "id": "https://ror.org/01cjash87" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/041yk2d64.json b/v1.43/041yk2d64.json new file mode 100644 index 000000000..0d30a43bc --- /dev/null +++ b/v1.43/041yk2d64.json @@ -0,0 +1,113 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1895, + "external_ids": [ + { + "all": [ + "501100004909", + "501100007184" + ], + "preferred": "501100004909", + "type": "fundref" + }, + { + "all": [ + "grid.8532.c" + ], + "preferred": "grid.8532.c", + "type": "grid" + }, + { + "all": [ + "0000 0001 2200 7498" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q766447" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/041yk2d64", + "links": [ + { + "type": "website", + "value": "http://www.ufrgs.br" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Universidade_Federal_do_Rio_Grande_do_Sul" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -30.03283, + "lng": -51.23019, + "name": "Porto Alegre" + }, + "geonames_id": 3452925 + } + ], + "names": [ + { + "lang": "en", + "types": [ + "label" + ], + "value": "Federal University of Rio Grande do Sul" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UFRGS" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Universidade Federal do Rio Grande do Sul" + } + ], + "relationships": [ + { + "label": "Hospital de Clínicas de Porto Alegre", + "type": "related", + "id": "https://ror.org/010we4y38" + }, + { + "label": "MapBiomas", + "type": "related", + "id": "https://ror.org/021203s31" + }, + { + "label": "Instituto Nacional de Ciência e Tecnologia Translacional em Medicina", + "type": "child", + "id": "https://ror.org/01vt9w950" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/042en9b35.json b/v1.43/042en9b35.json new file mode 100644 index 000000000..e4cc810f1 --- /dev/null +++ b/v1.43/042en9b35.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2803138, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 51.22047, + "lng": 4.40026, + "name": "Antwerp" + } + } + ], + "established": 2013, + "external_ids": [], + "id": "https://ror.org/042en9b35", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://accelleran.com" + } + ], + "names": [ + { + "value": "Accelleran NV (Belgium)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Accelleran", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Accelleran NV", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ACC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/042fhmq33.json b/v1.43/042fhmq33.json new file mode 100644 index 000000000..ceec6a5f8 --- /dev/null +++ b/v1.43/042fhmq33.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 4347778, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012312" + ], + "preferred": "100012312" + } + ], + "id": "https://ror.org/042fhmq33", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://packardcenter.org" + } + ], + "names": [ + { + "value": "Packard Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Robert Packard Center for ALS Research, Johns Hopkins University", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Johns Hopkins University", + "type": "parent", + "id": "https://ror.org/00za53h95" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/042heps41.json b/v1.43/042heps41.json new file mode 100644 index 000000000..442479425 --- /dev/null +++ b/v1.43/042heps41.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 4832458, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.10369, + "lng": -69.10893, + "name": "Rockland" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4686 4007" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q7894639" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.461517.0" + ], + "preferred": "grid.461517.0" + } + ], + "id": "https://ror.org/042heps41", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://learn.maine.edu/rockland/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_College_at_Rockland" + } + ], + "names": [ + { + "value": "University College at Rockland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "URock", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Maine System", + "type": "parent", + "id": "https://ror.org/050qj5m48" + } + ], + "status": "withdrawn", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/042jh8155.json b/v1.43/042jh8155.json new file mode 100644 index 000000000..d2717130a --- /dev/null +++ b/v1.43/042jh8155.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2019-11-07", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1991, + "external_ids": [ + { + "all": [ + "grid.506565.5" + ], + "preferred": "grid.506565.5", + "type": "grid" + } + ], + "id": "https://ror.org/042jh8155", + "links": [ + { + "type": "website", + "value": "http://www.iple.de" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + }, + "geonames_id": 2950159 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute for Productive Learning in Europe" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Institut für Produktives Lernen in Europa" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IPLE" + } + ], + "relationships": [ + { + "label": "Alice-Salomon-Hochschule Berlin", + "type": "parent", + "id": "https://ror.org/04b404920" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/v1.43/042k5q325.json b/v1.43/042k5q325.json new file mode 100644 index 000000000..ae9d6eef9 --- /dev/null +++ b/v1.43/042k5q325.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2945024, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.26594, + "lng": 10.52673, + "name": "Braunschweig" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100014132" + ], + "preferred": "100014132" + } + ], + "id": "https://ror.org/042k5q325", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.euramet.org/research-innovation/research-empir" + } + ], + "names": [ + { + "value": "European Metrology Programme for Innovation and Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "EMPIR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "European Association of National Metrology Institutes", + "type": "parent", + "id": "https://ror.org/03csrq586" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/042t2dj58.json b/v1.43/042t2dj58.json new file mode 100644 index 000000000..8b17de273 --- /dev/null +++ b/v1.43/042t2dj58.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2034937, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 41.79222, + "lng": 123.43278, + "name": "Shenyang" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/042t2dj58", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sysard.com" + } + ], + "names": [ + { + "value": "Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Shenyang Sinochem Agrochemicals R&D Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Shenyang Sinochem Agrochemicals R&D Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "沈阳中化农药化工研发有限公司", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/042vxm455.json b/v1.43/042vxm455.json new file mode 100644 index 000000000..bc94d207f --- /dev/null +++ b/v1.43/042vxm455.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 5128581, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.71427, + "lng": -74.00597, + "name": "New York" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0453 5264" + ], + "preferred": "0000 0004 0453 5264" + } + ], + "id": "https://ror.org/042vxm455", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bloomsbury.com/us/" + } + ], + "names": [ + { + "value": "Bloomsbury (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Bloomsbury USA", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Bloomsbury Publishing (United Kingdom)", + "type": "parent", + "id": "https://ror.org/04yyy0y35" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0436znn81.json b/v1.43/0436znn81.json new file mode 100644 index 000000000..876d32e94 --- /dev/null +++ b/v1.43/0436znn81.json @@ -0,0 +1,105 @@ +{ + "locations": [ + { + "geonames_id": 2648108, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.45, + "lng": -2.23333, + "name": "Greater Manchester" + } + } + ], + "established": 2023, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7871 7132" + ], + "preferred": "0000 0004 7871 7132" + }, + { + "type": "fundref", + "all": [ + "501100013235" + ], + "preferred": "501100013235" + } + ], + "id": "https://ror.org/0436znn81", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.psrc-gm.nihr.ac.uk" + } + ], + "names": [ + { + "value": "NIHR Greater Manchester Patient Safety Translational Research Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for Health Research Greater Manchester Patient Safety Translational Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Greater Manchester Patient Safety Translational Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Manchester Patient Safety Translational Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHR GM PSTRC", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "GM PSTRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "parent", + "id": "https://ror.org/0187kwz08" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04387x656.json b/v1.43/04387x656.json new file mode 100644 index 000000000..a37415bb8 --- /dev/null +++ b/v1.43/04387x656.json @@ -0,0 +1,119 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-08-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1998, + "external_ids": [ + { + "all": [ + "501100005699" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.16563.37" + ], + "preferred": "grid.16563.37", + "type": "grid" + }, + { + "all": [ + "0000 0001 2166 3741" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1235561" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/04387x656", + "links": [ + { + "type": "website", + "value": "http://www.unipmn.it/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Eastern_Piedmont" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.32163, + "lng": 8.41989, + "name": "Vercelli" + }, + "geonames_id": 3164565 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNIPMN" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Eastern Piedmont" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Eastern Piedmont Amadeo Avogadro" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Università degli Studi del Piemonte Orientale “Amedeo Avogadro”" + } + ], + "relationships": [ + { + "label": "INFN Sezione di Torino", + "type": "child", + "id": "https://ror.org/01vj6ck58" + }, + { + "label": "Azienda Ospedaliero Universitaria Maggiore della Carita", + "type": "related", + "id": "https://ror.org/02gp92p70" + }, + { + "label": "NODES S.c.a.r.l", + "type": "related", + "id": "https://ror.org/04hp1ky92" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/043evzg22.json b/v1.43/043evzg22.json new file mode 100644 index 000000000..fe6b37b12 --- /dev/null +++ b/v1.43/043evzg22.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011284" + ], + "preferred": "501100011284" + } + ], + "id": "https://ror.org/043evzg22", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://eesklab.tsinghua.edu.cn" + } + ], + "names": [ + { + "value": "State Key Laboratory of Power System and Generation Equipment", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Power System and Generation Equipment", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Laboratory of Safety Control and Simulation of Power System and Large-scale Power Generation Equipment", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "电力系统及发电设备控制和仿真国家重点实验室", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "电力系统及大型发电设备安全控制和仿真国家重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "Tsinghua University", + "type": "parent", + "id": "https://ror.org/03cve4549" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/043htjv09.json b/v1.43/043htjv09.json new file mode 100644 index 000000000..6e7c08816 --- /dev/null +++ b/v1.43/043htjv09.json @@ -0,0 +1,131 @@ +{ + "admin": { + "created": { + "date": "2020-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2020, + "external_ids": [ + { + "all": [ + "Q74452784" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.507676.5" + ], + "preferred": "grid.507676.5", + "type": "grid" + } + ], + "id": "https://ror.org/043htjv09", + "links": [ + { + "type": "website", + "value": "https://www.u-cergy.fr/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/CY_Cergy_Paris_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 49.03894, + "lng": 2.07805, + "name": "Cergy-Pontoise" + }, + "geonames_id": 8555643 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "CY Cergy Paris University" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "CY Cergy Paris Université" + } + ], + "relationships": [ + { + "label": "Analyse, Géométrie et Modélisation", + "type": "child", + "id": "https://ror.org/03qgt2624" + }, + { + "label": "André Revuz Didactics Laboratory", + "type": "child", + "id": "https://ror.org/053p8kg34" + }, + { + "label": "Centre de Recherches Sociologiques sur le Droit et les Institutions Pénales", + "type": "child", + "id": "https://ror.org/01qm1tk92" + }, + { + "label": "Information Processing and System Research Lab", + "type": "child", + "id": "https://ror.org/0592ata02" + }, + { + "label": "Laboratoire Analyse et Modélisation pour la Biologie et l'Environnement", + "type": "child", + "id": "https://ror.org/00wwxk695" + }, + { + "label": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "type": "child", + "id": "https://ror.org/03vam5b06" + }, + { + "label": "Théorie Économique, Modélisation et Applications", + "type": "child", + "id": "https://ror.org/00vctdx48" + }, + { + "label": "Laboratoire Paragraphe", + "type": "child", + "id": "https://ror.org/00mgd1d10" + }, + { + "label": "Laboratoire de Physique Théorique et Modélisation", + "type": "child", + "id": "https://ror.org/05nhcdk38" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/043xqa828.json b/v1.43/043xqa828.json new file mode 100644 index 000000000..accd834f7 --- /dev/null +++ b/v1.43/043xqa828.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q45137372" + ], + "preferred": "Q45137372" + }, + { + "type": "fundref", + "all": [ + "501100003263" + ], + "preferred": "501100003263" + } + ], + "id": "https://ror.org/043xqa828", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Scottish_Office" + } + ], + "names": [ + { + "value": "Scottish Home and Health Department", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Scottish Office Home and Health Department", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Parliament of United Kingdom", + "type": "parent", + "id": "https://ror.org/03t61s708" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0447fe631.json b/v1.43/0447fe631.json new file mode 100644 index 000000000..e2349d259 --- /dev/null +++ b/v1.43/0447fe631.json @@ -0,0 +1,233 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1947, + "external_ids": [ + { + "all": [ + "100000005", + "100006502", + "100006127", + "100007485", + "100014037", + "100014032" + ], + "preferred": "100000005", + "type": "fundref" + }, + { + "all": [ + "grid.420391.d" + ], + "preferred": "grid.420391.d", + "type": "grid" + }, + { + "all": [ + "0000 0004 0478 6223", + "0000 0001 2163 2208" + ], + "preferred": "0000 0004 0478 6223", + "type": "isni" + }, + { + "all": [ + "Q11209", + "Q1591470" + ], + "preferred": "Q11209", + "type": "wikidata" + } + ], + "id": "https://ror.org/0447fe631", + "links": [ + { + "type": "website", + "value": "http://www.defense.gov/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/United_States_Department_of_Defense" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + }, + "geonames_id": 4140963 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DOD" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Departamento de Defensa de los Estados Unidos" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Département de la Défense des États-Unis" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "US DOD" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "United States Department of Defense" + } + ], + "relationships": [ + { + "label": "Defense & Veterans Center for Integrative Pain Management", + "type": "child", + "id": "https://ror.org/03ytzg339" + }, + { + "label": "Defense Human Resources Activity", + "type": "child", + "id": "https://ror.org/009heah97" + }, + { + "label": "Defense Information School", + "type": "child", + "id": "https://ror.org/04t5yz624" + }, + { + "label": "Defense Information Systems Agency", + "type": "child", + "id": "https://ror.org/01xyx5098" + }, + { + "label": "Defense Intelligence Agency", + "type": "child", + "id": "https://ror.org/025nqct78" + }, + { + "label": "Defense Logistics Agency", + "type": "child", + "id": "https://ror.org/001yrmh12" + }, + { + "label": "Defense Security Cooperation Agency", + "type": "child", + "id": "https://ror.org/049zppa02" + }, + { + "label": "Defense Technical Information Center", + "type": "child", + "id": "https://ror.org/01zqyhk59" + }, + { + "label": "Defense Threat Reduction Agency", + "type": "child", + "id": "https://ror.org/04tz64554" + }, + { + "label": "Joint Interoperability Test Command", + "type": "child", + "id": "https://ror.org/05jr0p734" + }, + { + "label": "Military Health System", + "type": "child", + "id": "https://ror.org/03b7pda13" + }, + { + "label": "Missile Defense Agency", + "type": "child", + "id": "https://ror.org/024z17f57" + }, + { + "label": "National Geospatial-Intelligence Agency", + "type": "child", + "id": "https://ror.org/02k4pxv54" + }, + { + "label": "National Security Agency", + "type": "child", + "id": "https://ror.org/0047bvr32" + }, + { + "label": "Office of the Secretary of Defense", + "type": "child", + "id": "https://ror.org/00q4sx826" + }, + { + "label": "United States Department of the Air Force", + "type": "child", + "id": "https://ror.org/01973x930" + }, + { + "label": "United States Department of the Army", + "type": "child", + "id": "https://ror.org/035w1gb98" + }, + { + "label": "United States Department of the Navy", + "type": "child", + "id": "https://ror.org/03ar0mv07" + }, + { + "label": "United States Military Entrance Processing Command", + "type": "child", + "id": "https://ror.org/05c5e7249" + }, + { + "label": "Walter Reed National Military Medical Center", + "type": "child", + "id": "https://ror.org/025cem651" + }, + { + "label": "Government of the United States of America", + "type": "parent", + "id": "https://ror.org/02rcrvv70" + }, + { + "label": "Defense Equal Opportunity Management Institute", + "type": "related", + "id": "https://ror.org/03fpx5n61" + }, + { + "label": "Strategic Environmental Research and Development Program", + "type": "child", + "id": "https://ror.org/00ew61678" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/044kpcz50.json b/v1.43/044kpcz50.json new file mode 100644 index 000000000..eeefcf8a0 --- /dev/null +++ b/v1.43/044kpcz50.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 2618425, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 55.67594, + "lng": 12.56553, + "name": "Copenhagen" + } + } + ], + "established": 1920, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7866 339X" + ], + "preferred": "0000 0004 7866 339X" + }, + { + "type": "wikidata", + "all": [ + "Q12309486" + ], + "preferred": "Q12309486" + }, + { + "type": "fundref", + "all": [ + "501100009902" + ], + "preferred": "501100009902" + } + ], + "id": "https://ror.org/044kpcz50", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.egmontfonden.dk" + }, + { + "type": "wikipedia", + "value": "https://da.wikipedia.org/wiki/Egmont_Fonden" + } + ], + "names": [ + { + "value": "Egmont Fonden", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Egmont H. Petersens Fond", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Egmont Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0453rg493.json b/v1.43/0453rg493.json new file mode 100644 index 000000000..0f517301b --- /dev/null +++ b/v1.43/0453rg493.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1885, + "external_ids": [ + { + "all": [ + "grid.431190.e" + ], + "preferred": "grid.431190.e", + "type": "grid" + }, + { + "all": [ + "0000 0004 0446 4566" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7073984" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/0453rg493", + "links": [ + { + "type": "website", + "value": "http://www.oak.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Oakland_City_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.33866, + "lng": -87.34501, + "name": "Oakland City" + }, + "geonames_id": 4262425 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "OCU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Oakland City University" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/045jby416.json b/v1.43/045jby416.json new file mode 100644 index 000000000..b8deb5068 --- /dev/null +++ b/v1.43/045jby416.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1840, + "external_ids": [ + { + "all": [ + "grid.431499.2" + ], + "preferred": "grid.431499.2", + "type": "grid" + }, + { + "all": [ + "0000 0000 8597 0516" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7401849" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/045jby416", + "links": [ + { + "type": "website", + "value": "http://www.smwc.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Saint_Mary-of-the-Woods_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.4667, + "lng": -87.41391, + "name": "Terre Haute" + }, + "geonames_id": 4265737 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SMWC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Saint Mary-of-the-Woods College" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/046j7pv84.json b/v1.43/046j7pv84.json new file mode 100644 index 000000000..4a31fc86e --- /dev/null +++ b/v1.43/046j7pv84.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 2660646, + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.20222, + "lng": 6.14569, + "name": "Geneva" + } + } + ], + "established": 1974, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2191 7262" + ], + "preferred": "0000 0001 2191 7262" + }, + { + "type": "wikidata", + "all": [ + "Q30261831" + ], + "preferred": "Q30261831" + }, + { + "type": "fundref", + "all": [ + "100016285" + ], + "preferred": "100016285" + } + ], + "id": "https://ror.org/046j7pv84", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://tdr.who.int" + } + ], + "names": [ + { + "value": "Special Programme for Research and Training in Tropical Diseases", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "TDR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United Nations Children's Fund", + "type": "parent", + "id": "https://ror.org/02dg0pv02" + }, + { + "label": "United Nations Development Programme", + "type": "parent", + "id": "https://ror.org/051777d98" + }, + { + "label": "World Bank", + "type": "parent", + "id": "https://ror.org/00ae7jd04" + }, + { + "label": "World Health Organization", + "type": "parent", + "id": "https://ror.org/01f80g185" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/047448m94.json b/v1.43/047448m94.json new file mode 100644 index 000000000..ada9946ae --- /dev/null +++ b/v1.43/047448m94.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2220957, + "geonames_details": { + "country_code": "CM", + "country_name": "Cameroon", + "lat": 3.86667, + "lng": 11.51667, + "name": "Yaoundé" + } + } + ], + "established": 1965, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9212 1336" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.463347.1" + ], + "preferred": "grid.463347.1" + }, + { + "type": "wikidata", + "all": [ + "Q30261846" + ], + "preferred": "Q30261846" + } + ], + "id": "https://ror.org/047448m94", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://impm-cm.org" + } + ], + "names": [ + { + "value": "Institut de Recherches Médicales et d’Etudes des Plantes Médicinales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Research Medical and Medicinal Plants Studies", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "IMPM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/047dkqn05.json b/v1.43/047dkqn05.json new file mode 100644 index 000000000..8b0d57063 --- /dev/null +++ b/v1.43/047dkqn05.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 4347778, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/047dkqn05", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.equinoxsensors.com" + } + ], + "names": [ + { + "value": "Equinox Corporation (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Equinox Sensors", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Equinox Corporation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/047xxvg44.json b/v1.43/047xxvg44.json new file mode 100644 index 000000000..3a3e5b40e --- /dev/null +++ b/v1.43/047xxvg44.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2740637, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 40.20564, + "lng": -8.41955, + "name": "Coimbra" + } + } + ], + "established": 1927, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0631 0608" + ], + "preferred": "0000 0004 0631 0608" + }, + { + "type": "grid", + "all": [ + "grid.435541.2" + ], + "preferred": "grid.435541.2" + }, + { + "type": "wikidata", + "all": [ + "Q107279716" + ], + "preferred": "Q107279716" + } + ], + "id": "https://ror.org/047xxvg44", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ipocoimbra.min-saude.pt" + } + ], + "names": [ + { + "value": "Instituto Português de Oncologia de Coimbra Francisco Gentil", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Francisco Gentil Portuguese Institute for Oncology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IPOCFG", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/047yj9455.json b/v1.43/047yj9455.json new file mode 100644 index 000000000..3ca25b235 --- /dev/null +++ b/v1.43/047yj9455.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1783 3287" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q8242526" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.16388.34" + ], + "preferred": "grid.16388.34" + } + ], + "id": "https://ror.org/047yj9455", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.barcelonamedia.org/" + } + ], + "names": [ + { + "value": "Barcelona Media", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0483fn738.json b/v1.43/0483fn738.json new file mode 100644 index 000000000..b4b1dcf37 --- /dev/null +++ b/v1.43/0483fn738.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 8358544, + "geonames_details": { + "country_code": "GR", + "country_name": "Greece", + "lat": 37.97574, + "lng": 23.76911, + "name": "Zografos" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.435146.1" + ], + "preferred": "grid.435146.1" + }, + { + "type": "wikidata", + "all": [ + "Q30289833" + ], + "preferred": "Q30289833" + } + ], + "id": "https://ror.org/0483fn738", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.iccs.gr" + } + ], + "names": [ + { + "value": "Institute of Communication and Computer Systems", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of Communication & Computer Systems “ICCS”", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Erevnitiko Panepistimiako Institouto Systimaton Epikoinonion Kai Ypologiston", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ICCS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Technical University of Athens", + "type": "related", + "id": "https://ror.org/03cx6bg69" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/048tbm396.json b/v1.43/048tbm396.json new file mode 100644 index 000000000..07a08b64b --- /dev/null +++ b/v1.43/048tbm396.json @@ -0,0 +1,143 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-08-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1404, + "external_ids": [ + { + "all": [ + "501100006692" + ], + "preferred": "501100006692", + "type": "fundref" + }, + { + "all": [ + "grid.7605.4" + ], + "preferred": "grid.7605.4", + "type": "grid" + }, + { + "all": [ + "0000 0001 2336 6580" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q499911" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/048tbm396", + "links": [ + { + "type": "website", + "value": "http://en.unito.it/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Turin" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.07049, + "lng": 7.68682, + "name": "Turin" + }, + "geonames_id": 3165524 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNITO" + }, + { + "lang": "ca", + "types": [ + "label" + ], + "value": "Universitat de Torí" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Turin" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "Università degli Studi di Torino" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Universität Turin" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Turin" + } + ], + "relationships": [ + { + "label": "Multi-Modal Molecular Imaging Italian Node", + "type": "child", + "id": "https://ror.org/0573ty638" + }, + { + "label": "Azienda Ospedaliera Citta' della Salute e della Scienza di Torino", + "type": "related", + "id": "https://ror.org/001f7a930" + }, + { + "label": "Azienda Ospedaliero Universitaria San Giovanni Battista", + "type": "related", + "id": "https://ror.org/00nrtez23" + }, + { + "label": "CTO Hospital", + "type": "related", + "id": "https://ror.org/05ph11m41" + }, + { + "label": "NODES S.c.a.r.l", + "type": "related", + "id": "https://ror.org/04hp1ky92" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/04988re48.json b/v1.43/04988re48.json new file mode 100644 index 000000000..f6ae4d292 --- /dev/null +++ b/v1.43/04988re48.json @@ -0,0 +1,103 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1985, + "external_ids": [ + { + "all": [ + "501100007157" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.410926.8" + ], + "preferred": "grid.410926.8", + "type": "grid" + }, + { + "all": [ + "0000 0001 2191 8636" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4348556", + "Q3152860" + ], + "preferred": "Q4348556", + "type": "wikidata" + } + ], + "id": "https://ror.org/04988re48", + "links": [ + { + "type": "website", + "value": "https://www.ipp.pt/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Polytechnic_Institute_of_Porto" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 41.14961, + "lng": -8.61099, + "name": "Porto" + }, + "geonames_id": 2735943 + } + ], + "names": [ + { + "lang": "pt", + "types": [ + "label" + ], + "value": "Instituto Politécnico do Porto" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Polytechnic Institute of Porto" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Porto Polytechnic" + } + ], + "relationships": [ + { + "label": "Instituto Superior de Engenharia do Porto", + "type": "child", + "id": "https://ror.org/04h7zpy51" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/049ctcj40.json b/v1.43/049ctcj40.json new file mode 100644 index 000000000..00b7cfd68 --- /dev/null +++ b/v1.43/049ctcj40.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 1642911, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -6.21462, + "lng": 106.84513, + "name": "Jakarta" + } + } + ], + "established": 1975, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q109911827" + ], + "preferred": "Q109911827" + } + ], + "id": "https://ror.org/049ctcj40", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://stmi.ac.id" + }, + { + "type": "wikipedia", + "value": "https://id.wikipedia.org/wiki/Politeknik_STMI" + } + ], + "names": [ + { + "value": "Politeknik STMI Jakarta", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "STMI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/049h9f890.json b/v1.43/049h9f890.json new file mode 100644 index 000000000..9bbadacf8 --- /dev/null +++ b/v1.43/049h9f890.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5964215, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.40008, + "lng": -72.73243, + "name": "Granby" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9536 9505" + ], + "preferred": "0000 0000 9536 9505" + }, + { + "type": "wikidata", + "all": [ + "Q3009996" + ], + "preferred": "Q3009996" + } + ], + "id": "https://ror.org/049h9f890", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cegepgranby.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/C%C3%A9gep_de_Granby" + } + ], + "names": [ + { + "value": "Cégep de Granby", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/049s0rh22.json b/v1.43/049s0rh22.json new file mode 100644 index 000000000..ca9d5f608 --- /dev/null +++ b/v1.43/049s0rh22.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1769, + "external_ids": [ + { + "all": [ + "100008299", + "100009231", + "100008300" + ], + "preferred": "100008299", + "type": "fundref" + }, + { + "all": [ + "grid.254880.3" + ], + "preferred": "grid.254880.3", + "type": "grid" + }, + { + "all": [ + "0000 0001 2179 2404" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q49116" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/049s0rh22", + "links": [ + { + "type": "website", + "value": "https://dartmouth.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Dartmouth_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.70229, + "lng": -72.28954, + "name": "Hanover" + }, + "geonames_id": 5087168 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Dartmouth College" + } + ], + "relationships": [ + { + "label": "Dartmouth Health", + "type": "child", + "id": "https://ror.org/01pa9ed26" + }, + { + "label": "Hubbard Brook Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/00mkh7345" + }, + { + "label": "Center for Open Neuroscience", + "type": "related", + "id": "https://ror.org/04tfhh831" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/04b404920.json b/v1.43/04b404920.json new file mode 100644 index 000000000..c0b7af64b --- /dev/null +++ b/v1.43/04b404920.json @@ -0,0 +1,123 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": 1899, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0144 8833" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q2646956" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.448744.f" + ], + "preferred": "grid.448744.f" + } + ], + "id": "https://ror.org/04b404920", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ash-berlin.eu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Alice_Salomon_University_of_Applied_Sciences_Berlin" + } + ], + "names": [ + { + "value": "Alice-Salomon-Hochschule Berlin", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Alice Salomon University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Alice Salomon Hochschule Berlin University of Applied Sciences", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ASH Berlin", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Alice Salomon University of Applied Sciences Berlin", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Alice Salomon Hochschule Berlin", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "ASH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institute for Productive Learning in Europe", + "type": "child", + "id": "https://ror.org/042jh8155" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04b57z061.json b/v1.43/04b57z061.json new file mode 100644 index 000000000..16d86f768 --- /dev/null +++ b/v1.43/04b57z061.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 5391811, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.71571, + "lng": -117.16472, + "name": "San Diego" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9465 4856" + ], + "preferred": "0000 0004 9465 4856" + }, + { + "type": "wikidata", + "all": [ + "Q45137754" + ], + "preferred": "Q45137754" + }, + { + "type": "fundref", + "all": [ + "100011231" + ], + "preferred": "100011231" + } + ], + "id": "https://ror.org/04b57z061", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://cwc.ucsd.edu" + } + ], + "names": [ + { + "value": "Center for Wireless Communications", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CWC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of California, San Diego", + "type": "parent", + "id": "https://ror.org/0168r3w48" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04b6nzv94.json b/v1.43/04b6nzv94.json new file mode 100644 index 000000000..bcd7e2b12 --- /dev/null +++ b/v1.43/04b6nzv94.json @@ -0,0 +1,148 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-06-22", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1980, + "external_ids": [ + { + "all": [ + "100005292", + "100008552" + ], + "preferred": "100005292", + "type": "fundref" + }, + { + "all": [ + "grid.62560.37" + ], + "preferred": "grid.62560.37", + "type": "grid" + }, + { + "all": [ + "0000 0004 0378 8294" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q2900977" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/04b6nzv94", + "links": [ + { + "type": "website", + "value": "http://www.brighamandwomens.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Brigham_and_Women%27s_Hospital" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.35843, + "lng": -71.05977, + "name": "Boston" + }, + "geonames_id": 4930956 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BWH" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Brigham and Women's Hospital" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "The Brigham" + } + ], + "relationships": [ + { + "label": "Center for Neuro-Oncology", + "type": "child", + "id": "https://ror.org/00z2tp793" + }, + { + "label": "Dana-Farber Brigham Cancer Center", + "type": "child", + "id": "https://ror.org/05rgrbr06" + }, + { + "label": "Harvard Affiliated Emergency Medicine Residency", + "type": "child", + "id": "https://ror.org/005m2at17" + }, + { + "label": "Mass General Brigham", + "type": "parent", + "id": "https://ror.org/04py2rh25" + }, + { + "label": "Broad Institute", + "type": "related", + "id": "https://ror.org/05a0ya142" + }, + { + "label": "Cape Cod Hospital", + "type": "related", + "id": "https://ror.org/04yd6pw26" + }, + { + "label": "Harvard University", + "type": "related", + "id": "https://ror.org/03vek6s52" + }, + { + "label": "VA Boston Healthcare System", + "type": "related", + "id": "https://ror.org/04v00sg98" + }, + { + "label": "Wyss Institute for Biologically Inspired Engineering", + "type": "related", + "id": "https://ror.org/008cfmj78" + }, + { + "label": "Osher Center for Integrative Medicine", + "type": "child", + "id": "https://ror.org/00wtrxf04" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/04b8d7j46.json b/v1.43/04b8d7j46.json new file mode 100644 index 000000000..a2731e435 --- /dev/null +++ b/v1.43/04b8d7j46.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1958, + "external_ids": [ + { + "all": [ + "grid.431274.7" + ], + "preferred": "grid.431274.7", + "type": "grid" + }, + { + "all": [ + "0000 0001 0719 9428" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q4750556" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/04b8d7j46", + "links": [ + { + "type": "website", + "value": "http://www.ambs.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Anabaptist_Mennonite_Biblical_Seminary" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.68199, + "lng": -85.97667, + "name": "Elkhart" + }, + "geonames_id": 4919987 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "AMBS" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Anabaptist Mennonite Biblical Seminary" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Associated Mennonite Biblical Seminary" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/04bdqq221.json b/v1.43/04bdqq221.json new file mode 100644 index 000000000..dcbc328e3 --- /dev/null +++ b/v1.43/04bdqq221.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 3125287, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.67019, + "lng": -7.41013, + "name": "Cervo" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.466596.e" + ], + "preferred": "grid.466596.e" + } + ], + "id": "https://ror.org/04bdqq221", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.concellodecervo.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Cervo,_Lugo" + } + ], + "names": [ + { + "value": "Concello de Cervo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ayuntamiento de Cervo", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04bgjpg77.json b/v1.43/04bgjpg77.json new file mode 100644 index 000000000..eee309a99 --- /dev/null +++ b/v1.43/04bgjpg77.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 1998, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9792 877X" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30261542" + ], + "preferred": "Q30261542" + }, + { + "type": "grid", + "all": [ + "grid.462744.7" + ], + "preferred": "grid.462744.7" + } + ], + "id": "https://ror.org/04bgjpg77", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lpgp.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Laboratoire de Physique des Gaz et des Plasmas", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratory of Gas and Plasma Physics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LPGP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04bkzce69.json b/v1.43/04bkzce69.json new file mode 100644 index 000000000..2c9d4e018 --- /dev/null +++ b/v1.43/04bkzce69.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.464070.1" + ], + "preferred": "grid.464070.1", + "type": "grid" + } + ], + "id": "https://ror.org/04bkzce69", + "links": [ + { + "type": "website", + "value": "http://inserm-u769.cep.u-psud.fr/index.php?lang=en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.76507, + "lng": 2.26655, + "name": "Châtenay-Malabry" + }, + "geonames_id": 3026108 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Laboratory Signaling and Cardiovascular Pathophysiology" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Singnalisation et physiopathologie cardiaque" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SCP" + } + ], + "relationships": [ + { + "label": "Délégation Paris 11", + "type": "parent", + "id": "https://ror.org/0589k3111" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/04cjmvv09.json b/v1.43/04cjmvv09.json new file mode 100644 index 000000000..4be389044 --- /dev/null +++ b/v1.43/04cjmvv09.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2654313, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.9724, + "lng": 0.77488, + "name": "Bures Saint Mary" + } + } + ], + "established": 1974, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7782 485X" + ], + "preferred": "0000 0004 7782 485X" + }, + { + "type": "fundref", + "all": [ + "100012354" + ], + "preferred": "100012354" + } + ], + "id": "https://ror.org/04cjmvv09", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.jfec.org.uk" + } + ], + "names": [ + { + "value": "Japan Foundation Endowment Committee", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "JFEC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04cwfse38.json b/v1.43/04cwfse38.json new file mode 100644 index 000000000..707a494e2 --- /dev/null +++ b/v1.43/04cwfse38.json @@ -0,0 +1,127 @@ +{ + "locations": [ + { + "geonames_id": 2110683, + "geonames_details": { + "country_code": "JP", + "country_name": "Japan", + "lat": 36.2, + "lng": 140.1, + "name": "Tsukuba" + } + } + ], + "established": 1963, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2151 1625" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006328" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.450301.3" + ], + "preferred": "grid.450301.3" + }, + { + "type": "wikidata", + "all": [ + "Q11657051" + ], + "preferred": "Q11657051" + } + ], + "id": "https://ror.org/04cwfse38", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bosai.go.jp" + } + ], + "names": [ + { + "value": "National Research Institute for Earth Science and Disaster Resilience", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Research Institute for Earth Science and Disaster Prevention", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ぼうさいかがくぎじゅつけんきゅうしょ", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ボウサイカガクギジュツケンキュウショ", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Bōsai Kagaku Gijutsu Kenkyūsho", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Bousai Kagaku Gijutsu Kenkyuusho", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "国立研究開発法人防災科学技術研究所", + "types": [ + "label" + ], + "lang": "ja" + }, + { + "value": "NIED", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04d2k2606.json b/v1.43/04d2k2606.json new file mode 100644 index 000000000..36277c708 --- /dev/null +++ b/v1.43/04d2k2606.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2656284, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 53.55, + "lng": -1.48333, + "name": "Barnsley" + } + } + ], + "established": 2004, + "external_ids": [], + "id": "https://ror.org/04d2k2606", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.luto.co.uk" + } + ], + "names": [ + { + "value": "Luto Research (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Luto Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Luto Research Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Luto Research Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Luto", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04d4pvt78.json b/v1.43/04d4pvt78.json new file mode 100644 index 000000000..971a6946d --- /dev/null +++ b/v1.43/04d4pvt78.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 4347778, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.29038, + "lng": -76.61219, + "name": "Baltimore" + } + } + ], + "established": 2004, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012306" + ], + "preferred": "100012306" + } + ], + "id": "https://ror.org/04d4pvt78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.hopkinscim.org" + } + ], + "names": [ + { + "value": "Center for Innovative Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Johns Hopkins Center for Innovative Medicine", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CIM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Johns Hopkins Medicine", + "type": "parent", + "id": "https://ror.org/037zgn354" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04e582786.json b/v1.43/04e582786.json new file mode 100644 index 000000000..a987865fd --- /dev/null +++ b/v1.43/04e582786.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30279561" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.34966.3e" + ], + "preferred": "grid.34966.3e" + } + ], + "id": "https://ror.org/04e582786", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iuee.eu/" + } + ], + "names": [ + { + "value": "Institut Universitari D'Estudis Europeus", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04e7rcy65.json b/v1.43/04e7rcy65.json new file mode 100644 index 000000000..54bdf0358 --- /dev/null +++ b/v1.43/04e7rcy65.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3390760, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -8.05389, + "lng": -34.88111, + "name": "Recife" + } + } + ], + "established": 1980, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0417 9458" + ], + "preferred": "0000 0004 0417 9458" + }, + { + "type": "wikidata", + "all": [ + "Q56841516" + ], + "preferred": "Q56841516" + } + ], + "id": "https://ror.org/04e7rcy65", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.for.edu.br" + } + ], + "names": [ + { + "value": "Faculdade de Odontologia do Recife", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Faculty of Dentistry of Recife", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FOR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04e874t64.json b/v1.43/04e874t64.json new file mode 100644 index 000000000..02e03efc0 --- /dev/null +++ b/v1.43/04e874t64.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 3169070, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 41.89193, + "lng": 12.51133, + "name": "Rome" + } + } + ], + "established": 2008, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1758 1809" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100004808" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q16249630" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.467365.5" + ], + "preferred": "grid.467365.5" + } + ], + "id": "https://ror.org/04e874t64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.eief.it/eief/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Einaudi_Institute_for_Economics_and_Finance" + } + ], + "names": [ + { + "value": "Einaudi Institute for Economics and Finance", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Istituto Einaudi per l'Economia e la Finanza", + "types": [ + "label" + ], + "lang": "it" + }, + { + "value": "EIEF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Bank of Italy", + "type": "related", + "id": "https://ror.org/03v2nbx43" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04ebbpp93.json b/v1.43/04ebbpp93.json new file mode 100644 index 000000000..5218f850b --- /dev/null +++ b/v1.43/04ebbpp93.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3173435, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + } + } + ], + "established": 1941, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8865 1297" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.433325.0" + ], + "preferred": "grid.433325.0" + }, + { + "type": "wikidata", + "all": [ + "Q30255830" + ], + "preferred": "Q30255830" + } + ], + "id": "https://ror.org/04ebbpp93", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.istitutospallanzani.it" + } + ], + "names": [ + { + "value": "Istituto Sperimentale Italiano Lazzaro Spallanzani", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Italian Experimental Institute Lazzaro Spallanzani", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04ect1284.json b/v1.43/04ect1284.json new file mode 100644 index 000000000..4bd657466 --- /dev/null +++ b/v1.43/04ect1284.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8306 8464" + ], + "preferred": "0000 0004 8306 8464" + }, + { + "type": "fundref", + "all": [ + "501100014335" + ], + "preferred": "501100014335" + } + ], + "id": "https://ror.org/04ect1284", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ed.ac.uk/usher/aukcar" + } + ], + "names": [ + { + "value": "Asthma UK Centre for Applied Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AUKCAR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Edinburgh", + "type": "parent", + "id": "https://ror.org/01nrxwf90" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04emwm605.json b/v1.43/04emwm605.json new file mode 100644 index 000000000..b33eee8d5 --- /dev/null +++ b/v1.43/04emwm605.json @@ -0,0 +1,163 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2000, + "external_ids": [ + { + "all": [ + "0000 0004 1754 8494" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100007034" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q1161666" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.410363.3" + ], + "preferred": "grid.410363.3", + "type": "grid" + } + ], + "id": "https://ror.org/04emwm605", + "links": [ + { + "type": "website", + "value": "https://www.thalesgroup.com/en" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Thales_Group" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Thales (France)" + } + ], + "relationships": [ + { + "label": "Gemalto (Netherlands)", + "type": "child", + "id": "https://ror.org/006sbr164" + }, + { + "label": "Thales (Australia)", + "type": "child", + "id": "https://ror.org/00f7vya03" + }, + { + "label": "Thales (Austria)", + "type": "child", + "id": "https://ror.org/02cs9t297" + }, + { + "label": "Thales (Belgium)", + "type": "child", + "id": "https://ror.org/017056r72" + }, + { + "label": "Thales (Brazil)", + "type": "child", + "id": "https://ror.org/03sss6f31" + }, + { + "label": "Thales (Canada)", + "type": "child", + "id": "https://ror.org/00nnd3206" + }, + { + "label": "Thales (Germany)", + "type": "child", + "id": "https://ror.org/031xjr712" + }, + { + "label": "Thales (Italy)", + "type": "child", + "id": "https://ror.org/00rwwx648" + }, + { + "label": "Thales (Netherlands)", + "type": "child", + "id": "https://ror.org/032tp7158" + }, + { + "label": "Thales (Norway)", + "type": "child", + "id": "https://ror.org/05gey1s27" + }, + { + "label": "Thales (Portugal)", + "type": "child", + "id": "https://ror.org/051w1mx35" + }, + { + "label": "Thales (Spain)", + "type": "child", + "id": "https://ror.org/03340ra78" + }, + { + "label": "Thales (United Kingdom)", + "type": "child", + "id": "https://ror.org/00r8j9489" + }, + { + "label": "Thales (United States)", + "type": "child", + "id": "https://ror.org/00ysvtr77" + }, + { + "label": "Laboratoire Albert Fert", + "type": "child", + "id": "https://ror.org/02erddr56" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/04eq6rh16.json b/v1.43/04eq6rh16.json new file mode 100644 index 000000000..c16e8efac --- /dev/null +++ b/v1.43/04eq6rh16.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1963, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q67201734" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.510867.d" + ], + "preferred": "grid.510867.d" + } + ], + "id": "https://ror.org/04eq6rh16", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://sebbm.es" + } + ], + "names": [ + { + "value": "Spanish Society of Biochemistry and Molecular Biology", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Sociedad Española de Bioquímica y Biología Molecular", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "SEBBM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04ews3245.json b/v1.43/04ews3245.json new file mode 100644 index 000000000..0f5d9757f --- /dev/null +++ b/v1.43/04ews3245.json @@ -0,0 +1,131 @@ +{ + "locations": [ + { + "geonames_id": 2934246, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 51.22172, + "lng": 6.77616, + "name": "Düsseldorf" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0492 602X" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.429051.b" + ], + "preferred": "grid.429051.b" + }, + { + "type": "wikidata", + "all": [ + "Q1205596" + ], + "preferred": "Q1205596" + } + ], + "id": "https://ror.org/04ews3245", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ddz.de" + } + ], + "names": [ + { + "value": "Deutsches Diabetes-Zentrum e.V.", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Leibniz-Zentrum für Diabetes-Forschung an der Heinrich-Heine-Universität Düsseldorf", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Leibniz Center for Diabetes Research at the Heinrich Heine University Düsseldorf", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "German Diabetes Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DDFG e.V.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DDZ German Diabetes Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Deutsches Diabetes-Zentrum", + "types": [ + "label" + ], + "lang": "de" + }, + { + "value": "DDZ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Heinrich Heine University Düsseldorf", + "type": "parent", + "id": "https://ror.org/024z2rq82" + }, + { + "label": "Leibniz Association", + "type": "parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04f18cg29.json b/v1.43/04f18cg29.json new file mode 100644 index 000000000..1d558d4c5 --- /dev/null +++ b/v1.43/04f18cg29.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 7498240, + "geonames_details": { + "country_code": "IL", + "country_name": "Israel", + "lat": 31.78199, + "lng": 35.21961, + "name": "West Jerusalem" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0631 158X" + ], + "preferred": "0000 0004 0631 158X" + }, + { + "type": "wikidata", + "all": [ + "Q12406716" + ], + "preferred": "Q12406716" + } + ], + "id": "https://ror.org/04f18cg29", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://idi.org.il" + } + ], + "names": [ + { + "value": "Israel Democracy Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "המכון הישראלי לדמוקרטיה", + "types": [ + "label" + ], + "lang": "he" + }, + { + "value": "IDI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04f6hmf16.json b/v1.43/04f6hmf16.json new file mode 100644 index 000000000..b5bf7dea2 --- /dev/null +++ b/v1.43/04f6hmf16.json @@ -0,0 +1,121 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2013, + "external_ids": [ + { + "all": [ + "Q2476558" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.468967.2" + ], + "preferred": "grid.468967.2", + "type": "grid" + } + ], + "id": "https://ror.org/04f6hmf16", + "links": [ + { + "type": "website", + "value": "http://www.languedoc-roussillon-universites.fr/index.php" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Languedoc-Roussillon_Universities" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Languedoc-Roussillon Universities" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "COMUE Languedoc-Roussillon Universités" + } + ], + "relationships": [ + { + "label": "National School of Architecture of Montpellier", + "type": "related", + "id": "https://ror.org/008axfh28" + }, + { + "label": "IMT Mines Alès", + "type": "related", + "id": "https://ror.org/03e8rf594" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "child", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Agro Montpellier", + "type": "child", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "University of Montpellier", + "type": "child", + "id": "https://ror.org/051escj72" + }, + { + "label": "University of Nîmes", + "type": "child", + "id": "https://ror.org/044t4x544" + }, + { + "label": "University of Perpignan", + "type": "child", + "id": "https://ror.org/03am2jy38" + }, + { + "label": "Université Paul-Valéry Montpellier", + "type": "child", + "id": "https://ror.org/00qhdy563" + }, + { + "label": "École Nationale Supérieure de Chimie de Montpellier", + "type": "child", + "id": "https://ror.org/03sgyqj04" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/v1.43/04f7h3b65.json b/v1.43/04f7h3b65.json new file mode 100644 index 000000000..106137886 --- /dev/null +++ b/v1.43/04f7h3b65.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 3427500, + "geonames_details": { + "country_code": "AR", + "country_name": "Argentina", + "lat": -34.45505, + "lng": -58.54614, + "name": "Victoria" + } + } + ], + "established": 1988, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2325 2241" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5242548" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.441741.3" + ], + "preferred": "grid.441741.3" + } + ], + "id": "https://ror.org/04f7h3b65", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.udesa.edu.ar/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_San_Andr%C3%A9s" + } + ], + "names": [ + { + "value": "University of San Andrés", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidad de San Andrés", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "Université de san andrés", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "UDESA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04fab7w85.json b/v1.43/04fab7w85.json new file mode 100644 index 000000000..1fcff00d8 --- /dev/null +++ b/v1.43/04fab7w85.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 2740637, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 40.20564, + "lng": -8.41955, + "name": "Coimbra" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100014071" + ], + "preferred": "501100014071" + } + ], + "id": "https://ror.org/04fab7w85", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ces.uc.pt" + } + ], + "names": [ + { + "value": "Centro de Estudos Sociais", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universidade de Coimbra Centro de Estudos Sociais", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Centro de Estudos Sociais de Universidade de Coimbra", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Coimbra Centre for Social Studies", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Coimbra", + "type": "parent", + "id": "https://ror.org/04z8k9a98" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04feqxb79.json b/v1.43/04feqxb79.json new file mode 100644 index 000000000..e29bf52c0 --- /dev/null +++ b/v1.43/04feqxb79.json @@ -0,0 +1,102 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1974, + "external_ids": [ + { + "all": [ + "501100010604" + ], + "preferred": "501100010604", + "type": "fundref" + }, + { + "all": [ + "grid.459846.2" + ], + "preferred": "grid.459846.2", + "type": "grid" + }, + { + "all": [ + "0000 0004 0611 7306" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1672389" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/04feqxb79", + "links": [ + { + "type": "website", + "value": "http://www.aeoi.org.ir/Portal/Home/Default.aspx?CategoryID=3fe2bc57-c1a6-47dc-9d1d-e1290fe3ad77" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Atomic_Energy_Organization_of_Iran" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IR", + "country_name": "Iran", + "lat": 35.69439, + "lng": 51.42151, + "name": "Tehran" + }, + "geonames_id": 112931 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "AEOI" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Atomic Energy Organization of Iran" + }, + { + "lang": "fa", + "types": [ + "label" + ], + "value": "سازمان انرژی اتمی ایران" + } + ], + "relationships": [ + { + "label": "Nuclear Science and Technology Research Institute", + "type": "child", + "id": "https://ror.org/05cebxq10" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/04fg9pk96.json b/v1.43/04fg9pk96.json new file mode 100644 index 000000000..244f863d7 --- /dev/null +++ b/v1.43/04fg9pk96.json @@ -0,0 +1,131 @@ +{ + "locations": [ + { + "geonames_id": 6167865, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.70643, + "lng": -79.39864, + "name": "Toronto" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0721 7876" + ], + "preferred": "0000 0001 0721 7876" + }, + { + "type": "wikidata", + "all": [ + "Q3315245" + ], + "preferred": "Q3315245" + }, + { + "type": "fundref", + "all": [ + "100016329" + ], + "preferred": "100016329" + } + ], + "id": "https://ror.org/04fg9pk96", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ontario.ca/page/ministry-education" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Education_%28Ontario%29" + } + ], + "names": [ + { + "value": "Ministry of Education", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Education of Ontario", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Education, Government of Ontario", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministère de l’Éducation, Gouvernement de l’Ontario", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ontario Ministry of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministère de l'Éducation de l'Ontario", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministère de l'Éducation", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "EDU", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "MEO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04fpz9t23.json b/v1.43/04fpz9t23.json new file mode 100644 index 000000000..f67e12721 --- /dev/null +++ b/v1.43/04fpz9t23.json @@ -0,0 +1,66 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5901 7034" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100005141" + ], + "preferred": "501100005141" + }, + { + "type": "grid", + "all": [ + "grid.469326.c" + ], + "preferred": "grid.469326.c" + } + ], + "id": "https://ror.org/04fpz9t23", + "domains": [], + "links": [], + "names": [ + { + "value": "BabelFamily", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04frf8n21.json b/v1.43/04frf8n21.json new file mode 100644 index 000000000..19a88690a --- /dev/null +++ b/v1.43/04frf8n21.json @@ -0,0 +1,117 @@ +{ + "locations": [ + { + "geonames_id": 1528675, + "geonames_details": { + "country_code": "KG", + "country_name": "Kyrgyzstan", + "lat": 42.87, + "lng": 74.59, + "name": "Bishkek" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 4627" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q52669993" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.444269.9" + ], + "preferred": "grid.444269.9" + } + ], + "id": "https://ror.org/04frf8n21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://manas.edu.kg" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Manas_University" + } + ], + "names": [ + { + "value": "Kyrgyz-Türkish Manas Üniversity", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Manas University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Kyrgyz-Turkish Manas University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Kırgızistan-Türkiye Manas Üniversitesi", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Кыргыз-Түрк «Манас» университети", + "types": [ + "label" + ], + "lang": "ky" + }, + { + "value": "Кыргызско-Турецкий университет «Манас»", + "types": [ + "label" + ], + "lang": "ru" + }, + { + "value": "KTMU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04frvgs13.json b/v1.43/04frvgs13.json new file mode 100644 index 000000000..93030f781 --- /dev/null +++ b/v1.43/04frvgs13.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2024-02-13", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1862, + "external_ids": [ + { + "all": [ + "100014116" + ], + "preferred": "100014116", + "type": "fundref" + }, + { + "all": [ + "0000 0001 2167 9954" + ], + "preferred": "0000 0001 2167 9954", + "type": "isni" + }, + { + "all": [ + "Q7094936" + ], + "preferred": "Q7094936", + "type": "wikidata" + } + ], + "id": "https://ror.org/04frvgs13", + "links": [ + { + "type": "website", + "value": "https://ovc.uoguelph.ca" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ontario_Veterinary_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 43.54594, + "lng": -80.25599, + "name": "Guelph" + }, + "geonames_id": 5967629 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "OVC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Ontario Veterinary College" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "University of Guelph Ontario Veterinary College" + } + ], + "relationships": [ + { + "label": "University of Guelph", + "type": "parent", + "id": "https://ror.org/01r7awg59" + }, + { + "label": "OVC Pet Trust", + "type": "child", + "id": "https://ror.org/02stdqb15" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/04fzs4293.json b/v1.43/04fzs4293.json new file mode 100644 index 000000000..d98a15c57 --- /dev/null +++ b/v1.43/04fzs4293.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2648579, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.86515, + "lng": -4.25763, + "name": "Glasgow" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0629 7087" + ], + "preferred": "0000 0004 0629 7087" + }, + { + "type": "fundref", + "all": [ + "100011776" + ], + "preferred": "100011776" + } + ], + "id": "https://ror.org/04fzs4293", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mndscotland.org.uk" + } + ], + "names": [ + { + "value": "MND Scotland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Motor Neuron Disease Scotland", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04fzwnh64.json b/v1.43/04fzwnh64.json new file mode 100644 index 000000000..16edf2acf --- /dev/null +++ b/v1.43/04fzwnh64.json @@ -0,0 +1,114 @@ +{ + "locations": [ + { + "geonames_id": 4887398, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.85003, + "lng": -87.65005, + "name": "Chicago" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4683 9645" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.490348.2" + ], + "preferred": "grid.490348.2" + }, + { + "type": "wikidata", + "all": [ + "Q50036890" + ], + "preferred": "Q50036890" + } + ], + "id": "https://ror.org/04fzwnh64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nm.org/" + } + ], + "names": [ + { + "value": "Northwestern Medicine", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Northwestern Memorial HealthCare", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Central DuPage Hospital", + "type": "child", + "id": "https://ror.org/00g1rc256" + }, + { + "label": "LivingWell Cancer Resource Center", + "type": "child", + "id": "https://ror.org/007nfvg13" + }, + { + "label": "Marianjoy Rehabilitation Hospital", + "type": "child", + "id": "https://ror.org/03m5bv793" + }, + { + "label": "Northwestern Medicine Lake Forest Hospital", + "type": "child", + "id": "https://ror.org/03fhrtz10" + }, + { + "label": "Northwestern Memorial Hospital", + "type": "child", + "id": "https://ror.org/009543z50" + }, + { + "label": "Robert H. Lurie Comprehensive Cancer Center of Northwestern University", + "type": "child", + "id": "https://ror.org/02p4far57" + }, + { + "label": "Northwestern University", + "type": "related", + "id": "https://ror.org/000e0be47" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04g1a0w27.json b/v1.43/04g1a0w27.json new file mode 100644 index 000000000..35105e1c5 --- /dev/null +++ b/v1.43/04g1a0w27.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 4553433, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 36.15398, + "lng": -95.99277, + "name": "Tulsa" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0386 8892" + ], + "preferred": "0000 0004 0386 8892" + }, + { + "type": "wikidata", + "all": [ + "Q39056078" + ], + "preferred": "Q39056078" + } + ], + "id": "https://ror.org/04g1a0w27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ou.edu/tulsa" + } + ], + "names": [ + { + "value": "University of Oklahoma - Tulsa", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Oklahoma - Tulsa Schusterman Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OU - Tulsa Schusterman Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Oklahoma at Tulsa", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Oklahoma", + "type": "parent", + "id": "https://ror.org/02aqsxs83" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04gww2j56.json b/v1.43/04gww2j56.json new file mode 100644 index 000000000..a5c06f974 --- /dev/null +++ b/v1.43/04gww2j56.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 2618425, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 55.67594, + "lng": 12.56553, + "name": "Copenhagen" + } + } + ], + "established": 1982, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7478 7897" + ], + "preferred": "0000 0004 7478 7897" + }, + { + "type": "wikidata", + "all": [ + "Q27430020" + ], + "preferred": "Q27430020" + }, + { + "type": "fundref", + "all": [ + "501100010344" + ], + "preferred": "501100010344" + } + ], + "id": "https://ror.org/04gww2j56", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://louis-hansenfonden.dk" + } + ], + "names": [ + { + "value": "Aage og Johanne Louis-Hansens Fond", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Aage og Johanne Louis-Hansens Familiefond", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Aage og Johanne Louis-Hansen ApS", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Aage and Johanne Louis-Hansen's Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04gz5mr64.json b/v1.43/04gz5mr64.json new file mode 100644 index 000000000..48200215f --- /dev/null +++ b/v1.43/04gz5mr64.json @@ -0,0 +1,72 @@ +{ + "locations": [ + { + "geonames_id": 993800, + "geonames_details": { + "country_code": "ZA", + "country_name": "South Africa", + "lat": -26.20227, + "lng": 28.04363, + "name": "Johannesburg" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100016961" + ], + "preferred": "100016961" + } + ], + "id": "https://ror.org/04gz5mr64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nihss.ac.za" + } + ], + "names": [ + { + "value": "National Institute for the Humanities and Social Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Institute for the Humanities and Social Sciences, South Africa", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NIHSS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04h7zpy51.json b/v1.43/04h7zpy51.json new file mode 100644 index 000000000..7911df998 --- /dev/null +++ b/v1.43/04h7zpy51.json @@ -0,0 +1,67 @@ +{ + "locations": [ + { + "geonames_id": 2736680, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 41.17289, + "lng": -8.59931, + "name": "Paranhos" + } + } + ], + "established": 1852, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q3152860" + ], + "preferred": "Q3152860" + } + ], + "id": "https://ror.org/04h7zpy51", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.isep.pt" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Instituto_Superior_de_Engenharia_do_Porto" + } + ], + "names": [ + { + "value": "Instituto Superior de Engenharia do Porto", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Polytechnic Institute of Porto", + "type": "parent", + "id": "https://ror.org/04988re48" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04hh1k009.json b/v1.43/04hh1k009.json new file mode 100644 index 000000000..c46c81700 --- /dev/null +++ b/v1.43/04hh1k009.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0281 4136" + ], + "preferred": "0000 0005 0281 4136" + }, + { + "type": "fundref", + "all": [ + "100017147" + ], + "preferred": "100017147" + } + ], + "id": "https://ror.org/04hh1k009", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.progressivemsalliance.org" + } + ], + "names": [ + { + "value": "International Progressive MS Alliance", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "International Progressive Multiple Sclerosis Alliance", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Multiple Sclerosis International Federation", + "type": "parent", + "id": "https://ror.org/052gp0981" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04hp1ky92.json b/v1.43/04hp1ky92.json new file mode 100644 index 000000000..d0ec8a3ae --- /dev/null +++ b/v1.43/04hp1ky92.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 3165524, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.07049, + "lng": 7.68682, + "name": "Turin" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/04hp1ky92", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ecs-nodes.eu" + } + ], + "names": [ + { + "value": "NODES S.c.a.r.l", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NODES - Nord Ovest Digitale E Sostenibile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Nord Ovest Digitale E Sostenibile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "HUB NODES S.c.a.r.l", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NODES", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Polytechnic University of Turin", + "type": "related", + "id": "https://ror.org/00bgk9508" + }, + { + "label": "University of Turin", + "type": "related", + "id": "https://ror.org/048tbm396" + }, + { + "label": "University of Eastern Piedmont Amadeo Avogadro", + "type": "related", + "id": "https://ror.org/04387x656" + }, + { + "label": "University of Insubria", + "type": "related", + "id": "https://ror.org/00s409261" + }, + { + "label": "University of Aosta Valley", + "type": "related", + "id": "https://ror.org/03126ng80" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04htg4q18.json b/v1.43/04htg4q18.json new file mode 100644 index 000000000..a76f68b4f --- /dev/null +++ b/v1.43/04htg4q18.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 98463, + "geonames_details": { + "country_code": "IQ", + "country_name": "Iraq", + "lat": 35.56496, + "lng": 45.4329, + "name": "Sulaymaniyah" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0277 0727" + ], + "preferred": "0000 0005 0277 0727" + } + ], + "id": "https://ror.org/04htg4q18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://chu.edu.iq" + } + ], + "names": [ + { + "value": "Charmo University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "زانکۆی چەرموو", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ChU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04hwsx993.json b/v1.43/04hwsx993.json new file mode 100644 index 000000000..cfc41b0d0 --- /dev/null +++ b/v1.43/04hwsx993.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2637487, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 50.90395, + "lng": -1.40428, + "name": "Southampton" + } + } + ], + "established": 1968, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6428 5500" + ], + "preferred": "0000 0004 6428 5500" + }, + { + "type": "wikidata", + "all": [ + "Q45136919" + ], + "preferred": "Q45136919" + }, + { + "type": "fundref", + "all": [ + "100012166" + ], + "preferred": "100012166" + } + ], + "id": "https://ror.org/04hwsx993", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.kerkut-trust.org.uk" + } + ], + "names": [ + { + "value": "Gerald Kerkut Charitable Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04jhswv08.json b/v1.43/04jhswv08.json new file mode 100644 index 000000000..f56776563 --- /dev/null +++ b/v1.43/04jhswv08.json @@ -0,0 +1,108 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1900, + "external_ids": [ + { + "all": [ + "0000 0001 0723 0931" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100006507", + "501100006508" + ], + "preferred": "501100006507", + "type": "fundref" + }, + { + "all": [ + "Q2474815" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.418068.3" + ], + "preferred": "grid.418068.3", + "type": "grid" + } + ], + "id": "https://ror.org/04jhswv08", + "links": [ + { + "type": "website", + "value": "https://portal.fiocruz.br" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Oswaldo_Cruz_Foundation" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -22.90642, + "lng": -43.18223, + "name": "Rio de Janeiro" + }, + "geonames_id": 3451190 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Fundação Oswaldo Cruz" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Oswaldo Cruz Foundation" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "FIOCRUZ" + } + ], + "relationships": [ + { + "label": "Escola Nacional de Saúde Pública", + "type": "child", + "id": "https://ror.org/02xm1d907" + }, + { + "label": "Plataforma Internacional para Ciência, Tecnologia e Inovação em Saúde", + "type": "related", + "id": "https://ror.org/014fbxn93" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/04k1qv985.json b/v1.43/04k1qv985.json new file mode 100644 index 000000000..33dee1033 --- /dev/null +++ b/v1.43/04k1qv985.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1987, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6096 8320" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.509567.8" + ], + "preferred": "grid.509567.8" + } + ], + "id": "https://ror.org/04k1qv985", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lipotec.com/" + } + ], + "names": [ + { + "value": "Lipotec (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Lubrizol Life Science Health (United States)", + "type": "successor", + "id": "https://ror.org/03kp1tb17" + } + ], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04k8k6n84.json b/v1.43/04k8k6n84.json new file mode 100644 index 000000000..a9615de54 --- /dev/null +++ b/v1.43/04k8k6n84.json @@ -0,0 +1,135 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1975, + "external_ids": [ + { + "all": [ + "0000 0004 0473 5039" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q280183" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.9156.b" + ], + "preferred": "grid.9156.b", + "type": "grid" + } + ], + "id": "https://ror.org/04k8k6n84", + "links": [ + { + "type": "website", + "value": "http://www.serfa.fr/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Upper_Alsace" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 47.75205, + "lng": 7.32866, + "name": "Mulhouse" + }, + "geonames_id": 2991214 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Upper Alsace" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de Haute-Alsace" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UHA" + } + ], + "relationships": [ + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Institut de Sciences des Matériaux de Mulhouse", + "type": "child", + "id": "https://ror.org/012wxdw12" + }, + { + "label": "Laboratoire de Photochimie et d'Ingénierie Macromoléculaire", + "type": "child", + "id": "https://ror.org/02t1cke57" + }, + { + "label": "Maison Interuniversitaire des Sciences de l'Homme", + "type": "child", + "id": "https://ror.org/02jm89840" + }, + { + "label": "Laboratoire Interuniversitaire des Sciences de l'Education et de la Communication", + "type": "child", + "id": "https://ror.org/04n2vwk08" + }, + { + "label": "Centre de REcherche En Gestion des Organisations", + "type": "child", + "id": "https://ror.org/0292fgv83" + }, + { + "label": "Laboratoire d'innovation moléculaire et applications", + "type": "child", + "id": "https://ror.org/030d6wr93" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/04kdfz702.json b/v1.43/04kdfz702.json new file mode 100644 index 000000000..470248a09 --- /dev/null +++ b/v1.43/04kdfz702.json @@ -0,0 +1,379 @@ +{ + "locations": [ + { + "geonames_id": 2978179, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.79395, + "lng": 2.49323, + "name": "Saint-Maur-des-Fossés" + } + } + ], + "established": 1985, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2154 1736" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100004617" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.452348.c" + ], + "preferred": "grid.452348.c" + } + ], + "id": "https://ror.org/04kdfz702", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.insu.cnrs.fr/en" + } + ], + "names": [ + { + "value": "Institut National des Sciences de l'Univers", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INSU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "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": "Géoazur", + "type": "child", + "id": "https://ror.org/05xtktk35" + }, + { + "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 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 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": "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": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Laboratory of Astrophysics of Bordeaux", + "type": "child", + "id": "https://ror.org/00yee3n23" + }, + { + "label": "Laboratoire d'Océanographie Microbienne", + "type": "child", + "id": "https://ror.org/05nk54s89" + }, + { + "label": "Laboratoire d’études spatiales et d’instrumentation en astrophysique", + "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 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": "Systèmes de Référence Temps-Espace", + "type": "child", + "id": "https://ror.org/03tdef037" + }, + { + "label": "Laboratoire d’Océanographie de Villefranche", + "type": "child", + "id": "https://ror.org/05r5y6641" + }, + { + "label": "Observatoire des Sciences de l'Univers Nantes Atlantique", + "type": "child", + "id": "https://ror.org/02w0vb190" + }, + { + "label": "Observatoire des Sciences de l'Univers de Grenoble", + "type": "child", + "id": "https://ror.org/03vte9x46" + }, + { + "label": "École & Observatoire des Sciences de la Terre", + "type": "child", + "id": "https://ror.org/030qxve40" + }, + { + "label": "Institut Terre & Environnement de Strasbourg", + "type": "child", + "id": "https://ror.org/0530qwm02" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04kn56m50.json b/v1.43/04kn56m50.json new file mode 100644 index 000000000..dbb0b1fa0 --- /dev/null +++ b/v1.43/04kn56m50.json @@ -0,0 +1,112 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4670 2593" + ], + "preferred": "0000 0004 4670 2593" + }, + { + "type": "wikidata", + "all": [ + "Q105169356" + ], + "preferred": "Q105169356" + }, + { + "type": "fundref", + "all": [ + "501100002418" + ], + "preferred": "501100002418" + } + ], + "id": "https://ror.org/04kn56m50", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://zh.wikipedia.org/wiki/%E4%B8%AD%E5%9B%BD%E5%8C%BB%E5%AD%A6%E7%A7%91%E5%AD%A6%E9%99%A2%E8%8D%AF%E7%89%A9%E7%A0%94%E7%A9%B6%E6%89%80" + } + ], + "names": [ + { + "value": "Institute of Chinese Materia Medica", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "China Academy of Chinese Medical Sciences Institute of Materia Medica", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中国医学科学院药物研究所", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "IMM", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CAMS&PUMC IMM", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CAMS IMM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Chinese Academy of Medical Sciences & Peking Union Medical College", + "type": "parent", + "id": "https://ror.org/02drdmm93" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04kpdmm83.json b/v1.43/04kpdmm83.json new file mode 100644 index 000000000..33b4d2ad4 --- /dev/null +++ b/v1.43/04kpdmm83.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 143073, + "geonames_details": { + "country_code": "IR", + "country_name": "Iran", + "lat": 32.31001, + "lng": 54.01747, + "name": "Ardakān" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7425 0037" + ], + "preferred": "0000 0004 7425 0037" + }, + { + "type": "fundref", + "all": [ + "100019272" + ], + "preferred": "100019272" + } + ], + "id": "https://ror.org/04kpdmm83", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ardakan.ac.ir" + } + ], + "names": [ + { + "value": "Ardakan University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "دانشگاه اردکان", + "types": [ + "label" + ], + "lang": "fa" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04m2z2476.json b/v1.43/04m2z2476.json new file mode 100644 index 000000000..2a0da5cdc --- /dev/null +++ b/v1.43/04m2z2476.json @@ -0,0 +1,69 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/04m2z2476", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.aku.edu" + } + ], + "names": [ + { + "value": "The Aga Khan University (International) in the United Kingdom", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "The Aga Khan University in the United Kingdom", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Aga Khan University in the United Kingdom", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Aga Khan University", + "type": "parent", + "id": "https://ror.org/03gd0dm95" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04ma29860.json b/v1.43/04ma29860.json new file mode 100644 index 000000000..317047e5f --- /dev/null +++ b/v1.43/04ma29860.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2964574, + "geonames_details": { + "country_code": "IE", + "country_name": "Ireland", + "lat": 53.33306, + "lng": -6.24889, + "name": "Dublin" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0510 4503" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.494077.9" + ], + "preferred": "grid.494077.9" + } + ], + "id": "https://ror.org/04ma29860", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.fishinginireland.info/" + } + ], + "names": [ + { + "value": "Fishing in Ireland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Central Fisheries Board", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inland Fisheries Ireland", + "type": "successor", + "id": "https://ror.org/022rydv31" + } + ], + "status": "inactive", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04marky29.json b/v1.43/04marky29.json new file mode 100644 index 000000000..72d226594 --- /dev/null +++ b/v1.43/04marky29.json @@ -0,0 +1,133 @@ +{ + "locations": [ + { + "geonames_id": 2761369, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.20849, + "lng": 16.37208, + "name": "Vienna" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0515 0868", + "0000 0005 1089 9897" + ], + "preferred": "0000 0005 1089 9897" + }, + { + "type": "fundref", + "all": [ + "501100004956", + "100018774" + ], + "preferred": "100018774" + }, + { + "type": "wikidata", + "all": [ + "Q871765" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.454185.9" + ], + "preferred": "grid.454185.9" + } + ], + "id": "https://ror.org/04marky29", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://bmk.gv.at" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Transport_(Austria)" + } + ], + "names": [ + { + "value": "Bundesministerium für Klimaschutz, Umwelt, Energie, Mobilität, Innovation und Technologie", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Transport", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Federal Ministry for Climate Action, Environment, Energy, Mobility, Innovation and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Austrian Ministry of Climate Action, Environment, Energy, Mobility, Innovation and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Federal Ministry for Transport, Innovation and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Bundesministerium für Verkehr, Innovation und Technologie", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Climate Action, Environment, Energy, Mobility, Innovation and Technology", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "BMVIT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04mb62065.json b/v1.43/04mb62065.json new file mode 100644 index 000000000..88a88d9fa --- /dev/null +++ b/v1.43/04mb62065.json @@ -0,0 +1,80 @@ +{ + "locations": [ + { + "geonames_id": 1625822, + "geonames_details": { + "country_code": "ID", + "country_name": "Indonesia", + "lat": -7.24917, + "lng": 112.75083, + "name": "Surabaya" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100016139", + "501100014823" + ], + "preferred": "501100016139" + } + ], + "id": "https://ror.org/04mb62065", + "domains": [], + "links": [], + "names": [ + { + "value": "Direktorat Riset Dan Pengabdian Kepada Masyarakat", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DRPM – Kemenristekdikti", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Directorate of Research and Community Service – Ministry of Research, Technology and Higher Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DRPM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Research and Innovation Agency", + "type": "parent", + "id": "https://ror.org/02hmjzt55" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04n0g0b29.json b/v1.43/04n0g0b29.json new file mode 100644 index 000000000..c93cf3007 --- /dev/null +++ b/v1.43/04n0g0b29.json @@ -0,0 +1,186 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2172 2676" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100018967" + ], + "preferred": "100018967" + }, + { + "type": "wikidata", + "all": [ + "Q24543" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5612.0" + ], + "preferred": "grid.5612.0" + } + ], + "id": "https://ror.org/04n0g0b29", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.upf.edu/en/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Pompeu_Fabra_University" + } + ], + "names": [ + { + "value": "Pompeu Fabra University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Universitat Pompeu Fabra, Barcelona", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universitat Pompeu Fabra", + "types": [ + "label" + ], + "lang": "ca" + }, + { + "value": "Universidad Pompeu Fabra", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "UPF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Institut de Biologia Evolutiva", + "type": "child", + "id": "https://ror.org/044mj7r89" + }, + { + "label": "Barcelona School of Economics", + "type": "related", + "id": "https://ror.org/02k09n368" + }, + { + "label": "Centre de Recerca en Economia Internacional", + "type": "related", + "id": "https://ror.org/0241avf06" + }, + { + "label": "Centre for Genomic Regulation", + "type": "related", + "id": "https://ror.org/03wyzt892" + }, + { + "label": "Institut Barcelona d'Estudis Internacionals", + "type": "related", + "id": "https://ror.org/05rke5d69" + }, + { + "label": "Barcelona Institute for Global Health", + "type": "related", + "id": "https://ror.org/03hjgt059" + }, + { + "label": "Hospital del Mar Research Institute", + "type": "related", + "id": "https://ror.org/042nkmz09" + }, + { + "label": "Barcelona Biomedical Research Park", + "type": "related", + "id": "https://ror.org/05sajct49" + }, + { + "label": "Institut de Política Econòmica i Governança", + "type": "child", + "id": "https://ror.org/03wbt1f24" + }, + { + "label": "Escola Superior de Comerç Internacional", + "type": "child", + "id": "https://ror.org/033m8p353" + }, + { + "label": "Escola Superior d'Infermeria del Mar", + "type": "child", + "id": "https://ror.org/04jp88086" + }, + { + "label": "BIST Dolors Aleu Graduate Centre", + "type": "child", + "id": "https://ror.org/037tawy03" + }, + { + "label": "UPF Barcelona School of Management", + "type": "child", + "id": "https://ror.org/04m3cqq68" + }, + { + "label": "TecnoCampus", + "type": "child", + "id": "https://ror.org/05193xx52" + }, + { + "label": "Barcelonaβeta Brain Research Center", + "type": "child", + "id": "https://ror.org/03k4wdb90" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04n3e7v86.json b/v1.43/04n3e7v86.json new file mode 100644 index 000000000..7613679df --- /dev/null +++ b/v1.43/04n3e7v86.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 1886760, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.30408, + "lng": 120.59538, + "name": "Suzhou" + } + } + ], + "established": 2020, + "external_ids": [], + "id": "https://ror.org/04n3e7v86", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.sdhmdp.com" + } + ], + "names": [ + { + "value": "The Fourth Affiliated Hospital of Soochow University (Suzhou Dushu Lake Hospital)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "The Fourth Affiliated Hospital of Soochow University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Suzhou Dushu Lake Hospital", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "苏州大学附属第四医院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "苏州市独墅湖医院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "苏州大学附属第四医院 (苏州市独墅湖医院)", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "SDH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04nm1cv11.json b/v1.43/04nm1cv11.json new file mode 100644 index 000000000..efa8d42d3 --- /dev/null +++ b/v1.43/04nm1cv11.json @@ -0,0 +1,138 @@ +{ + "locations": [ + { + "geonames_id": 2654675, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.45523, + "lng": -2.59665, + "name": "Bristol" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0380 7336" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100012141" + ], + "preferred": "100012141" + }, + { + "type": "wikidata", + "all": [ + "Q17028004" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.410421.2" + ], + "preferred": "grid.410421.2" + } + ], + "id": "https://ror.org/04nm1cv11", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.uhbristol.nhs.uk/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_Hospitals_Bristol_NHS_Foundation_Trust" + } + ], + "names": [ + { + "value": "University Hospitals Bristol NHS Foundation Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Bristol Eye Hospital", + "type": "child", + "id": "https://ror.org/01w151e64" + }, + { + "label": "Bristol General Hospital", + "type": "child", + "id": "https://ror.org/00h3hwc05" + }, + { + "label": "Bristol Royal Hospital for Children", + "type": "child", + "id": "https://ror.org/01qgecw57" + }, + { + "label": "Bristol Royal Infirmary", + "type": "child", + "id": "https://ror.org/031p4kj21" + }, + { + "label": "NIHR Bristol Biomedical Research Centre", + "type": "child", + "id": "https://ror.org/02mtt1z51" + }, + { + "label": "NIHR Bristol Cardiovascular Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/03gna4510" + }, + { + "label": "NIHR Bristol Nutrition Biomedical Research Unit", + "type": "child", + "id": "https://ror.org/019rf7x86" + }, + { + "label": "South Bristol Community Hospital", + "type": "child", + "id": "https://ror.org/00pa9y269" + }, + { + "label": "St Michael's Hospital", + "type": "child", + "id": "https://ror.org/02hqqna27" + }, + { + "label": "University Of Bristol Dental Hospital", + "type": "child", + "id": "https://ror.org/027a33v57" + }, + { + "label": "University Hospitals Bristol and Weston NHS Foundation Trust", + "type": "successor", + "id": "https://ror.org/03jzzxg14" + } + ], + "status": "inactive", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04nqtfa57.json b/v1.43/04nqtfa57.json new file mode 100644 index 000000000..600ae506f --- /dev/null +++ b/v1.43/04nqtfa57.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.494474.e" + ], + "preferred": "grid.494474.e" + } + ], + "id": "https://ror.org/04nqtfa57", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sts-e.com/index.php?lang=en" + } + ], + "names": [ + { + "value": "Technical Services and Supplies (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Servicios Técnicos y Suministros", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "STS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04ns7ha44.json b/v1.43/04ns7ha44.json new file mode 100644 index 000000000..6a3fc6824 --- /dev/null +++ b/v1.43/04ns7ha44.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 4843564, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 41.05343, + "lng": -73.53873, + "name": "Stamford" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q96272921" + ], + "preferred": "Q96272921" + }, + { + "type": "fundref", + "all": [ + "100016230" + ], + "preferred": "100016230" + } + ], + "id": "https://ror.org/04ns7ha44", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.steveandalex.org" + } + ], + "names": [ + { + "value": "Steven & Alexandra Cohen Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Steven and Alexandra Cohen Foundation", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04nwt4928.json b/v1.43/04nwt4928.json new file mode 100644 index 000000000..b64138aab --- /dev/null +++ b/v1.43/04nwt4928.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3106672, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.65518, + "lng": -4.72372, + "name": "Valladolid" + } + } + ], + "established": 1908, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1789 4151" + ], + "preferred": "0000 0004 1789 4151" + }, + { + "type": "grid", + "all": [ + "grid.423855.d" + ], + "preferred": "grid.423855.d" + } + ], + "id": "https://ror.org/04nwt4928", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.valladolid.es" + } + ], + "names": [ + { + "value": "Ayuntamiento de Valladolid", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04q4ppz72.json b/v1.43/04q4ppz72.json new file mode 100644 index 000000000..cade1b907 --- /dev/null +++ b/v1.43/04q4ppz72.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 2510409, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.8581, + "lng": -4.02263, + "name": "Toledo" + } + } + ], + "established": 1966, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1766 1075" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.418888.5" + ], + "preferred": "grid.418888.5" + } + ], + "id": "https://ror.org/04q4ppz72", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://toledo.sanidad.castillalamancha.es" + } + ], + "names": [ + { + "value": "Complejo Hospitalario Universitario de Toledo", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Complejo Hospitalario de Toledo", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CHT", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "CHUT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Servicio de Salud de Castilla La Mancha", + "type": "parent", + "id": "https://ror.org/03k8zj440" + }, + { + "label": "Hospital Virgen del Valle", + "type": "child", + "id": "https://ror.org/00kxqbw45" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04qdwq068.json b/v1.43/04qdwq068.json new file mode 100644 index 000000000..81fe04316 --- /dev/null +++ b/v1.43/04qdwq068.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2648579, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.86515, + "lng": -4.25763, + "name": "Glasgow" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012927" + ], + "preferred": "100012927" + } + ], + "id": "https://ror.org/04qdwq068", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.quantic.ac.uk" + } + ], + "names": [ + { + "value": "QuantIC", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "QuantIC – UK Quantum Technology Hub in Quantum Enhanced Imaging", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "QuantIC – UK QT Hub in Quantum Enhanced Imaging", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "QuantIC Advanced Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "QuantIC ARC", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Glasgow", + "type": "parent", + "id": "https://ror.org/00vtgdb53" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04qekdn52.json b/v1.43/04qekdn52.json new file mode 100644 index 000000000..e894f4c48 --- /dev/null +++ b/v1.43/04qekdn52.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6059891, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.5152, + "lng": -73.46818, + "name": "Longueuil" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8064 4091" + ], + "preferred": "0000 0004 8064 4091" + } + ], + "id": "https://ror.org/04qekdn52", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.santemonteregie.qc.ca/centre" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de la Montérégie-Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de la Montérégie-Centre", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04qtk4r03.json b/v1.43/04qtk4r03.json new file mode 100644 index 000000000..9133d18b5 --- /dev/null +++ b/v1.43/04qtk4r03.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 786714, + "geonames_details": { + "country_code": "XK", + "country_name": "Kosovo", + "lat": 42.67272, + "lng": 21.16688, + "name": "Pristina" + } + } + ], + "established": 1967, + "external_ids": [], + "id": "https://ror.org/04qtk4r03", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ih-rks.org" + } + ], + "names": [ + { + "value": "Instituti i Historisë \"Ali Hadri\" Prishtinë", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Institute of History “Ali Hadri” Prishtina", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04qxsrb28.json b/v1.43/04qxsrb28.json new file mode 100644 index 000000000..eb12b6248 --- /dev/null +++ b/v1.43/04qxsrb28.json @@ -0,0 +1,120 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1928, + "external_ids": [ + { + "all": [ + "501100002913", + "501100011878" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.453158.e" + ], + "preferred": "grid.453158.e", + "type": "grid" + }, + { + "all": [ + "0000 0001 2174 3776" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1186029" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/04qxsrb28", + "links": [ + { + "type": "website", + "value": "http://www.flanders.be/en" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Flemish_Government" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 50.85045, + "lng": 4.34878, + "name": "Brussels" + }, + "geonames_id": 2800866 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Flemish Government" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "Flämische Regierung" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Gouvernement flamand" + }, + { + "lang": "nl", + "types": [ + "label" + ], + "value": "Vlaamse Overheid" + } + ], + "relationships": [ + { + "label": "Flanders Environment Agency", + "type": "child", + "id": "https://ror.org/04f41jv37" + }, + { + "label": "Departement Omgeving", + "type": "child", + "id": "https://ror.org/0558ewf28" + }, + { + "label": "Departement Economie, Wetenschap & Innovatie", + "type": "child", + "id": "https://ror.org/01g94x362" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/04r5ma125.json b/v1.43/04r5ma125.json new file mode 100644 index 000000000..95257d555 --- /dev/null +++ b/v1.43/04r5ma125.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 1815286, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 30.66667, + "lng": 104.06667, + "name": "Chengdu" + } + } + ], + "established": 1958, + "external_ids": [], + "id": "https://ror.org/04r5ma125", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.hhxny.chemchina.com" + } + ], + "names": [ + { + "value": "Southwest Research & Design Institute of the Chemical Industry", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Southwest Research and Design Institute of the Chemical Industry", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "西南化工研究设计院有限公司", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "SWRDICI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04rf54t04.json b/v1.43/04rf54t04.json new file mode 100644 index 000000000..a213d8079 --- /dev/null +++ b/v1.43/04rf54t04.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2618425, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 55.67594, + "lng": 12.56553, + "name": "Copenhagen" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6091 1914" + ], + "preferred": "0000 0004 6091 1914" + }, + { + "type": "wikidata", + "all": [ + "Q45135950" + ], + "preferred": "Q45135950" + }, + { + "type": "fundref", + "all": [ + "501100008267" + ], + "preferred": "501100008267" + } + ], + "id": "https://ror.org/04rf54t04", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.kongehuset.dk/om-kongehuset/fonde-og-legater/kong-christian-den-tiendes-fond/" + } + ], + "names": [ + { + "value": "Kong Christian den Tiendes Fond", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "King Christian the Tenth Foundation", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04rhqkc66.json b/v1.43/04rhqkc66.json new file mode 100644 index 000000000..b9c0a0162 --- /dev/null +++ b/v1.43/04rhqkc66.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2852458, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.39886, + "lng": 13.06566, + "name": "Potsdam" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/04rhqkc66", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://mluk.brandenburg.de/mluk/" + } + ], + "names": [ + { + "value": "Ministerium für Landwirtschaft, Umwelt und Klimaschutz des Landes Brandenburg", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Landesministerium für Landwirtschaft, Umwelt und Klimaschutz Brandenburg", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MLUK", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04rswvr48.json b/v1.43/04rswvr48.json new file mode 100644 index 000000000..855d39c15 --- /dev/null +++ b/v1.43/04rswvr48.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 5391811, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 32.71571, + "lng": -117.16472, + "name": "San Diego" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9230 1205" + ], + "preferred": "0000 0004 9230 1205" + }, + { + "type": "fundref", + "all": [ + "100016136" + ], + "preferred": "100016136" + } + ], + "id": "https://ror.org/04rswvr48", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fundacionaraucariafoundation.com" + } + ], + "names": [ + { + "value": "Fundacion Araucaria Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04rzqnw97.json b/v1.43/04rzqnw97.json new file mode 100644 index 000000000..491069685 --- /dev/null +++ b/v1.43/04rzqnw97.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q47457486" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.501550.4" + ], + "preferred": "grid.501550.4" + } + ], + "id": "https://ror.org/04rzqnw97", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.conservatorioteresaberganza.com/" + } + ], + "names": [ + { + "value": "Conservatorio Profesional de Música “Teresa Berganza”", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Conservatorio de Música Teresa Berganza", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04shwth06.json b/v1.43/04shwth06.json new file mode 100644 index 000000000..accb27b53 --- /dev/null +++ b/v1.43/04shwth06.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2490584, + "geonames_details": { + "country_code": "DZ", + "country_name": "Algeria", + "lat": 34.84969, + "lng": -1.72753, + "name": "Maghnia" + } + } + ], + "established": 2006, + "external_ids": [], + "id": "https://ror.org/04shwth06", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cu-maghnia.edu.dz" + } + ], + "names": [ + { + "value": "University Centre of Maghnia", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Maghnia University Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CU Maghnia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UC Maghnia", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "المركز الجامعي مغنية", + "types": [ + "label" + ], + "lang": "ar" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04sk0bj73.json b/v1.43/04sk0bj73.json new file mode 100644 index 000000000..e6ab2bfcb --- /dev/null +++ b/v1.43/04sk0bj73.json @@ -0,0 +1,79 @@ +{ + "locations": [ + { + "geonames_id": 2953436, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.22683, + "lng": 8.61816, + "name": "Bad Homburg" + } + } + ], + "established": 1996, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q650259" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.415062.4" + ], + "preferred": "grid.415062.4" + } + ], + "id": "https://ror.org/04sk0bj73", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.freseniusmedicalcare.us/en/home/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Fresenius_Medical_Care" + } + ], + "names": [ + { + "value": "Fresenius Medical Care (Germany)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Fresenius Medical Care North America (United States)", + "type": "child", + "id": "https://ror.org/05rs7tq63" + }, + { + "label": "Fresenius (Germany)", + "type": "related", + "id": "https://ror.org/01v376g59" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04sqh8108.json b/v1.43/04sqh8108.json new file mode 100644 index 000000000..c31643b50 --- /dev/null +++ b/v1.43/04sqh8108.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2519139, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.65675, + "lng": 2.94953, + "name": "Costitx" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q357639" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.440324.5" + ], + "preferred": "grid.440324.5" + } + ], + "id": "https://ror.org/04sqh8108", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.oam.es/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Astronomical_Observatory_of_Mallorca" + } + ], + "names": [ + { + "value": "Astronomical Observatory of Mallorca", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "OAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04t0gwh46.json b/v1.43/04t0gwh46.json new file mode 100644 index 000000000..4835e1355 --- /dev/null +++ b/v1.43/04t0gwh46.json @@ -0,0 +1,170 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1909, + "external_ids": [ + { + "all": [ + "0000 0004 0639 6384" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "501100010463" + ], + "preferred": "501100010463", + "type": "fundref" + }, + { + "all": [ + "Q2451973" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.418596.7" + ], + "preferred": "grid.418596.7", + "type": "grid" + } + ], + "id": "https://ror.org/04t0gwh46", + "links": [ + { + "type": "website", + "value": "http://www.institut-curie.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Curie_Institute_(Paris)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute Curie" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Institut Curie" + } + ], + "relationships": [ + { + "label": "Dynamique de l'information génétique : bases fondamentales et cancer", + "type": "child", + "id": "https://ror.org/02q6fa122" + }, + { + "label": "Genome Integrity, RNA and Cancer", + "type": "child", + "id": "https://ror.org/01b5rtm37" + }, + { + "label": "Immunity and Cancer", + "type": "child", + "id": "https://ror.org/01zefvs55" + }, + { + "label": "Dynamique du noyau", + "type": "child", + "id": "https://ror.org/04team556" + }, + { + "label": "Physico-chimie Curie", + "type": "child", + "id": "https://ror.org/055ss7a31" + }, + { + "label": "Signalisation, Neurobiologie et Cancer", + "type": "child", + "id": "https://ror.org/01cmdpn82" + }, + { + "label": "Biologie cellulaire et Cancer", + "type": "child", + "id": "https://ror.org/04w11tv37" + }, + { + "label": "Musée Curie", + "type": "child", + "id": "https://ror.org/00tf8ca96" + }, + { + "label": "Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes", + "type": "child", + "id": "https://ror.org/0095dt357" + }, + { + "label": "Cancer, Hétérogénéité, Instabilité et Plasticité", + "type": "child", + "id": "https://ror.org/03t4pc386" + }, + { + "label": "Génétique et biologie du développement", + "type": "child", + "id": "https://ror.org/01vrz7264" + }, + { + "label": "Chimie et Biologie de la Cellule", + "type": "child", + "id": "https://ror.org/03k37h274" + }, + { + "label": "Chimie et Modélisation pour la Biologie du Cancer", + "type": "child", + "id": "https://ror.org/02nfq1309" + }, + { + "label": "Laboratoire d'imagerie translationnelle en oncologie", + "type": "child", + "id": "https://ror.org/05qy9ka59" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/v1.43/04t4b6y41.json b/v1.43/04t4b6y41.json new file mode 100644 index 000000000..fd40ade6d --- /dev/null +++ b/v1.43/04t4b6y41.json @@ -0,0 +1,66 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1978, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 8497 6529" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.417198.2" + ], + "preferred": "grid.417198.2" + } + ], + "id": "https://ror.org/04t4b6y41", + "domains": [], + "links": [], + "names": [ + { + "value": "Instituto Nacional de la Salud", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INSALUD", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04tfhh831.json b/v1.43/04tfhh831.json new file mode 100644 index 000000000..3ad3c3665 --- /dev/null +++ b/v1.43/04tfhh831.json @@ -0,0 +1,62 @@ +{ + "locations": [ + { + "geonames_id": 4938836, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.11316, + "lng": -70.81199, + "name": "Hanover" + } + } + ], + "established": 2015, + "external_ids": [], + "id": "https://ror.org/04tfhh831", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://centerforopenneuroscience.org" + } + ], + "names": [ + { + "value": "Center for Open Neuroscience", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CON", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Dartmouth College", + "type": "related", + "id": "https://ror.org/049s0rh22" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04tfzc498.json b/v1.43/04tfzc498.json new file mode 100644 index 000000000..fd2c30d0d --- /dev/null +++ b/v1.43/04tfzc498.json @@ -0,0 +1,300 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-03-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2003, + "external_ids": [ + { + "all": [ + "grid.414603.4" + ], + "preferred": "grid.414603.4", + "type": "grid" + } + ], + "id": "https://ror.org/04tfzc498", + "links": [ + { + "type": "website", + "value": "http://www.salute.gov.it/portale/temi/p2_6.jsp?lingua=italiano&id=794&area=Ricerca%20sanitaria&menu=ssn" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 41.89193, + "lng": 12.51133, + "name": "Rome" + }, + "geonames_id": 3169070 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Istituti di Ricovero e Cura a Carattere Scientifico" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IRCCS" + } + ], + "relationships": [ + { + "label": "Bambino Gesù Children's Hospital", + "type": "child", + "id": "https://ror.org/02sy42d13" + }, + { + "label": "Candiolo Cancer Institute", + "type": "child", + "id": "https://ror.org/04wadq306" + }, + { + "label": "Casa Sollievo della Sofferenza", + "type": "child", + "id": "https://ror.org/00md77g41" + }, + { + "label": "Centro Cardiologico Monzino", + "type": "child", + "id": "https://ror.org/006pq9r08" + }, + { + "label": "Centro Neurolesi Bonino Pulejo", + "type": "child", + "id": "https://ror.org/05tzq2c96" + }, + { + "label": "Centro San Giovanni di Dio Fatebenefratelli", + "type": "child", + "id": "https://ror.org/02davtb12" + }, + { + "label": "Centro di Riferimento Oncologico", + "type": "child", + "id": "https://ror.org/03ks1vk59" + }, + { + "label": "Centro di Riferimento Oncologico della Basilicata", + "type": "child", + "id": "https://ror.org/00n6jcj93" + }, + { + "label": "European Institute of Oncology", + "type": "child", + "id": "https://ror.org/02vr0ne26" + }, + { + "label": "Fatebenefratelli Hospital", + "type": "child", + "id": "https://ror.org/01x9zv505" + }, + { + "label": "Fondazione G.B. Bietti", + "type": "child", + "id": "https://ror.org/012khpt30" + }, + { + "label": "Fondazione IRCCS Ca' Granda Ospedale Maggiore Policlinico", + "type": "child", + "id": "https://ror.org/016zn0y21" + }, + { + "label": "Fondazione IRCCS Istituto Nazionale dei Tumori", + "type": "child", + "id": "https://ror.org/05dwj7825" + }, + { + "label": "Fondazione Istituto Neurologico Nazionale Casimiro Mondino", + "type": "child", + "id": "https://ror.org/009h0v784" + }, + { + "label": "Fondazione Salvatore Maugeri", + "type": "child", + "id": "https://ror.org/01e8tvg28" + }, + { + "label": "Fondazione Santa Lucia", + "type": "child", + "id": "https://ror.org/05rcxtd95" + }, + { + "label": "Fondazione Stella Maris", + "type": "child", + "id": "https://ror.org/02w8ez808" + }, + { + "label": "Gastroenterology Hospital \"Saverio de Bellis\"", + "type": "child", + "id": "https://ror.org/05pfy5w65" + }, + { + "label": "IRCCS Eugenio Medea", + "type": "child", + "id": "https://ror.org/05ynr3m75" + }, + { + "label": "IRCCS Humanitas Research Hospital", + "type": "child", + "id": "https://ror.org/05d538656" + }, + { + "label": "IRCCS Materno Infantile Burlo Garofolo", + "type": "child", + "id": "https://ror.org/03t1jzs40" + }, + { + "label": "IRCCS Ospedale San Raffaele", + "type": "child", + "id": "https://ror.org/039zxt351" + }, + { + "label": "IRCCS Policlinico San Donato", + "type": "child", + "id": "https://ror.org/01220jp31" + }, + { + "label": "Istituti Fisioterapici Ospitalieri", + "type": "child", + "id": "https://ror.org/04j6jb515" + }, + { + "label": "Istituto Auxologico Italiano", + "type": "child", + "id": "https://ror.org/033qpss18" + }, + { + "label": "Istituto Dermopatico dell'Immacolata", + "type": "child", + "id": "https://ror.org/02b5mfy68" + }, + { + "label": "Istituto Giannina Gaslini", + "type": "child", + "id": "https://ror.org/0424g0k78" + }, + { + "label": "Istituto Nazionale Tumori IRCCS \"Fondazione G. Pascale\"", + "type": "child", + "id": "https://ror.org/0506y2b23" + }, + { + "label": "Istituto Nazionale per le Malattie Infettive Lazzaro Spallanzani", + "type": "child", + "id": "https://ror.org/00kv87w35" + }, + { + "label": "Fondazione IRCCS Istituto Neurologico Carlo Besta", + "type": "child", + "id": "https://ror.org/05rbx8m02" + }, + { + "label": "Istituto Neurologico Mediterraneo", + "type": "child", + "id": "https://ror.org/00cpb6264" + }, + { + "label": "Istituto Oncologico Veneto", + "type": "child", + "id": "https://ror.org/01xcjmy57" + }, + { + "label": "Istituto Ortopedico Galeazzi", + "type": "child", + "id": "https://ror.org/01vyrje42" + }, + { + "label": "Istituto Ortopedico Rizzoli", + "type": "child", + "id": "https://ror.org/02ycyys66" + }, + { + "label": "Istituto Scientifico Romagnolo per lo Studio e la Cura dei Tumori", + "type": "child", + "id": "https://ror.org/013wkc921" + }, + { + "label": "Istituto Tumori Bari", + "type": "child", + "id": "https://ror.org/03jxkz251" + }, + { + "label": "Istituto delle Scienze Neurologiche di Bologna", + "type": "child", + "id": "https://ror.org/02mgzgr95" + }, + { + "label": "Mario Negri Institute for Pharmacological Research", + "type": "child", + "id": "https://ror.org/05aspc753" + }, + { + "label": "MultiMedica", + "type": "child", + "id": "https://ror.org/01h8ey223" + }, + { + "label": "Oasi Maria SS", + "type": "child", + "id": "https://ror.org/00dqmaq38" + }, + { + "label": "Ospedale Maggiore Carlo Alberto Pizzardi", + "type": "child", + "id": "https://ror.org/010tmdc88" + }, + { + "label": "Ospedale Policlinico San Martino", + "type": "child", + "id": "https://ror.org/04d7es448" + }, + { + "label": "San Camillo IRCCS di Venezia", + "type": "child", + "id": "https://ror.org/03njebb69" + }, + { + "label": "Policlinico San Matteo Fondazione", + "type": "child", + "id": "https://ror.org/05w1q1c88" + }, + { + "label": "Istituto Nazionale di Riposo e Cura per Anziani", + "type": "child", + "id": "https://ror.org/057aq1y25" + }, + { + "label": "Instituto Nazionale Tumori Regina Elena", + "type": "child", + "id": "https://ror.org/04mgfev69" + }, + { + "label": "Istituto di Ricovero e Cura a Carattere Scientifico San Raffaele", + "type": "child", + "id": "https://ror.org/006x48140" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/04tj63d06.json b/v1.43/04tj63d06.json new file mode 100644 index 000000000..34c42f80d --- /dev/null +++ b/v1.43/04tj63d06.json @@ -0,0 +1,157 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1887, + "external_ids": [ + { + "all": [ + "100007703", + "100005904", + "100006446", + "100010541", + "100009591", + "100003203", + "100002260", + "100005568", + "100011490" + ], + "preferred": "100007703", + "type": "fundref" + }, + { + "all": [ + "grid.40803.3f" + ], + "preferred": "grid.40803.3f", + "type": "grid" + }, + { + "all": [ + "0000 0001 2173 6074" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1132346" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/04tj63d06", + "links": [ + { + "type": "website", + "value": "https://www.ncsu.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/North_Carolina_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 35.7721, + "lng": -78.63861, + "name": "Raleigh" + }, + "geonames_id": 4487042 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NCSU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "North Carolina State University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal de Carolina del Norte" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État de caroline du nord" + } + ], + "relationships": [ + { + "label": "Center for Dielectrics & Piezoelectrics", + "type": "child", + "id": "https://ror.org/04nv7tt16" + }, + { + "label": "North Carolina Sea Grant", + "type": "child", + "id": "https://ror.org/01kgxxx41" + }, + { + "label": "North Carolina Space Grant Consortium", + "type": "child", + "id": "https://ror.org/058465397" + }, + { + "label": "UNC/NCSU Joint Department of Biomedical Engineering", + "type": "child", + "id": "https://ror.org/03hakdk41" + }, + { + "label": "Triangle Center for Evolutionary Medicine", + "type": "child", + "id": "https://ror.org/02yjqwr70" + }, + { + "label": "Southeast Climate Adaptation Science Center", + "type": "child", + "id": "https://ror.org/009hmnr85" + }, + { + "label": "Renaissance Computing Institute", + "type": "child", + "id": "https://ror.org/01s91ey96" + }, + { + "label": "University of North Carolina System", + "type": "parent", + "id": "https://ror.org/0566a8c54" + }, + { + "label": "The Nonwovens Institute", + "type": "child", + "id": "https://ror.org/0568g2481" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/04tjemt46.json b/v1.43/04tjemt46.json new file mode 100644 index 000000000..cf803cc7e --- /dev/null +++ b/v1.43/04tjemt46.json @@ -0,0 +1,70 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.481815.1" + ], + "preferred": "grid.481815.1", + "type": "grid" + } + ], + "id": "https://ror.org/04tjemt46", + "links": [ + { + "type": "website", + "value": "http://www.brc.hu/genetics.php?change_lang=en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "HU", + "country_name": "Hungary", + "lat": 46.253, + "lng": 20.14824, + "name": "Szeged" + }, + "geonames_id": 715429 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute of Genetics" + }, + { + "lang": "hu", + "types": [ + "label" + ], + "value": "Genetikai Intézet Szegedi Biológiai Kutatóközpont Magyar Tudományos Akadémia" + } + ], + "relationships": [ + { + "label": "HUN-REN Szegedi Biológiai Kutatóközpont", + "type": "parent", + "id": "https://ror.org/016gb1631" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/04v2q5t19.json b/v1.43/04v2q5t19.json new file mode 100644 index 000000000..09a66c54c --- /dev/null +++ b/v1.43/04v2q5t19.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.424747.6" + ], + "preferred": "grid.424747.6" + } + ], + "id": "https://ror.org/04v2q5t19", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.bcndigital.org" + } + ], + "names": [ + { + "value": "Barcelona Digital Centro Tecnológico", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BDigital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04vdnev70.json b/v1.43/04vdnev70.json new file mode 100644 index 000000000..fc8eee40f --- /dev/null +++ b/v1.43/04vdnev70.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100016989" + ], + "preferred": "501100016989" + } + ], + "id": "https://ror.org/04vdnev70", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.archer.ac.uk" + } + ], + "names": [ + { + "value": "ARCHER Service", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04vh24428.json b/v1.43/04vh24428.json new file mode 100644 index 000000000..750da2c0b --- /dev/null +++ b/v1.43/04vh24428.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 2267057, + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 38.71667, + "lng": -9.13333, + "name": "Lisbon" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/04vh24428", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.novaidfct.pt" + } + ], + "names": [ + { + "value": "NOVA.id.FCT - Associação para a Inovação e Desenvolvimento da FCT", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NOVA.id.FCT", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04vzm8988.json b/v1.43/04vzm8988.json new file mode 100644 index 000000000..ba252cd4e --- /dev/null +++ b/v1.43/04vzm8988.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 5121509, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.25286, + "lng": -73.79096, + "name": "Hudson" + } + } + ], + "established": 1945, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7863 3094" + ], + "preferred": "0000 0004 7863 3094" + }, + { + "type": "fundref", + "all": [ + "100014337" + ], + "preferred": "100014337" + } + ], + "id": "https://ror.org/04vzm8988", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://furthermore.org" + } + ], + "names": [ + { + "value": "FURTHERMORE grants in publishing", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "J.M. Kaplan Fund", + "type": "parent", + "id": "https://ror.org/03cn98e27" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04w07sc25.json b/v1.43/04w07sc25.json new file mode 100644 index 000000000..39739b798 --- /dev/null +++ b/v1.43/04w07sc25.json @@ -0,0 +1,94 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1999, + "external_ids": [ + { + "all": [ + "0000 0004 0445 8043" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q51780435" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.503407.5" + ], + "preferred": "grid.503407.5", + "type": "grid" + } + ], + "id": "https://ror.org/04w07sc25", + "links": [ + { + "type": "website", + "value": "https://www6.montpellier.inra.fr/spo/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Sciences pour L’Œnologie" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SPO" + } + ], + "relationships": [ + { + "label": "Centre Occitanie-Montpellier", + "type": "parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/04w0a0617.json b/v1.43/04w0a0617.json new file mode 100644 index 000000000..6ad836f61 --- /dev/null +++ b/v1.43/04w0a0617.json @@ -0,0 +1,88 @@ +{ + "locations": [ + { + "geonames_id": 3985606, + "geonames_details": { + "country_code": "MX", + "country_name": "Mexico", + "lat": 22.14982, + "lng": -100.97916, + "name": "San Luis Potosí City" + } + } + ], + "established": 1970, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0369 8555" + ], + "preferred": "0000 0004 0369 8555" + }, + { + "type": "wikidata", + "all": [ + "Q5917885" + ], + "preferred": "Q5917885" + } + ], + "id": "https://ror.org/04w0a0617", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://slp.tecnm.mx" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Instituto_Tecnol%C3%B3gico_de_San_Luis_Potos%C3%AD" + } + ], + "names": [ + { + "value": "Instituto Tecnológico de San Luis Potosí", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "TecNM campus San Luis Potosí", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ITSLP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "National Technological Institute of Mexico", + "type": "parent", + "id": "https://ror.org/00davry38" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04w30w390.json b/v1.43/04w30w390.json new file mode 100644 index 000000000..0518ba6e6 --- /dev/null +++ b/v1.43/04w30w390.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.476529.b" + ], + "preferred": "grid.476529.b" + } + ], + "id": "https://ror.org/04w30w390", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.biomendi.com/" + } + ], + "names": [ + { + "value": "Biomendi (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Laboratorios Biomendi SAU", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04wcn4e27.json b/v1.43/04wcn4e27.json new file mode 100644 index 000000000..f014ca41a --- /dev/null +++ b/v1.43/04wcn4e27.json @@ -0,0 +1,122 @@ +{ + "locations": [ + { + "geonames_id": 2750053, + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + } + } + ], + "established": 2017, + "external_ids": [], + "id": "https://ror.org/04wcn4e27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://leaps-initiative.eu" + } + ], + "names": [ + { + "value": "LEAPS", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "League of European Accelerator-based Photon Sources", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "ALBA Synchrotron (Spain)", + "type": "related", + "id": "https://ror.org/02j9n6e35" + }, + { + "label": "Deutsches Elektronen-Synchrotron DESY", + "type": "related", + "id": "https://ror.org/01js2sh04" + }, + { + "label": "Diamond Light Source", + "type": "related", + "id": "https://ror.org/05etxs293" + }, + { + "label": "Elettra-Sincrotrone Trieste S.C.p.A.", + "type": "related", + "id": "https://ror.org/01c3rrh15" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "related", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "FELIX Laboratory", + "type": "related", + "id": "https://ror.org/03tkwyq76" + }, + { + "label": "Helmholtz-Zentrum Berlin für Materialien und Energie", + "type": "related", + "id": "https://ror.org/02aj13c28" + }, + { + "label": "Helmholtz-Zentrum Dresden-Rossendorf", + "type": "related", + "id": "https://ror.org/01zy2cs03" + }, + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "related", + "id": "https://ror.org/005ta0471" + }, + { + "label": "MAX IV Laboratory", + "type": "related", + "id": "https://ror.org/03q28x580" + }, + { + "label": "Paul Scherrer Institute", + "type": "related", + "id": "https://ror.org/03eh3y714" + }, + { + "label": "Physikalisch-Technische Bundesanstalt", + "type": "related", + "id": "https://ror.org/05r3f7h03" + }, + { + "label": "Soleil Synchrotron", + "type": "related", + "id": "https://ror.org/01ydb3330" + } + ], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04x05p558.json b/v1.43/04x05p558.json new file mode 100644 index 000000000..a3fc3ef49 --- /dev/null +++ b/v1.43/04x05p558.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2518559, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 38.26218, + "lng": -0.70107, + "name": "Elche" + } + } + ], + "established": 1988, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.431984.3" + ], + "preferred": "grid.431984.3" + } + ], + "id": "https://ror.org/04x05p558", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://elche.avanzagrupo.com" + } + ], + "names": [ + { + "value": "Autobuses Urbanos Elche", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AUESA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04x2nq985.json b/v1.43/04x2nq985.json new file mode 100644 index 000000000..72e9fe326 --- /dev/null +++ b/v1.43/04x2nq985.json @@ -0,0 +1,90 @@ +{ + "locations": [ + { + "geonames_id": 1811103, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 23.02677, + "lng": 113.13148, + "name": "Foshan" + } + } + ], + "established": 1958, + "external_ids": [], + "id": "https://ror.org/04x2nq985", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.sddermyy.com" + } + ], + "names": [ + { + "value": "The Affiliated Shunde Hospital of Jinan University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "The Second People's Hospital of Shunde", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Affiliated Shunde Hospital of Jinan University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Second People's Hospital of Shunde", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "顺德第二人民医院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "暨南大学附属顺德医院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "Jinan University", + "type": "parent", + "id": "https://ror.org/02xe5ns62" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04xcq9q51.json b/v1.43/04xcq9q51.json new file mode 100644 index 000000000..ec9157a9a --- /dev/null +++ b/v1.43/04xcq9q51.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 5006946, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.87502, + "lng": -85.51005, + "name": "Reed City" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0450 5807" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.490520.a" + ], + "preferred": "grid.490520.a" + } + ], + "id": "https://ror.org/04xcq9q51", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.spectrumhealth.org/locations/spectrum-health-reed-city-hospital" + } + ], + "names": [ + { + "value": "Corewell Health Reed City Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Spectrum Health Reed City Hospital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04xk0dc21.json b/v1.43/04xk0dc21.json new file mode 100644 index 000000000..94688afab --- /dev/null +++ b/v1.43/04xk0dc21.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 320392, + "geonames_details": { + "country_code": "TR", + "country_name": "Türkiye", + "lat": 37.72028, + "lng": 30.29083, + "name": "Burdur" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0386 420X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100016210" + ], + "preferred": "501100016210" + }, + { + "type": "wikidata", + "all": [ + "Q924465" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.411761.4" + ], + "preferred": "grid.411761.4" + } + ], + "id": "https://ror.org/04xk0dc21", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.mehmetakif.edu.tr" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Mehmet_Akif_Ersoy_University" + } + ], + "names": [ + { + "value": "Burdur Mehmet Akif Ersoy Üniversitesi", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Mehmet Akif Ersoy Üniversitesi", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Mehmet Akif Ersoy University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Burdur Mehmet Akif Ersoy University", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04xrsn650.json b/v1.43/04xrsn650.json new file mode 100644 index 000000000..60544353d --- /dev/null +++ b/v1.43/04xrsn650.json @@ -0,0 +1,109 @@ +{ + "locations": [ + { + "geonames_id": 2653941, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.2, + "lng": 0.11667, + "name": "Cambridge" + } + } + ], + "established": 2000, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q1783815" + ], + "preferred": "Q1783815" + } + ], + "id": "https://ror.org/04xrsn650", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ninjatheory.com" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ninja_Theory" + } + ], + "names": [ + { + "value": "Ninja Theory (United Kingdom)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ninja Theory", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ninja Theory Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ninja Theory Limited", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Just Add Monsters", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Just Add Monsters Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Just Add Monsters Limited", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Microsoft (United States)", + "type": "parent", + "id": "https://ror.org/00d0nc645" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04yyy0y35.json b/v1.43/04yyy0y35.json new file mode 100644 index 000000000..e66ebd1fc --- /dev/null +++ b/v1.43/04yyy0y35.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2024-02-13", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1986, + "external_ids": [ + { + "all": [ + "0000 0000 8803 7203" + ], + "preferred": "0000 0000 8803 7203", + "type": "isni" + }, + { + "all": [ + "Q568642" + ], + "preferred": "Q568642", + "type": "wikidata" + } + ], + "id": "https://ror.org/04yyy0y35", + "links": [ + { + "type": "website", + "value": "https://www.bloomsbury.com/uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Bloomsbury_Publishing" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Bloomsbury Publishing" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Bloomsbury Publishing (United Kingdom)" + } + ], + "relationships": [ + { + "label": "Bloomsbury (United States)", + "type": "child", + "id": "https://ror.org/042vxm455" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/04yznqr36.json b/v1.43/04yznqr36.json new file mode 100644 index 000000000..10b85d40c --- /dev/null +++ b/v1.43/04yznqr36.json @@ -0,0 +1,218 @@ +{ + "locations": [ + { + "geonames_id": 2980291, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.43389, + "lng": 4.39, + "name": "Saint-Etienne" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2158 1682" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q623154" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.6279.a" + ], + "preferred": "grid.6279.a" + } + ], + "id": "https://ror.org/04yznqr36", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://portail.univ-st-etienne.fr/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Jean_Monnet_University" + } + ], + "names": [ + { + "value": "Jean Monnet University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Université Jean Monnet", + "types": [ + "label" + ], + "lang": "fr" + } + ], + "relationships": [ + { + "label": "Laboratoire Interuniversitaire de Biologie de la Motricité", + "type": "related", + "id": "https://ror.org/03sc1p174" + }, + { + "label": "Université de Lyon", + "type": "parent", + "id": "https://ror.org/01rk35k63" + }, + { + "label": "Biologie, Ingénierie et Imagerie de la Greffe de Cornée", + "type": "child", + "id": "https://ror.org/037b3he73" + }, + { + "label": "Centre Max Weber", + "type": "child", + "id": "https://ror.org/026tf7535" + }, + { + "label": "Centre de Recherches Critiques sur le Droit", + "type": "child", + "id": "https://ror.org/01rzzcx32" + }, + { + "label": "Conception de l'Action en Situation", + "type": "child", + "id": "https://ror.org/0476zq753" + }, + { + "label": "Education, Cultures, Politiques", + "type": "child", + "id": "https://ror.org/037xc1874" + }, + { + "label": "Environment, City, Society", + "type": "child", + "id": "https://ror.org/0256r1e04" + }, + { + "label": "Groupe d'Analyse et de Théorie Economique Lyon St Etienne", + "type": "child", + "id": "https://ror.org/042fmc481" + }, + { + "label": "Histoire et Sources des Mondes Antiques", + "type": "child", + "id": "https://ror.org/01yx7av22" + }, + { + "label": "Institut d'Histoire des Représentations et des Idées dans les Modernités", + "type": "child", + "id": "https://ror.org/02wmc6m46" + }, + { + "label": "Laboratoire Hubert Curien", + "type": "child", + "id": "https://ror.org/0028p8r67" + }, + { + "label": "Laboratoire Magmas et Volcans", + "type": "child", + "id": "https://ror.org/02vnq7240" + }, + { + "label": "Laboratoire d'études sur les monothéismes", + "type": "child", + "id": "https://ror.org/02m0hy518" + }, + { + "label": "Laboratoire de Biologie Moléculaire de la Cellule", + "type": "child", + "id": "https://ror.org/01bj4fd12" + }, + { + "label": "Laboratoire de Biotechnologies Végétales Appliquées aux Plantes Aromatiques et Médicinales", + "type": "child", + "id": "https://ror.org/01j6cta96" + }, + { + "label": "Laboratoire de Mécanique des Fluides et d'Acoustique", + "type": "child", + "id": "https://ror.org/04dxeze48" + }, + { + "label": "Laboratoire de Recherche Historique Rhône-Alpes", + "type": "child", + "id": "https://ror.org/04qz4qy85" + }, + { + "label": "Laboratory of Polymer Materials Engineering", + "type": "child", + "id": "https://ror.org/02160my55" + }, + { + "label": "Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles", + "type": "child", + "id": "https://ror.org/04rkh0096" + }, + { + "label": "Lyon Neuroscience Research Center", + "type": "child", + "id": "https://ror.org/00pdd0432" + }, + { + "label": "Maison des Sciences de l'Homme Lyon St-Étienne", + "type": "child", + "id": "https://ror.org/00rawf147" + }, + { + "label": "Triangle", + "type": "child", + "id": "https://ror.org/04x9a0q46" + }, + { + "label": "Centre d'Investigation Clinique - Epidémiologie Clinique Saint-Etienne", + "type": "child", + "id": "https://ror.org/044dp1584" + }, + { + "label": "Research on healthcare performance", + "type": "child", + "id": "https://ror.org/02ncy5p18" + }, + { + "label": "Maison de l'Orient et de la Méditerranée Jean Pouilloux", + "type": "child", + "id": "https://ror.org/05de6h762" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04z22qz54.json b/v1.43/04z22qz54.json new file mode 100644 index 000000000..5219b4d2b --- /dev/null +++ b/v1.43/04z22qz54.json @@ -0,0 +1,246 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 1581" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100017211" + ], + "preferred": "501100017211" + }, + { + "type": "wikidata", + "all": [ + "Q24935922" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457015.2" + ], + "preferred": "grid.457015.2" + } + ], + "id": "https://ror.org/04z22qz54", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/ins2i/" + } + ], + "names": [ + { + "value": "Institut des Sciences de l'Information et de leurs Interactions", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INS2I", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Centre de Recherche en Acquisition et Traitement de l'Image pour la Santé", + "type": "child", + "id": "https://ror.org/03smk3872" + }, + { + "label": "Laboratoire d'Informatique de Paris-Nord", + "type": "child", + "id": "https://ror.org/05g1zjw44" + }, + { + "label": "Computer Science Laboratory of the École Polytechnique", + "type": "child", + "id": "https://ror.org/04afed728" + }, + { + "label": "Département d'Informatique", + "type": "child", + "id": "https://ror.org/05y6rqs46" + }, + { + "label": "Grenoble Computer Science Laboratory", + "type": "child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "GREYC", + "type": "child", + "id": "https://ror.org/043749971" + }, + { + "label": "Heuristics and Diagnostics for Complex Systems", + "type": "child", + "id": "https://ror.org/0075hvk77" + }, + { + "label": "Information Processing and System Research Lab", + "type": "child", + "id": "https://ror.org/0592ata02" + }, + { + "label": "Institut de Recherche en Informatique et Systèmes Aléatoires", + "type": "child", + "id": "https://ror.org/00myn0z94" + }, + { + "label": "Institut Systèmes Intelligents et de Robotique", + "type": "child", + "id": "https://ror.org/05neq8668" + }, + { + "label": "Laboratoire Bordelais de Recherche en Informatique", + "type": "child", + "id": "https://ror.org/03adqg323" + }, + { + "label": "Laboratoire d'Informatique Gaspard-Monge", + "type": "child", + "id": "https://ror.org/04t50yk91" + }, + { + "label": "Laboratoire d'Informatique, Signaux et Systèmes de Sophia Antipolis", + "type": "child", + "id": "https://ror.org/01215r597" + }, + { + "label": "Laboratoire de Recherche en Informatique de Paris 6", + "type": "child", + "id": "https://ror.org/05krcen59" + }, + { + "label": "Laboratoire de l'Informatique du Parallélisme", + "type": "child", + "id": "https://ror.org/04msnz457" + }, + { + "label": "Laboratoire des Sciences de l'Ingénieur, de l'Informatique et de l'Imagerie", + "type": "child", + "id": "https://ror.org/00k4e5n71" + }, + { + "label": "Laboratoire des Sciences et Techniques de l’Information de la Communication et de la Connaissance", + "type": "child", + "id": "https://ror.org/0266kfd37" + }, + { + "label": "Laboratoire des Sciences pour la Conception, l'Optimisation et la Production", + "type": "child", + "id": "https://ror.org/00rv5x925" + }, + { + "label": "Laboratory Preuves, Programmes et Systèmes", + "type": "child", + "id": "https://ror.org/046p9e825" + }, + { + "label": "Laboratory for Analysis and Architecture of Systems", + "type": "child", + "id": "https://ror.org/03vcm6439" + }, + { + "label": "Laboratory of Computing, Modelling and Optimization of the Systems", + "type": "child", + "id": "https://ror.org/00t3fpp34" + }, + { + "label": "Laboratory of Industrial and Human Automation Control, Mechanical Engineering and Computer Science", + "type": "child", + "id": "https://ror.org/006z7v557" + }, + { + "label": "Lamsade", + "type": "child", + "id": "https://ror.org/03pnp1a74" + }, + { + "label": "Lorraine Research Laboratory in Computer Science and its Applications", + "type": "child", + "id": "https://ror.org/02vnf0c38" + }, + { + "label": "Maison de la Simulation", + "type": "child", + "id": "https://ror.org/03jv6w209" + }, + { + "label": "Montpellier Laboratory of Informatics, Robotics and Microelectronics", + "type": "child", + "id": "https://ror.org/013yean28" + }, + { + "label": "Research Center for Automatic Control of Nancy", + "type": "child", + "id": "https://ror.org/022r5hc56" + }, + { + "label": "Techniques for Biomedical Engineering and Complexity Management–Informatics, Mathematics and Applications Grenoble", + "type": "child", + "id": "https://ror.org/03985kf35" + }, + { + "label": "Techniques of Informatics and Microelectronics for Integrated Systems Architecture", + "type": "child", + "id": "https://ror.org/000063q30" + }, + { + "label": "Verimag", + "type": "child", + "id": "https://ror.org/05afmzm11" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04z2hsy54.json b/v1.43/04z2hsy54.json new file mode 100644 index 000000000..925de3762 --- /dev/null +++ b/v1.43/04z2hsy54.json @@ -0,0 +1,69 @@ +{ + "locations": [ + { + "geonames_id": 3173435, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/04z2hsy54", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nvidia.com/it-it/" + } + ], + "names": [ + { + "value": "NVIDIA (Italy)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NVIDIA Italy", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Nvidia Italy S.R.L.", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Nvidia (United States)", + "type": "parent", + "id": "https://ror.org/03jdj4y14" + } + ], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04z8k9a98.json b/v1.43/04z8k9a98.json new file mode 100644 index 000000000..1b4520836 --- /dev/null +++ b/v1.43/04z8k9a98.json @@ -0,0 +1,121 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-08", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1290, + "external_ids": [ + { + "all": [ + "501100005727", + "501100007474" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.8051.c" + ], + "preferred": "grid.8051.c", + "type": "grid" + }, + { + "all": [ + "0000 0000 9511 4342" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q368643" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/04z8k9a98", + "links": [ + { + "type": "website", + "value": "http://www.uc.pt/en" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Coimbra" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PT", + "country_name": "Portugal", + "lat": 40.20564, + "lng": -8.41955, + "name": "Coimbra" + }, + "geonames_id": 2740637 + } + ], + "names": [ + { + "lang": "pt", + "types": [ + "label" + ], + "value": "Universidade de Coimbra" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Coimbra" + } + ], + "relationships": [ + { + "label": "Centre for Research in Anthropology", + "type": "child", + "id": "https://ror.org/043ft3840" + }, + { + "label": "Brain Imaging Network", + "type": "child", + "id": "https://ror.org/01d3r6z34" + }, + { + "label": "MARE - Centro de Ciências do Mar e do Ambiente", + "type": "child", + "id": "https://ror.org/03cvzf910" + }, + { + "label": "Hospitais da Universidade de Coimbra", + "type": "related", + "id": "https://ror.org/04032fz76" + }, + { + "label": "Instituto de Telecomunicações", + "type": "related", + "id": "https://ror.org/02ht4fk33" + }, + { + "label": "Centro de Estudos Sociais", + "type": "child", + "id": "https://ror.org/04fab7w85" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/04zbc6m03.json b/v1.43/04zbc6m03.json new file mode 100644 index 000000000..5cecd4734 --- /dev/null +++ b/v1.43/04zbc6m03.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.512902.d" + ], + "preferred": "grid.512902.d" + } + ], + "id": "https://ror.org/04zbc6m03", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.isciii.es/QuienesSomos/CentrosPropios/MuseoISCIII" + } + ], + "names": [ + { + "value": "Museo Nacional de Sanidad", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ISCIII Museum", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Museo ISCIII", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Instituto de Salud Carlos III", + "type": "parent", + "id": "https://ror.org/00ca2c886" + } + ], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/04zw2sa68.json b/v1.43/04zw2sa68.json new file mode 100644 index 000000000..c789bbdac --- /dev/null +++ b/v1.43/04zw2sa68.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.488304.3" + ], + "preferred": "grid.488304.3" + } + ], + "id": "https://ror.org/04zw2sa68", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.geicogroup.com" + } + ], + "names": [ + { + "value": "Spanish Ovarian Cancer Research Group", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Grupo Español de Cáncer de Ovario", + "types": [ + "label" + ], + "lang": "es" + }, + { + "value": "GEICO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0508kew31.json b/v1.43/0508kew31.json new file mode 100644 index 000000000..7bd10464c --- /dev/null +++ b/v1.43/0508kew31.json @@ -0,0 +1,83 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-05-25", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2013, + "external_ids": [ + { + "all": [ + "501100002288", + "501100014110" + ], + "preferred": "501100014110", + "type": "fundref" + }, + { + "all": [ + "grid.468100.b" + ], + "preferred": "grid.468100.b", + "type": "grid" + } + ], + "id": "https://ror.org/0508kew31", + "links": [ + { + "type": "website", + "value": "https://www.der.wa.gov.au" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -31.95224, + "lng": 115.8614, + "name": "Perth" + }, + "geonames_id": 2063523 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Department of Environment Regulation" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Department of Water and Environmental Regulation" + } + ], + "relationships": [ + { + "label": "Government of Western Australia", + "type": "parent", + "id": "https://ror.org/00wqdbc63" + }, + { + "label": "Department of Water", + "type": "predecessor", + "id": "https://ror.org/017wrhq72" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/050gm3a53.json b/v1.43/050gm3a53.json new file mode 100644 index 000000000..fe8662cb5 --- /dev/null +++ b/v1.43/050gm3a53.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 1169825, + "geonames_details": { + "country_code": "PK", + "country_name": "Pakistan", + "lat": 30.19679, + "lng": 71.47824, + "name": "Multan" + } + } + ], + "established": 2007, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0397 1697" + ], + "preferred": "0000 0004 0397 1697" + } + ], + "id": "https://ror.org/050gm3a53", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cpeic.punjab.gov.pk" + } + ], + "names": [ + { + "value": "Ch. Pervaiz Elahi Institute of Cardiology, Multan", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Chaudhry Pervaiz Elahi Institute of Cardiology, Multan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CPE Institute of Cardiology, Multan", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CPEIC Multan", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/050gn5214.json b/v1.43/050gn5214.json new file mode 100644 index 000000000..0111a98c0 --- /dev/null +++ b/v1.43/050gn5214.json @@ -0,0 +1,108 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2005, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0620 5939" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q3152211" + ], + "preferred": "Q3152211" + }, + { + "type": "grid", + "all": [ + "grid.425274.2" + ], + "preferred": "grid.425274.2" + } + ], + "id": "https://ror.org/050gn5214", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://institutducerveau-icm.org" + } + ], + "names": [ + { + "value": "Institut du Cerveau", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Paris Brain Institute", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "Institut du Cerveau et de la Moelle épinière", + "types": [ + "label" + ], + "lang": "fr" + }, + { + "value": "ICM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Institut des Sciences Biologiques", + "type": "parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/050jcm728.json b/v1.43/050jcm728.json new file mode 100644 index 000000000..bb8031782 --- /dev/null +++ b/v1.43/050jcm728.json @@ -0,0 +1,231 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0387 052X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100017213" + ], + "preferred": "501100017213" + }, + { + "type": "wikidata", + "all": [ + "Q24935942" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457017.0" + ], + "preferred": "grid.457017.0" + } + ], + "id": "https://ror.org/050jcm728", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cnrs.fr/insmi/" + } + ], + "names": [ + { + "value": "Institut National des Sciences Mathématiques et de leurs Interactions", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "INSMI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Analyse, Géométrie et Modélisation", + "type": "child", + "id": "https://ror.org/03qgt2624" + }, + { + "label": "Centre de Mathématiques Appliquées", + "type": "child", + "id": "https://ror.org/012e1xn46" + }, + { + "label": "Centre de Recherche en Mathématiques de la Décision", + "type": "child", + "id": "https://ror.org/03s0gj002" + }, + { + "label": "Institut Henri Poincaré", + "type": "child", + "id": "https://ror.org/05dfxeg46" + }, + { + "label": "Institut Fourier", + "type": "child", + "id": "https://ror.org/05rwrfh97" + }, + { + "label": "Institut de Mathématique et de Modélisation de Montpellier", + "type": "child", + "id": "https://ror.org/044kxby82" + }, + { + "label": "Institut de Mathématiques de Bordeaux", + "type": "child", + "id": "https://ror.org/05m3r1b84" + }, + { + "label": "Institut de Mathématiques de Jussieu-Paris Rive Gauche", + "type": "child", + "id": "https://ror.org/03fk87k11" + }, + { + "label": "Institut de Recherche Mathématique Avancée", + "type": "child", + "id": "https://ror.org/02hwgty18" + }, + { + "label": "Institut Élie Cartan de Lorraine", + "type": "child", + "id": "https://ror.org/04rvw8791" + }, + { + "label": "Laboratoire Amiénois de Mathématique Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/04smxbm79" + }, + { + "label": "Laboratoire Analyse, Géométrie et Applications", + "type": "child", + "id": "https://ror.org/018nzqy79" + }, + { + "label": "Laboratoire Angevin de Recherche en Mathématiques", + "type": "child", + "id": "https://ror.org/036j0y719" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Jean-Alexandre Dieudonné", + "type": "child", + "id": "https://ror.org/0274zdr66" + }, + { + "label": "Laboratoire Paul Painlevé", + "type": "child", + "id": "https://ror.org/043n4fm24" + }, + { + "label": "Laboratoire de Mathématiques", + "type": "child", + "id": "https://ror.org/05sd5r855" + }, + { + "label": "Laboratoire de Mathématiques Jean Leray", + "type": "child", + "id": "https://ror.org/04g1hjn96" + }, + { + "label": "Laboratoire de Mathématiques Raphaël Salem", + "type": "child", + "id": "https://ror.org/01k1v7590" + }, + { + "label": "Laboratoire de Mathématiques de Bretagne Atlantique", + "type": "child", + "id": "https://ror.org/02ght4n58" + }, + { + "label": "Laboratoire d’Analyse et de Mathématiques Appliquées", + "type": "child", + "id": "https://ror.org/0581g8849" + }, + { + "label": "Laboratory of Mathematics and their Applications", + "type": "child", + "id": "https://ror.org/00g669j87" + }, + { + "label": "Laurent Schwartz Center for Mathematics", + "type": "child", + "id": "https://ror.org/00b7djk73" + }, + { + "label": "Institut de recherche mathématique de Rennes", + "type": "child", + "id": "https://ror.org/05y76vp22" + }, + { + "label": "Toulouse Mathematics Institute", + "type": "child", + "id": "https://ror.org/014vp6c30" + }, + { + "label": "Unit of Mathematics, Pure and Applied", + "type": "child", + "id": "https://ror.org/05n21n105" + }, + { + "label": "Institut de Mathématiques de Marseille", + "type": "child", + "id": "https://ror.org/042h2y225" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/050qj5m48.json b/v1.43/050qj5m48.json new file mode 100644 index 000000000..6de0c1a69 --- /dev/null +++ b/v1.43/050qj5m48.json @@ -0,0 +1,130 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1968, + "external_ids": [ + { + "all": [ + "0000 0000 9905 4447" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "100010066" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q2495861" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.411025.3" + ], + "preferred": "grid.411025.3", + "type": "grid" + } + ], + "id": "https://ror.org/050qj5m48", + "links": [ + { + "type": "website", + "value": "http://www.maine.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Maine_System" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.79884, + "lng": -68.77265, + "name": "Bangor" + }, + "geonames_id": 4957280 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Maine System" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UMS" + } + ], + "relationships": [ + { + "label": "University of Maine", + "type": "child", + "id": "https://ror.org/01adr0w49" + }, + { + "label": "University of Maine School of Law", + "type": "child", + "id": "https://ror.org/04625j688" + }, + { + "label": "University of Maine at Augusta", + "type": "child", + "id": "https://ror.org/041gqhg24" + }, + { + "label": "University of Maine at Farmington", + "type": "child", + "id": "https://ror.org/00ydm0027" + }, + { + "label": "University of Maine at Fort Kent", + "type": "child", + "id": "https://ror.org/038s91v75" + }, + { + "label": "University of Maine at Machias", + "type": "child", + "id": "https://ror.org/00e9xa106" + }, + { + "label": "University of Maine at Presque Isle", + "type": "child", + "id": "https://ror.org/00nk17n43" + }, + { + "label": "University of Southern Maine", + "type": "child", + "id": "https://ror.org/03ke6tv85" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/051777d98.json b/v1.43/051777d98.json new file mode 100644 index 000000000..48436a5c5 --- /dev/null +++ b/v1.43/051777d98.json @@ -0,0 +1,110 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-11-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1965, + "external_ids": [ + { + "all": [ + "100016195" + ], + "preferred": "100016195", + "type": "fundref" + }, + { + "all": [ + "grid.467088.5" + ], + "preferred": "grid.467088.5", + "type": "grid" + }, + { + "all": [ + "0000 0001 2215 6303" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q161718" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/051777d98", + "links": [ + { + "type": "website", + "value": "http://www.undp.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/United_Nations_Development_Programme" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.71427, + "lng": -74.00597, + "name": "New York" + }, + "geonames_id": 5128581 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UNDP" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "United Nations Development Programme" + } + ], + "relationships": [ + { + "label": "United Nations Capital Development Fund", + "type": "child", + "id": "https://ror.org/01ehdwj93" + }, + { + "label": "Programa de Desarrollo de las Ciencias Básicas", + "type": "child", + "id": "https://ror.org/00jkr8r49" + }, + { + "label": "United Nations Economic and Social Council", + "type": "parent", + "id": "https://ror.org/01eb8ek77" + }, + { + "label": "Special Programme for Research and Training in Tropical Diseases", + "type": "child", + "id": "https://ror.org/046j7pv84" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/v1.43/051eysy15.json b/v1.43/051eysy15.json new file mode 100644 index 000000000..ddd56f134 --- /dev/null +++ b/v1.43/051eysy15.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 2925533, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 50.11552, + "lng": 8.68417, + "name": "Frankfurt am Main" + } + } + ], + "established": 1936, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9236 090X" + ], + "preferred": "0000 0004 9236 090X" + }, + { + "type": "fundref", + "all": [ + "100015931" + ], + "preferred": "100015931" + } + ], + "id": "https://ror.org/051eysy15", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://dechema.de/mbf.html" + } + ], + "names": [ + { + "value": "Max Buchner Forschungsstiftung", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Max-Buchner-Forschungsstiftung", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Max Buchner Research Foundation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "MBF", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "MBFSt", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/051g75b06.json b/v1.43/051g75b06.json new file mode 100644 index 000000000..356dc7bf9 --- /dev/null +++ b/v1.43/051g75b06.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 706483, + "geonames_details": { + "country_code": "UA", + "country_name": "Ukraine", + "lat": 49.98081, + "lng": 36.25272, + "name": "Kharkiv" + } + } + ], + "established": 1921, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30257440" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.445530.3" + ], + "preferred": "grid.445530.3" + } + ], + "id": "https://ror.org/051g75b06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ksada.org" + } + ], + "names": [ + { + "value": "Kharkov State Academy of Design and Arts", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Харківська державна академія дизайну і мистецтв", + "types": [ + "label" + ], + "lang": "uk" + }, + { + "value": "KSADA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/051z6e826.json b/v1.43/051z6e826.json new file mode 100644 index 000000000..9c1d9a88e --- /dev/null +++ b/v1.43/051z6e826.json @@ -0,0 +1,84 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2001, + "external_ids": [ + { + "all": [ + "100012088" + ], + "preferred": "100012088", + "type": "fundref" + }, + { + "all": [ + "grid.497360.f" + ], + "preferred": "grid.497360.f", + "type": "grid" + }, + { + "all": [ + "0000 0004 6425 8422" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/051z6e826", + "links": [ + { + "type": "website", + "value": "https://www.arcadiafund.org.uk/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Arcadia Fund" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Lisbet Rausing Charitable Fund" + } + ], + "relationships": [ + { + "label": "Lund Trust", + "type": "related", + "id": "https://ror.org/017d4c820" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/v1.43/052133d12.json b/v1.43/052133d12.json new file mode 100644 index 000000000..aedba57c1 --- /dev/null +++ b/v1.43/052133d12.json @@ -0,0 +1,86 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1902, + "external_ids": [ + { + "all": [ + "grid.266471.0" + ], + "preferred": "grid.266471.0", + "type": "grid" + }, + { + "all": [ + "0000 0004 0413 3513" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7895554" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/052133d12", + "links": [ + { + "type": "website", + "value": "http://www.uindy.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Indianapolis" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.76838, + "lng": -86.15804, + "name": "Indianapolis" + }, + "geonames_id": 4259418 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "University of Indianapolis" + } + ], + "relationships": [ + { + "label": "Indiana University Hospital", + "type": "related", + "id": "https://ror.org/05rbkcx47" + }, + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/0526zh358.json b/v1.43/0526zh358.json new file mode 100644 index 000000000..84a582ff7 --- /dev/null +++ b/v1.43/0526zh358.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 2653822, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.48, + "lng": -3.18, + "name": "Cardiff" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8306 8544" + ], + "preferred": "0000 0004 8306 8544" + }, + { + "type": "fundref", + "all": [ + "501100014332" + ], + "preferred": "501100014332" + } + ], + "id": "https://ror.org/0526zh358", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lsrnw.ac.uk" + } + ], + "names": [ + { + "value": "Life Sciences Research Network Wales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Rhwydwaith Gwyddorau Bywyd Cymru", + "types": [ + "label" + ], + "lang": "cy" + }, + { + "value": "LSRNW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Cardiff University", + "type": "parent", + "id": "https://ror.org/03kk7td41" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/052g8jq94.json b/v1.43/052g8jq94.json new file mode 100644 index 000000000..be3a7cfe2 --- /dev/null +++ b/v1.43/052g8jq94.json @@ -0,0 +1,239 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1968, + "external_ids": [ + { + "all": [ + "0000 0001 2296 0625", + "0000 0001 2097 0205" + ], + "preferred": "0000 0001 2296 0625", + "type": "isni" + }, + { + "all": [ + "501100011104" + ], + "preferred": "501100011104", + "type": "fundref" + }, + { + "all": [ + "Q43452" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.7080.f" + ], + "preferred": "grid.7080.f", + "type": "grid" + } + ], + "id": "https://ror.org/052g8jq94", + "links": [ + { + "type": "website", + "value": "https://www.uab.cat" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Autonomous_University_of_Barcelona" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.49109, + "lng": 2.14079, + "name": "Cerdanyola del Vallès" + }, + "geonames_id": 3109402 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Universitat Autònoma de Barcelona" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Autónoma de Barcelona" + }, + { + "lang": "eu", + "types": [ + "label" + ], + "value": "Bartzelonako Unibertsitate Autonomoa" + }, + { + "lang": "gl", + "types": [ + "label" + ], + "value": "Universidade Autónoma de Barcelona" + }, + { + "lang": "en", + "types": [ + "label" + ], + "value": "Autonomous University of Barcelona" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "UAB" + } + ], + "relationships": [ + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "related", + "id": "https://ror.org/03abrgd14" + }, + { + "label": "Hospital Universitari Germans Trias i Pujol", + "type": "related", + "id": "https://ror.org/04wxdxa47" + }, + { + "label": "Barcelona School of Economics", + "type": "related", + "id": "https://ror.org/02k09n368" + }, + { + "label": "Centre de Recerca Matemàtica", + "type": "related", + "id": "https://ror.org/020s51w82" + }, + { + "label": "Computer Vision Center", + "type": "related", + "id": "https://ror.org/00s0nnj93" + }, + { + "label": "Centre for Demographic Studies", + "type": "related", + "id": "https://ror.org/02dm87055" + }, + { + "label": "Institut Universitari d'Investigació en Atenció Primària Jordi Gol", + "type": "related", + "id": "https://ror.org/0370bpp07" + }, + { + "label": "Puigvert Foundation", + "type": "related", + "id": "https://ror.org/03qwx2883" + }, + { + "label": "Fundació Salut i Envelliment UAB", + "type": "related", + "id": "https://ror.org/03c7e3050" + }, + { + "label": "Hospital del Mar Research Institute", + "type": "related", + "id": "https://ror.org/042nkmz09" + }, + { + "label": "Institut Barcelona d'Estudis Internacionals", + "type": "related", + "id": "https://ror.org/05rke5d69" + }, + { + "label": "Institut Català de Paleontologia Miquel Crusafont", + "type": "related", + "id": "https://ror.org/04qeh2h86" + }, + { + "label": "Institut Català d'Oncologia", + "type": "related", + "id": "https://ror.org/01j1eb875" + }, + { + "label": "Institut de Recerca Sant Pau", + "type": "related", + "id": "https://ror.org/005teat46" + }, + { + "label": "Vall d'Hebron Institut de Recerca", + "type": "related", + "id": "https://ror.org/01d5vx451" + }, + { + "label": "Institut d'Estudis Espacials de Catalunya", + "type": "related", + "id": "https://ror.org/00k6njn28" + }, + { + "label": "Institut d'Investigació en Ciències de la Salut Germans Trias i Pujol", + "type": "related", + "id": "https://ror.org/03bzdww12" + }, + { + "label": "Institute of Research and Innovation Parc Tauli", + "type": "related", + "id": "https://ror.org/038c0gc18" + }, + { + "label": "Centre Tecnològic Forestal de Catalunya", + "type": "related", + "id": "https://ror.org/02tt2zf29" + }, + { + "label": "Vall d'Hebron Institute of Oncology", + "type": "related", + "id": "https://ror.org/054xx3904" + }, + { + "label": "IrsiCaixa", + "type": "related", + "id": "https://ror.org/001synm23" + }, + { + "label": "Institute for High Energy Physics", + "type": "related", + "id": "https://ror.org/01sdrjx85" + }, + { + "label": "Center for Research in Agricultural Genomics", + "type": "child", + "id": "https://ror.org/04tz2h245" + }, + { + "label": "Institut Català de Nanociència i Nanotecnologia", + "type": "child", + "id": "https://ror.org/00k1qja49" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/052gp0981.json b/v1.43/052gp0981.json new file mode 100644 index 000000000..248ee9df4 --- /dev/null +++ b/v1.43/052gp0981.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1967, + "external_ids": [ + { + "all": [ + "501100007459" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.480944.5" + ], + "preferred": "grid.480944.5", + "type": "grid" + } + ], + "id": "https://ror.org/052gp0981", + "links": [ + { + "type": "website", + "value": "https://www.msif.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Multiple_Sclerosis_International_Federation" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MSIF" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Multiple Sclerosis International Federation" + } + ], + "relationships": [ + { + "label": "International Progressive MS Alliance", + "type": "child", + "id": "https://ror.org/04hh1k009" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/v1.43/052ss8w32.json b/v1.43/052ss8w32.json new file mode 100644 index 000000000..69bdfcda9 --- /dev/null +++ b/v1.43/052ss8w32.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2306104, + "geonames_details": { + "country_code": "GH", + "country_name": "Ghana", + "lat": 5.55602, + "lng": -0.1969, + "name": "Accra" + } + } + ], + "established": 1993, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0582 2706" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5555350" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434994.7" + ], + "preferred": "grid.434994.7" + } + ], + "id": "https://ror.org/052ss8w32", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ghs.gov.gh" + } + ], + "names": [ + { + "value": "Ghana Health Service", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ghanaian Health Service", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "GHS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ministry of Health", + "type": "parent", + "id": "https://ror.org/05c7h4935" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0538nf417.json b/v1.43/0538nf417.json new file mode 100644 index 000000000..6e9d129c5 --- /dev/null +++ b/v1.43/0538nf417.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 3199016, + "geonames_details": { + "country_code": "SI", + "country_name": "Slovenia", + "lat": 45.51123, + "lng": 13.65655, + "name": "Izola" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/0538nf417", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://innorenew.eu" + } + ], + "names": [ + { + "value": "InnoRenew CoE", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "InnoRenew CoE Center odličnosti za raziskave in inovacije na področju obnovljivih materialov in zdravega bivanjskega okolja", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/053jm8142.json b/v1.43/053jm8142.json new file mode 100644 index 000000000..842c80b3c --- /dev/null +++ b/v1.43/053jm8142.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 5015701, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.81252, + "lng": -86.01865, + "name": "Zeeland" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.492550.f" + ], + "preferred": "grid.492550.f" + } + ], + "id": "https://ror.org/053jm8142", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.spectrumhealth.org/locations/spectrum-health-zeeland-community-hospital" + } + ], + "names": [ + { + "value": "Corewell Health Zeeland Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Zeeland Community Hospital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/053xt2a19.json b/v1.43/053xt2a19.json new file mode 100644 index 000000000..7dd4ce959 --- /dev/null +++ b/v1.43/053xt2a19.json @@ -0,0 +1,95 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2007, + "external_ids": [ + { + "all": [ + "100010088" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.480804.0" + ], + "preferred": "grid.480804.0", + "type": "grid" + }, + { + "all": [ + "0000 0004 4679 6200" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q22312909" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/053xt2a19", + "links": [ + { + "type": "website", + "value": "http://www.lidc.org.uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/London_International_Development_Centre" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LIDC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "London International Development Centre" + } + ], + "relationships": [ + { + "label": "Leverhulme Centre for Integrative Research on Agriculture and Health", + "type": "child", + "id": "https://ror.org/041qq2t66" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/v1.43/054225q67.json b/v1.43/054225q67.json new file mode 100644 index 000000000..3cb537c6d --- /dev/null +++ b/v1.43/054225q67.json @@ -0,0 +1,140 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2002, + "external_ids": [ + { + "all": [ + "501100000289" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.11485.39" + ], + "preferred": "grid.11485.39", + "type": "grid" + }, + { + "all": [ + "0000 0004 0422 0975" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q326079" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/054225q67", + "links": [ + { + "type": "website", + "value": "http://www.cancerresearchuk.org/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Cancer_Research_UK" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + }, + "geonames_id": 2643743 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CRUK" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Cancer Research UK" + } + ], + "relationships": [ + { + "label": "CRUK/MRC Oxford Institute for Radiation Oncology", + "type": "child", + "id": "https://ror.org/011hz4254" + }, + { + "label": "The Beatson Institute for Cancer Research", + "type": "child", + "id": "https://ror.org/03pv69j64" + }, + { + "label": "Cancer Research UK Cambridge Center", + "type": "child", + "id": "https://ror.org/0068m0j38" + }, + { + "label": "Cancer Research UK Clinical Trials Unit", + "type": "child", + "id": "https://ror.org/03qxptw71" + }, + { + "label": "Edinburgh Cancer Research", + "type": "child", + "id": "https://ror.org/05a7t9b67" + }, + { + "label": "Cancer Research UK Manchester Institute", + "type": "child", + "id": "https://ror.org/037405c78" + }, + { + "label": "Cancer Research UK Oxford Centre", + "type": "child", + "id": "https://ror.org/05kgg0s20" + }, + { + "label": "Cancer Research UK Technology", + "type": "child", + "id": "https://ror.org/02twrxy18" + }, + { + "label": "Wellcome/Cancer Research UK Gurdon Institute", + "type": "child", + "id": "https://ror.org/00fp3ce15" + }, + { + "label": "Cancer Research UK Manchester Centre", + "type": "child", + "id": "https://ror.org/033svsm10" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/v1.43/054a6d704.json b/v1.43/054a6d704.json new file mode 100644 index 000000000..810200296 --- /dev/null +++ b/v1.43/054a6d704.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1960 2720" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1436777" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.425604.1" + ], + "preferred": "grid.425604.1" + } + ], + "id": "https://ror.org/054a6d704", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.sepi.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Sociedad_Estatal_de_Participaciones_Industriales" + } + ], + "names": [ + { + "value": "Sociedad Estatal de Participaciones Industriales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "SEPI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/054wajj09.json b/v1.43/054wajj09.json new file mode 100644 index 000000000..880254dc9 --- /dev/null +++ b/v1.43/054wajj09.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1897, + "external_ids": [ + { + "all": [ + "grid.431789.0" + ], + "preferred": "grid.431789.0", + "type": "grid" + }, + { + "all": [ + "0000 0004 0412 9856" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5945524" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/054wajj09", + "links": [ + { + "type": "website", + "value": "https://www.huntington.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Huntington_University_(United_States)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 40.8831, + "lng": -85.49748, + "name": "Huntington" + }, + "geonames_id": 4921725 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Huntington University" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/0551gkb08.json b/v1.43/0551gkb08.json new file mode 100644 index 000000000..dbb646406 --- /dev/null +++ b/v1.43/0551gkb08.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 5398563, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.42411, + "lng": -122.16608, + "name": "Stanford" + } + } + ], + "established": 1978, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8307 2922" + ], + "preferred": "0000 0004 8307 2922" + }, + { + "type": "fundref", + "all": [ + "100015269" + ], + "preferred": "100015269" + } + ], + "id": "https://ror.org/0551gkb08", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://systemx.stanford.edu" + } + ], + "names": [ + { + "value": "Stanford SystemX Alliance", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Center for Integrated Systems", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CIS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Stanford University", + "type": "parent", + "id": "https://ror.org/00f54p054" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05591te55.json b/v1.43/05591te55.json new file mode 100644 index 000000000..963f9c007 --- /dev/null +++ b/v1.43/05591te55.json @@ -0,0 +1,150 @@ +{ + "locations": [ + { + "geonames_id": 2867714, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 48.13743, + "lng": 11.57549, + "name": "Munich" + } + } + ], + "established": 1472, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1936 973X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100005722", + "501100006192", + "501100009401" + ], + "preferred": "501100005722" + }, + { + "type": "wikidata", + "all": [ + "Q55044" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.5252.0" + ], + "preferred": "grid.5252.0" + } + ], + "id": "https://ror.org/05591te55", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.lmu.de" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Ludwig_Maximilian_University_of_Munich" + } + ], + "names": [ + { + "value": "Ludwig-Maximilians-Universität München", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Munich", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Universität München", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ludwig Maximilian University of Munich", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ludwig-Maximilians-Universität in Munich", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "LMU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "LMU Klinikum", + "type": "related", + "id": "https://ror.org/02jet3w32" + }, + { + "label": "Centre for Advanced Laser Applications", + "type": "child", + "id": "https://ror.org/04j4kfb22" + }, + { + "label": "Ifo Institute for Economic Research", + "type": "child", + "id": "https://ror.org/045495t75" + }, + { + "label": "Center for Integrated Protein Science Munich", + "type": "child", + "id": "https://ror.org/032hzb643" + }, + { + "label": "Center for NanoScience", + "type": "child", + "id": "https://ror.org/002epp671" + }, + { + "label": "Munich Cluster for Systems Neurology", + "type": "child", + "id": "https://ror.org/025z3z560" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/055rh9p75.json b/v1.43/055rh9p75.json new file mode 100644 index 000000000..7f0666e71 --- /dev/null +++ b/v1.43/055rh9p75.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 1800627, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.46784, + "lng": 104.68168, + "name": "Mianyang" + } + } + ], + "established": 2007, + "external_ids": [], + "id": "https://ror.org/055rh9p75", + "domains": [], + "links": [], + "names": [ + { + "value": "State Key Laboratory of Aerodynamics", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "State Key Lab of Aerodynamics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "空气动力学国家重点实验室", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Laboratory of Aerodynamic Science and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "State Key Lab of Aerodynamic Science and Technology", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "空天飞行空气动力科学与技术全国重点实验室", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [ + { + "label": "China Aerodynamics Research and Development Center", + "type": "parent", + "id": "https://ror.org/00jma8s40" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/055s8hs34.json b/v1.43/055s8hs34.json new file mode 100644 index 000000000..941104cb1 --- /dev/null +++ b/v1.43/055s8hs34.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 2968705, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.7939, + "lng": 2.35992, + "name": "Villejuif" + } + } + ], + "established": 2010, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0480 0128" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.493856.5" + ], + "preferred": "grid.493856.5" + } + ], + "id": "https://ror.org/055s8hs34", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gustaveroussy.fr/en/content/umr-8200-0" + } + ], + "names": [ + { + "value": "Stabilité génétique et oncogenèse", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Genetic Stability and Oncogenesis", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Délégation Ile-de-France Villejuif", + "type": "parent", + "id": "https://ror.org/008kn4z11" + }, + { + "label": "Délégation Paris-Villejuif-03", + "type": "parent", + "id": "https://ror.org/007x3c094" + }, + { + "label": "Institut Gustave Roussy", + "type": "parent", + "id": "https://ror.org/0321g0743" + }, + { + "label": "University of Paris-Sud", + "type": "parent", + "id": "https://ror.org/028rypz17" + } + ], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0561n6946.json b/v1.43/0561n6946.json new file mode 100644 index 000000000..55d196fe2 --- /dev/null +++ b/v1.43/0561n6946.json @@ -0,0 +1,122 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1866, + "external_ids": [ + { + "all": [ + "501100006476" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.418333.e" + ], + "preferred": "grid.418333.e", + "type": "grid" + }, + { + "all": [ + "0000 0004 1937 1389" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q901677", + "Q10302891", + "Q26690209", + "Q39418041" + ], + "preferred": "Q901677", + "type": "wikidata" + } + ], + "id": "https://ror.org/0561n6946", + "links": [ + { + "type": "website", + "value": "http://www.academiaromana.ro/def2002eng.htm" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Romanian_Academy" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "RO", + "country_name": "Romania", + "lat": 44.43225, + "lng": 26.10626, + "name": "Bucharest" + }, + "geonames_id": 683506 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Academia Română" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Romanian Academy" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Societatea Academică Romînă" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Societatea Literară Română" + } + ], + "relationships": [ + { + "label": "Institutul National de Cercetari Economice \"Costin C. Kiritescu\"", + "type": "child", + "id": "https://ror.org/04kddtt70" + }, + { + "label": "Institutul de Chimie Macromoleculară Petru Poni", + "type": "child", + "id": "https://ror.org/0340mea86" + }, + { + "label": "Institutul de Studii Sud-Est Europene", + "type": "child", + "id": "https://ror.org/007bytg49" + } + ], + "status": "active", + "types": [ + "archive" + ] +} \ No newline at end of file diff --git a/v1.43/0566sj483.json b/v1.43/0566sj483.json new file mode 100644 index 000000000..ca148b124 --- /dev/null +++ b/v1.43/0566sj483.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1847, + "external_ids": [ + { + "all": [ + "grid.255360.7" + ], + "preferred": "grid.255360.7", + "type": "grid" + }, + { + "all": [ + "0000 0001 1960 0522" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5326502" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/0566sj483", + "links": [ + { + "type": "website", + "value": "http://www.earlham.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Earlham_College" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.82894, + "lng": -84.89024, + "name": "Richmond" + }, + "geonames_id": 4263681 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Earlham College" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/05679z329.json b/v1.43/05679z329.json new file mode 100644 index 000000000..dc6f2f21f --- /dev/null +++ b/v1.43/05679z329.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5811696, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 47.65966, + "lng": -117.42908, + "name": "Spokane" + } + } + ], + "established": 2009, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6087 9942" + ], + "preferred": "0000 0004 6087 9942" + }, + { + "type": "fundref", + "all": [ + "100011502" + ], + "preferred": "100011502" + } + ], + "id": "https://ror.org/05679z329", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://wagrains.org" + } + ], + "names": [ + { + "value": "Washington Grain Commission", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Washington State Grain Commission", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "WGC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0568g2481.json b/v1.43/0568g2481.json new file mode 100644 index 000000000..57ddc1737 --- /dev/null +++ b/v1.43/0568g2481.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 4487042, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 35.7721, + "lng": -78.63861, + "name": "Raleigh" + } + } + ], + "established": 2007, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012671" + ], + "preferred": "100012671" + } + ], + "id": "https://ror.org/0568g2481", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://thenonwovensinstitute.com" + } + ], + "names": [ + { + "value": "The Nonwovens Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Nonwovens Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "North Carolina State University Nonwovens Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NWI NCSU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "North Carolina State University", + "type": "parent", + "id": "https://ror.org/04tj63d06" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05691ev83.json b/v1.43/05691ev83.json new file mode 100644 index 000000000..0b08acccd --- /dev/null +++ b/v1.43/05691ev83.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 5391959, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 37.77493, + "lng": -122.41942, + "name": "San Francisco" + } + } + ], + "established": 2001, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6073 3003" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30257865" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.446377.5" + ], + "preferred": "grid.446377.5" + } + ], + "id": "https://ror.org/05691ev83", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://alexandriaarchive.org/" + } + ], + "names": [ + { + "value": "Alexandria Archive Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Open Context", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OpenContext", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OpenContext.org", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "AAI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "archive" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/056nnzb78.json b/v1.43/056nnzb78.json new file mode 100644 index 000000000..22f1f617e --- /dev/null +++ b/v1.43/056nnzb78.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 5134086, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.15478, + "lng": -77.61556, + "name": "Rochester" + } + } + ], + "established": 1881, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0940 8270" + ], + "preferred": "0000 0001 0940 8270" + }, + { + "type": "wikidata", + "all": [ + "Q70060834" + ], + "preferred": "Q70060834" + }, + { + "type": "fundref", + "all": [ + "100011435" + ], + "preferred": "100011435" + } + ], + "id": "https://ror.org/056nnzb78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.rasny.org" + } + ], + "names": [ + { + "value": "Rochester Academy of Science", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "RAS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/056vjed89.json b/v1.43/056vjed89.json new file mode 100644 index 000000000..cf846f1fe --- /dev/null +++ b/v1.43/056vjed89.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 3114472, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 42.81687, + "lng": -1.64323, + "name": "Pamplona" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4687 7107" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.424804.e" + ], + "preferred": "grid.424804.e" + } + ], + "id": "https://ror.org/056vjed89", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.cemitec.com/" + } + ], + "names": [ + { + "value": "Centro Multidisciplinar de Tecnologías para la Industria", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Cetena Foundation´s Multidisciplinary Innovation and Technology Centre of Navarre", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CEMITEC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0576by029.json b/v1.43/0576by029.json new file mode 100644 index 000000000..2e22ced2e --- /dev/null +++ b/v1.43/0576by029.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 265243, + "geonames_details": { + "country_code": "GR", + "country_name": "Greece", + "lat": 38.05, + "lng": 23.8, + "name": "Marousi" + } + } + ], + "established": 2003, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0393 5688" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.19843.37" + ], + "preferred": "grid.19843.37" + } + ], + "id": "https://ror.org/0576by029", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.athena-innovation.gr/el/announce/pressreleases.html" + } + ], + "names": [ + { + "value": "Athena Research and Innovation Center In Information Communication & Knowledge Technologies", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Athena RIC", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Athena Research and Innovation Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Athena Research Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Athena RC", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/057apef51.json b/v1.43/057apef51.json new file mode 100644 index 000000000..f8ef3fa78 --- /dev/null +++ b/v1.43/057apef51.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 6077243, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.50884, + "lng": -73.58781, + "name": "Montreal" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 1088 8602" + ], + "preferred": "0000 0005 1088 8602" + }, + { + "type": "fundref", + "all": [ + "100015427" + ], + "preferred": "100015427" + } + ], + "id": "https://ror.org/057apef51", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://cqmf-qcam.ca" + } + ], + "names": [ + { + "value": "Centre québécois sur les matériaux fonctionnels", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Quebec Centre for Advanced Materials", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "CQMF", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "QCAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/057c1ry34.json b/v1.43/057c1ry34.json new file mode 100644 index 000000000..e60686359 --- /dev/null +++ b/v1.43/057c1ry34.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 6138374, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.63076, + "lng": -72.95699, + "name": "Saint-Hyacinthe" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 5137" + ], + "preferred": "0000 0004 4910 5137" + } + ], + "id": "https://ror.org/057c1ry34", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.santemonteregie.qc.ca/est" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de la Montérégie-Est", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de la Montérégie-Est", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/057k6gq03.json b/v1.43/057k6gq03.json new file mode 100644 index 000000000..44005fb87 --- /dev/null +++ b/v1.43/057k6gq03.json @@ -0,0 +1,62 @@ +{ + "locations": [ + { + "geonames_id": 3108681, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.76401, + "lng": -2.46883, + "name": "Soria" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/057k6gq03", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cesefor.com" + } + ], + "names": [ + { + "value": "Cesefor", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Fundacion Centro de Servicios y Promocion Forestal y de su Industria de Castilla y Leon", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Instituto de Biotecnología de León", + "type": "predecessor", + "id": "https://ror.org/03ry8wj79" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/057p7e749.json b/v1.43/057p7e749.json new file mode 100644 index 000000000..00bdb9585 --- /dev/null +++ b/v1.43/057p7e749.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 1705536, + "geonames_details": { + "country_code": "PH", + "country_name": "Philippines", + "lat": 14.17025, + "lng": 121.24181, + "name": "Los Baños" + } + } + ], + "established": 1972, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0095 710X" + ], + "preferred": "0000 0001 0095 710X" + }, + { + "type": "wikidata", + "all": [ + "Q7185026" + ], + "preferred": "Q7185026" + }, + { + "type": "fundref", + "all": [ + "501100014166" + ], + "preferred": "501100014166" + } + ], + "id": "https://ror.org/057p7e749", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.pcaarrd.dost.gov.ph" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Philippine_Council_for_Agriculture%2C_Aquatic%2C_and_Natural_Resources_Research_and_Development" + } + ], + "names": [ + { + "value": "Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PCAARRD", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "DOST-PCAARRD", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Department of Science and Technology", + "type": "parent", + "id": "https://ror.org/05tgxx705" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/057yy7z71.json b/v1.43/057yy7z71.json new file mode 100644 index 000000000..73bdf51d7 --- /dev/null +++ b/v1.43/057yy7z71.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1958, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0496 3568" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30291296" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.437178.e" + ], + "preferred": "grid.437178.e" + } + ], + "id": "https://ror.org/057yy7z71", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ramem.com/" + } + ], + "names": [ + { + "value": "Ramem (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Arquimea (Spain)", + "type": "successor", + "id": "https://ror.org/04mnaqe33" + } + ], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0589k3111.json b/v1.43/0589k3111.json new file mode 100644 index 000000000..59a21e138 --- /dev/null +++ b/v1.43/0589k3111.json @@ -0,0 +1,97 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30299499" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.457369.a" + ], + "preferred": "grid.457369.a" + } + ], + "id": "https://ror.org/0589k3111", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.idf.inserm.fr/rubriques/l-inserm-en-ile-de-france/delegation-paris-11" + } + ], + "names": [ + { + "value": "Délégation Paris 11", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DR PARIS 11", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "Centre d'Épidémiologie sur les Causes Médicales de Décès", + "type": "child", + "id": "https://ror.org/02bn1dj67" + }, + { + "label": "Hémostase et Dynamique Cellulaire Vasculaire", + "type": "child", + "id": "https://ror.org/05dsek450" + }, + { + "label": "Institute of Psychiatry and Neuroscience of Paris", + "type": "child", + "id": "https://ror.org/02g40zn06" + }, + { + "label": "Laboratory Signaling and Cardiovascular Pathophysiology", + "type": "child", + "id": "https://ror.org/04bkzce69" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/058cmwb06.json b/v1.43/058cmwb06.json new file mode 100644 index 000000000..750ef23b9 --- /dev/null +++ b/v1.43/058cmwb06.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 1938, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0132 5286" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1750397" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.426205.7" + ], + "preferred": "grid.426205.7" + } + ], + "id": "https://ror.org/058cmwb06", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.once.es" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/ONCE" + } + ], + "names": [ + { + "value": "Organización Nacional de Ciegos Españoles", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "National Organization of Spanish blind people", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "ONCE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/058ne9w36.json b/v1.43/058ne9w36.json new file mode 100644 index 000000000..ab2e4aba9 --- /dev/null +++ b/v1.43/058ne9w36.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0490 965X" + ], + "preferred": "0000 0004 0490 965X" + }, + { + "type": "fundref", + "all": [ + "100016916" + ], + "preferred": "100016916" + } + ], + "id": "https://ror.org/058ne9w36", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.royalmarsden.org" + } + ], + "names": [ + { + "value": "Royal Marsden Cancer Charity", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Royal Marsden Hospital", + "type": "parent", + "id": "https://ror.org/034vb5t35" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/058sakv40.json b/v1.43/058sakv40.json new file mode 100644 index 000000000..b8f088b17 --- /dev/null +++ b/v1.43/058sakv40.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 5012521, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.13949, + "lng": -83.17826, + "name": "Trenton" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0458 375X" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.416679.b" + ], + "preferred": "grid.416679.b" + } + ], + "id": "https://ror.org/058sakv40", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/locations/beaumont-hospital-trenton" + } + ], + "names": [ + { + "value": "Corewell Health William Beaumont University Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Oakwood Southshore Medical Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Beaumont Hospital, Trenton", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/059gc9s81.json b/v1.43/059gc9s81.json new file mode 100644 index 000000000..9692a1120 --- /dev/null +++ b/v1.43/059gc9s81.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1973, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4679 2779" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.473816.f" + ], + "preferred": "grid.473816.f" + } + ], + "id": "https://ror.org/059gc9s81", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://gcm.unu.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/United_Nations_University" + } + ], + "names": [ + { + "value": "United Nations University Institute on Globalization, Culture and Mobility", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "UNU-GCM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United Nations University", + "type": "parent", + "id": "https://ror.org/01cdrde68" + } + ], + "status": "inactive", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/059wz5438.json b/v1.43/059wz5438.json new file mode 100644 index 000000000..01812e70e --- /dev/null +++ b/v1.43/059wz5438.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0512 5953" + ], + "preferred": "0000 0004 0512 5953" + }, + { + "type": "wikidata", + "all": [ + "Q842509" + ], + "preferred": "Q842509" + } + ], + "id": "https://ror.org/059wz5438", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.chng.com.cn" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/China_Huaneng_Group" + } + ], + "names": [ + { + "value": "China Huaneng Group Co., Ltd. (China)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "China Huaneng Group Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "China Huaneng Group Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "China Huaneng Group", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中国华能集团", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/059zf1d45.json b/v1.43/059zf1d45.json new file mode 100644 index 000000000..1c5a387b9 --- /dev/null +++ b/v1.43/059zf1d45.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 6356153, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.55222, + "lng": 2.20901, + "name": "Mollet del Vallès" + } + } + ], + "established": 1997, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0507 1975" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434941.f" + ], + "preferred": "grid.434941.f" + } + ], + "id": "https://ror.org/059zf1d45", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.iuct.com/en/" + } + ], + "names": [ + { + "value": "Institut Universitari de Ciencia i Tecnologia (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IUCT", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05a0dhs15.json b/v1.43/05a0dhs15.json new file mode 100644 index 000000000..d986de90d --- /dev/null +++ b/v1.43/05a0dhs15.json @@ -0,0 +1,309 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1794, + "external_ids": [ + { + "all": [ + "0000 0001 2353 2622" + ], + "preferred": "0000 0001 2353 2622", + "type": "isni" + }, + { + "all": [ + "100007649" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "Q83259" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.5607.4" + ], + "preferred": "grid.5607.4", + "type": "grid" + } + ], + "id": "https://ror.org/05a0dhs15", + "links": [ + { + "type": "website", + "value": "https://www.ens.psl.eu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/%C3%89cole_Normale_Sup%C3%A9rieure" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + }, + "geonames_id": 2988507 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "École Normale Supérieure - PSL" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Normale sup" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "ENS Paris" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "ENS" + } + ], + "relationships": [ + { + "label": "Archéologie et Philologie d’Orient et d’Occident", + "type": "child", + "id": "https://ror.org/05nsvn336" + }, + { + "label": "Centre Maurice-Halbwachs", + "type": "child", + "id": "https://ror.org/01paa1e42" + }, + { + "label": "Centre de Théorie et Analyse du Droit", + "type": "child", + "id": "https://ror.org/04bg5j190" + }, + { + "label": "Cereep Ecotron Île-de-France", + "type": "child", + "id": "https://ror.org/05j6qf006" + }, + { + "label": "Département de mathématiques et applications", + "type": "child", + "id": "https://ror.org/03k9z2963" + }, + { + "label": "Département d'Informatique", + "type": "child", + "id": "https://ror.org/05y6rqs46" + }, + { + "label": "Institut Jean Nicod", + "type": "child", + "id": "https://ror.org/01qfab443" + }, + { + "label": "Institut d'Histoire Moderne et Contemporaine", + "type": "child", + "id": "https://ror.org/04795e365" + }, + { + "label": "Institut de Biologie de l'École Normale Supérieure", + "type": "child", + "id": "https://ror.org/03mxktp47" + }, + { + "label": "Institut des Textes et Manuscrits Modernes", + "type": "child", + "id": "https://ror.org/00x1d4q78" + }, + { + "label": "Institute for the History and Philosophy of Science and Technology", + "type": "child", + "id": "https://ror.org/02nnpw434" + }, + { + "label": "Laboratoire Kastler Brossel", + "type": "child", + "id": "https://ror.org/01h14ww21" + }, + { + "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 Sciences Cognitives et Psycholinguistique", + "type": "child", + "id": "https://ror.org/05fvhm231" + }, + { + "label": "Laboratoire des Biomolécules", + "type": "child", + "id": "https://ror.org/05vd6h165" + }, + { + "label": "Laboratoire des Systèmes Perceptifs", + "type": "child", + "id": "https://ror.org/030za3c40" + }, + { + "label": "Laboratoire d’Etudes du Rayonnement et de la Matière en Astrophysique et Atmosphères", + "type": "child", + "id": "https://ror.org/01g5pq328" + }, + { + "label": "Langues, Textes, Traitements Informatiques, Cognition", + "type": "child", + "id": "https://ror.org/03ms1y683" + }, + { + "label": "Pays Germaniques", + "type": "child", + "id": "https://ror.org/04f9rh541" + }, + { + "label": "Processus d'Activation Sélective par Transfert d'Énergie Uni-électronique ou Radiatif", + "type": "child", + "id": "https://ror.org/033t7vz72" + }, + { + "label": "Théorie et Histoire des Arts et des Littératures de la Modernité", + "type": "child", + "id": "https://ror.org/00ca65425" + }, + { + "label": "Paris Jourdan Sciences Economiques", + "type": "child", + "id": "https://ror.org/03vtagt31" + }, + { + "label": "Laboratoire de Neurosciences Cognitives et Computationnelles", + "type": "child", + "id": "https://ror.org/01e8w0016" + }, + { + "label": "Relais d'information sur les sciences de la cognition", + "type": "child", + "id": "https://ror.org/04ved1v49" + }, + { + "label": "Centre d’Archives en Philosophie, Histoire et Édition des Sciences", + "type": "child", + "id": "https://ror.org/03j7mz841" + }, + { + "label": "Institut des Matériaux Poreux de Paris", + "type": "child", + "id": "https://ror.org/04v668f18" + }, + { + "label": "Fondation de l'Ecole Normale Superieure", + "type": "child", + "id": "https://ror.org/02fcsjn79" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Couplage Multi-physiques et Multi-échelles en mécanique géo-environnemental", + "type": "child", + "id": "https://ror.org/01w1erp60" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Tara Oceans Systems Ecology & Evolution", + "type": "child", + "id": "https://ror.org/04fgntk96" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Institut de Chimie Moléculaire de Paris : organique, inorganique et biologique", + "type": "child", + "id": "https://ror.org/04ef65y11" + }, + { + "label": "INFRANALYTICS", + "type": "child", + "id": "https://ror.org/04yem5s35" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Paris School of Economics", + "type": "child", + "id": "https://ror.org/01qtp1053" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/v1.43/05a0ya142.json b/v1.43/05a0ya142.json new file mode 100644 index 000000000..3f5ce0343 --- /dev/null +++ b/v1.43/05a0ya142.json @@ -0,0 +1,139 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2004, + "external_ids": [ + { + "all": [ + "100013114" + ], + "preferred": "100013114", + "type": "fundref" + }, + { + "all": [ + "grid.66859.34" + ], + "preferred": "grid.66859.34", + "type": "grid" + }, + { + "all": [ + "0000 0004 0546 1623" + ], + "preferred": "0000 0004 0546 1623", + "type": "isni" + }, + { + "all": [ + "Q4971893" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05a0ya142", + "links": [ + { + "type": "website", + "value": "http://www.broadinstitute.org/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Broad_Institute" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.3751, + "lng": -71.10561, + "name": "Cambridge" + }, + "geonames_id": 4931972 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Broad Institute" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Broad Institute of MIT and Harvard" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "El Instituto Broad" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Eli and Edythe L. Broad Institute of MIT and Harvard" + } + ], + "relationships": [ + { + "label": "Beth Israel Deaconess Medical Center", + "type": "related", + "id": "https://ror.org/04drvxt59" + }, + { + "label": "Boston Children's Hospital", + "type": "related", + "id": "https://ror.org/00dvg7y05" + }, + { + "label": "Brigham and Women's Hospital", + "type": "related", + "id": "https://ror.org/04b6nzv94" + }, + { + "label": "Harvard University", + "type": "related", + "id": "https://ror.org/03vek6s52" + }, + { + "label": "Massachusetts General Hospital", + "type": "related", + "id": "https://ror.org/002pd6e78" + }, + { + "label": "Massachusetts Institute of Technology", + "type": "related", + "id": "https://ror.org/042nb2s44" + }, + { + "label": "Stanley Center for Psychiatric Research", + "type": "child", + "id": "https://ror.org/01tm9b530" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/v1.43/05a28rw58.json b/v1.43/05a28rw58.json new file mode 100644 index 000000000..23594541c --- /dev/null +++ b/v1.43/05a28rw58.json @@ -0,0 +1,164 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1855, + "external_ids": [ + { + "all": [ + "501100003006", + "501100001710", + "501100003070" + ], + "preferred": "501100003006", + "type": "fundref" + }, + { + "all": [ + "grid.5801.c" + ], + "preferred": "grid.5801.c", + "type": "grid" + }, + { + "all": [ + "0000 0001 2156 2780" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q11942" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05a28rw58", + "links": [ + { + "type": "website", + "value": "https://ethz.ch" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/ETH_Zurich" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 47.36667, + "lng": 8.55, + "name": "Zurich" + }, + "geonames_id": 2657896 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "ETH Zurich" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "ETH Zurich" + }, + { + "lang": "de", + "types": [ + "label" + ], + "value": "ETH Zürich" + }, + { + "lang": "it", + "types": [ + "label" + ], + "value": "ETH di Zurigo" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Eidgenössische Technische Hochschule Zürich" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Politecnico Federale di Zurigo" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Swiss Federal Institute of Technology in Zurich" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "École Polytechnique Fédérale de Zurich" + } + ], + "relationships": [ + { + "label": "Institute for Biomedical Engineering", + "type": "child", + "id": "https://ror.org/00baskk38" + }, + { + "label": "Swiss Data Science Center", + "type": "child", + "id": "https://ror.org/02hdt9m26" + }, + { + "label": "CSCS - Swiss National Supercomputing Centre", + "type": "child", + "id": "https://ror.org/04rzmms09" + }, + { + "label": "Board of the Swiss Federal Institutes of Technology", + "type": "parent", + "id": "https://ror.org/01rvn4p91" + }, + { + "label": "ETH Zürich Foundation", + "type": "related", + "id": "https://ror.org/03nqkz164" + }, + { + "label": "NCCR SwissMAP", + "type": "child", + "id": "https://ror.org/00xzacp61" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/05a4pj207.json b/v1.43/05a4pj207.json new file mode 100644 index 000000000..5454425f7 --- /dev/null +++ b/v1.43/05a4pj207.json @@ -0,0 +1,100 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1868, + "external_ids": [ + { + "all": [ + "100010962" + ], + "preferred": "100010962", + "type": "fundref" + }, + { + "all": [ + "grid.264266.2" + ], + "preferred": "grid.264266.2", + "type": "grid" + }, + { + "all": [ + "0000 0000 9340 0716" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7603623" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05a4pj207", + "links": [ + { + "type": "website", + "value": "http://www2.cortland.edu/home/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/State_University_of_New_York_at_Cortland" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.60118, + "lng": -76.18048, + "name": "Cortland" + }, + "geonames_id": 5113790 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "SUNY Cortland" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "State University of New York College at Cortland" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/05b0g2v72.json b/v1.43/05b0g2v72.json new file mode 100644 index 000000000..23799c126 --- /dev/null +++ b/v1.43/05b0g2v72.json @@ -0,0 +1,95 @@ +{ + "locations": [ + { + "geonames_id": 4931972, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.3751, + "lng": -71.10561, + "name": "Cambridge" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q7300869" + ], + "preferred": "Q7300869" + }, + { + "type": "fundref", + "all": [ + "100013721" + ], + "preferred": "100013721" + } + ], + "id": "https://ror.org/05b0g2v72", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://rcc.harvard.edu" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Real_Colegio_Complutense" + } + ], + "names": [ + { + "value": "Real Colegio Complutense", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Real Colegio Complutense at Harvard University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "RCC at Harvard University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "RCCHU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Harvard University", + "type": "parent", + "id": "https://ror.org/03vek6s52" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05bjr0y28.json b/v1.43/05bjr0y28.json new file mode 100644 index 000000000..d8c4253bd --- /dev/null +++ b/v1.43/05bjr0y28.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 5278052, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.01168, + "lng": -88.23148, + "name": "Waukesha" + } + } + ], + "established": 2006, + "external_ids": [], + "id": "https://ror.org/05bjr0y28", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.neurotecheeg.com" + } + ], + "names": [ + { + "value": "Neurotech, LLC (United States)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Neurotech", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Neurotech, LLC", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05bnh6r87.json b/v1.43/05bnh6r87.json new file mode 100644 index 000000000..485c7a644 --- /dev/null +++ b/v1.43/05bnh6r87.json @@ -0,0 +1,243 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1865, + "external_ids": [ + { + "all": [ + "100007231", + "100007604", + "100006480", + "100006077", + "100006471", + "100006923", + "100007272", + "100008586", + "100007232", + "100009083", + "100008674", + "100008585" + ], + "preferred": "100007231", + "type": "fundref" + }, + { + "all": [ + "grid.5386.8" + ], + "preferred": "grid.5386.8", + "type": "grid" + }, + { + "all": [ + "0000 0004 1936 877X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q49115" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05bnh6r87", + "links": [ + { + "type": "website", + "value": "http://www.cornell.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Cornell_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.44063, + "lng": -76.49661, + "name": "Ithaca" + }, + "geonames_id": 5122432 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Cornell University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Cornell" + } + ], + "relationships": [ + { + "label": "New York Sea Grant", + "type": "child", + "id": "https://ror.org/031m8s392" + }, + { + "label": "New York Space Grant Consortium", + "type": "child", + "id": "https://ror.org/03ycy6g75" + }, + { + "label": "New York State College of Agriculture & Life Sciences", + "type": "child", + "id": "https://ror.org/00j52pq61" + }, + { + "label": "New York State College of Veterinary Medicine", + "type": "child", + "id": "https://ror.org/04r17kf39" + }, + { + "label": "New York State School of Industrial and Labor Relations", + "type": "child", + "id": "https://ror.org/00zg6dt46" + }, + { + "label": "New York State University College of Human Ecology", + "type": "child", + "id": "https://ror.org/047g2xp14" + }, + { + "label": "Weill Cornell Medicine", + "type": "child", + "id": "https://ror.org/02r109517" + }, + { + "label": "Cornell Lab of Ornithology", + "type": "child", + "id": "https://ror.org/00k86w020" + }, + { + "label": "Cornell Atkinson Center for Sustainability", + "type": "child", + "id": "https://ror.org/03h0qhk21" + }, + { + "label": "PARADIM", + "type": "child", + "id": "https://ror.org/04pw1zg89" + }, + { + "label": "Burke Medical Research Institute", + "type": "related", + "id": "https://ror.org/02sp1z620" + }, + { + "label": "Burke Rehabilitation Hospital", + "type": "related", + "id": "https://ror.org/04dnsc767" + }, + { + "label": "Houston Methodist", + "type": "related", + "id": "https://ror.org/027zt9171" + }, + { + "label": "Lincoln Medical Center", + "type": "related", + "id": "https://ror.org/035a72598" + }, + { + "label": "Lower Manhattan Hospital", + "type": "related", + "id": "https://ror.org/01skxn174" + }, + { + "label": "Memorial Sloan Kettering Cancer Center", + "type": "related", + "id": "https://ror.org/02yrq0923" + }, + { + "label": "Morgan Stanley Children's Hospital", + "type": "related", + "id": "https://ror.org/016m8pd54" + }, + { + "label": "Museum of the Earth", + "type": "related", + "id": "https://ror.org/03f91xw18" + }, + { + "label": "New York Hospital Queens", + "type": "related", + "id": "https://ror.org/01j17xg39" + }, + { + "label": "NewYork–Presbyterian Brooklyn Methodist Hospital", + "type": "related", + "id": "https://ror.org/04929s478" + }, + { + "label": "NewYork–Presbyterian Hospital", + "type": "related", + "id": "https://ror.org/03gzbrs57" + }, + { + "label": "The Rogosin Institute", + "type": "related", + "id": "https://ror.org/05dvpaj72" + }, + { + "label": "Weill Cornell Medical College in Qatar", + "type": "related", + "id": "https://ror.org/05v5hg569" + }, + { + "label": "Wyckoff Heights Medical Center", + "type": "related", + "id": "https://ror.org/00yzb1d91" + }, + { + "label": "Hubbard Brook Long Term Ecological Research", + "type": "related", + "id": "https://ror.org/00mkh7345" + }, + { + "label": "Cornell University Agricultural Experiment Station", + "type": "child", + "id": "https://ror.org/012qsrr25" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/05bvkb649.json b/v1.43/05bvkb649.json new file mode 100644 index 000000000..144db293e --- /dev/null +++ b/v1.43/05bvkb649.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 3121881, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 43.36859, + "lng": -1.79622, + "name": "Hondarribia" + } + } + ], + "established": 1976, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0666 8923" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100019124" + ], + "preferred": "501100019124" + }, + { + "type": "grid", + "all": [ + "grid.484077.8" + ], + "preferred": "grid.484077.8" + } + ], + "id": "https://ror.org/05bvkb649", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gipuzkoa.eus" + } + ], + "names": [ + { + "value": "Diputación Foral de Gipuzkoa", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05c7h4935.json b/v1.43/05c7h4935.json new file mode 100644 index 000000000..8de17abf0 --- /dev/null +++ b/v1.43/05c7h4935.json @@ -0,0 +1,102 @@ +{ + "locations": [ + { + "geonames_id": 2306104, + "geonames_details": { + "country_code": "GH", + "country_name": "Ghana", + "lat": 5.55602, + "lng": -0.1969, + "name": "Accra" + } + } + ], + "established": 1957, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q6867086" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.415765.4" + ], + "preferred": "grid.415765.4" + }, + { + "type": "isni", + "all": [ + "0000 0001 0721 5002" + ], + "preferred": "0000 0001 0721 5002" + } + ], + "id": "https://ror.org/05c7h4935", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.moh.gov.gh" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Health_(Ghana)" + } + ], + "names": [ + { + "value": "Ministry of Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Health of Ghana", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ghanaian Ministry of Health", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MoH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ghana Health Service", + "type": "child", + "id": "https://ror.org/052ss8w32" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05c8abs18.json b/v1.43/05c8abs18.json new file mode 100644 index 000000000..1470cd916 --- /dev/null +++ b/v1.43/05c8abs18.json @@ -0,0 +1,57 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": 1986, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432388.6" + ], + "preferred": "grid.432388.6" + } + ], + "id": "https://ror.org/05c8abs18", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.barcelonactiva.cat" + } + ], + "names": [ + { + "value": "Barcelona Activa", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05cebxq10.json b/v1.43/05cebxq10.json new file mode 100644 index 000000000..5ed1908ca --- /dev/null +++ b/v1.43/05cebxq10.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 112931, + "geonames_details": { + "country_code": "IR", + "country_name": "Iran", + "lat": 35.69439, + "lng": 51.42151, + "name": "Tehran" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7433 9111" + ], + "preferred": "0000 0004 7433 9111" + }, + { + "type": "wikidata", + "all": [ + "Q112085401" + ], + "preferred": "Q112085401" + }, + { + "type": "fundref", + "all": [ + "501100010606" + ], + "preferred": "501100010606" + } + ], + "id": "https://ror.org/05cebxq10", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://aeoi.org.ir/en/portal/home/?47916/%D8%B5%D9%81%D8%AD%D9%87-nuclear-science-and-technology-research" + } + ], + "names": [ + { + "value": "Nuclear Science and Technology Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Nuclear Science and Technology Research Institute of Iran", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NSTRI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Atomic Energy Organization of Iran", + "type": "parent", + "id": "https://ror.org/04feqxb79" + } + ], + "status": "active", + "types": [ + "facility", + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05cmj5t40.json b/v1.43/05cmj5t40.json new file mode 100644 index 000000000..92adc4458 --- /dev/null +++ b/v1.43/05cmj5t40.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5920433, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.38338, + "lng": -73.74919, + "name": "Châteauguay" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4910 5129" + ], + "preferred": "0000 0004 4910 5129" + } + ], + "id": "https://ror.org/05cmj5t40", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.santemonteregie.qc.ca/ouest" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et de services sociaux de la Montérégie-Ouest", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de la Montérégie-Ouest", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05cshtm26.json b/v1.43/05cshtm26.json new file mode 100644 index 000000000..ed5366d8b --- /dev/null +++ b/v1.43/05cshtm26.json @@ -0,0 +1,157 @@ +{ + "locations": [ + { + "geonames_id": 5140405, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 43.04812, + "lng": -76.14742, + "name": "Syracuse" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 1483 9309" + ], + "preferred": "0000 0004 1483 9309" + }, + { + "type": "fundref", + "all": [ + "100013115" + ], + "preferred": "100013115" + } + ], + "id": "https://ror.org/05cshtm26", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.esf.edu/glrc/index.php" + } + ], + "names": [ + { + "value": "Great Lakes Research Consortium", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "GLRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University at Albany, State University of New York", + "type": "related", + "id": "https://ror.org/012zs8222" + }, + { + "label": "Binghamton University", + "type": "related", + "id": "https://ror.org/008rmbt77" + }, + { + "label": "SUNY Brockport", + "type": "related", + "id": "https://ror.org/0306aeb62" + }, + { + "label": "University at Buffalo, State University of New York", + "type": "related", + "id": "https://ror.org/01y64my43" + }, + { + "label": "Clarkson University", + "type": "related", + "id": "https://ror.org/03rwgpn18" + }, + { + "label": "Cornell University", + "type": "related", + "id": "https://ror.org/05bnh6r87" + }, + { + "label": "State University of New York College at Cortland", + "type": "related", + "id": "https://ror.org/05a4pj207" + }, + { + "label": "SUNY College of Environmental Science and Forestry", + "type": "related", + "id": "https://ror.org/00qv0tw17" + }, + { + "label": "SUNY Fredonia", + "type": "related", + "id": "https://ror.org/05vrs0r17" + }, + { + "label": "State University of New York at Geneseo", + "type": "related", + "id": "https://ror.org/03g1q6c06" + }, + { + "label": "Hobart and William Smith Colleges", + "type": "related", + "id": "https://ror.org/004majf41" + }, + { + "label": "State University of New York at Oswego", + "type": "related", + "id": "https://ror.org/01597g643" + }, + { + "label": "SUNY Plattsburgh", + "type": "related", + "id": "https://ror.org/033zmj163" + }, + { + "label": "State University of New York at Potsdam", + "type": "related", + "id": "https://ror.org/032qgrc76" + }, + { + "label": "Rochester Institute of Technology", + "type": "related", + "id": "https://ror.org/00v4yb702" + }, + { + "label": "St. Lawrence University", + "type": "related", + "id": "https://ror.org/05pvqha70" + }, + { + "label": "Syracuse University", + "type": "related", + "id": "https://ror.org/025r5qe02" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05d6tb673.json b/v1.43/05d6tb673.json new file mode 100644 index 000000000..84f2175fe --- /dev/null +++ b/v1.43/05d6tb673.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3176219, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 44.40478, + "lng": 8.94439, + "name": "Genoa" + } + } + ], + "established": 1948, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1530 5008" + ], + "preferred": "0000 0001 1530 5008" + }, + { + "type": "wikidata", + "all": [ + "Q30888334" + ], + "preferred": "Q30888334" + }, + { + "type": "fundref", + "all": [ + "501100009881" + ], + "preferred": "501100009881" + } + ], + "id": "https://ror.org/05d6tb673", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.regione.liguria.it" + }, + { + "type": "wikipedia", + "value": "https://it.wikipedia.org/wiki/Giunta_regionale_della_Liguria" + } + ], + "names": [ + { + "value": "Regione Liguria", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Liguria Region", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Region of Liguria", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05d8cac05.json b/v1.43/05d8cac05.json new file mode 100644 index 000000000..23de9f0ce --- /dev/null +++ b/v1.43/05d8cac05.json @@ -0,0 +1,51 @@ +{ + "locations": [ + { + "geonames_id": 1796236, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 31.22222, + "lng": 121.45806, + "name": "Shanghai" + } + } + ], + "established": null, + "external_ids": [], + "id": "https://ror.org/05d8cac05", + "domains": [], + "links": [], + "names": [ + { + "value": "Shanghai Institute of Pollution Control and Ecological Security", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "上海污染控制与生态安全研究院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05dch6316.json b/v1.43/05dch6316.json new file mode 100644 index 000000000..52f38ac5a --- /dev/null +++ b/v1.43/05dch6316.json @@ -0,0 +1,206 @@ +{ + "locations": [ + { + "geonames_id": 4259418, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.76838, + "lng": -86.15804, + "name": "Indianapolis" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0431 6096" + ], + "preferred": "0000 0004 0431 6096" + }, + { + "type": "wikidata", + "all": [ + "Q73495380" + ], + "preferred": "Q73495380" + } + ], + "id": "https://ror.org/05dch6316", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://palni.org" + } + ], + "names": [ + { + "value": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Private Academic Library Network of Indiana, Inc.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Private Academic Library Network of Indiana", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PALNI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Anabaptist Mennonite Biblical Seminary", + "type": "related", + "id": "https://ror.org/04b8d7j46" + }, + { + "label": "Anderson University - Indiana", + "type": "related", + "id": "https://ror.org/03cebjr81" + }, + { + "label": "Bethel University", + "type": "related", + "id": "https://ror.org/02faxbd19" + }, + { + "label": "Butler University", + "type": "related", + "id": "https://ror.org/05gq3a412" + }, + { + "label": "Christian Theological Seminary", + "type": "related", + "id": "https://ror.org/05vnxnq07" + }, + { + "label": "Concordia Theological Seminary", + "type": "related", + "id": "https://ror.org/022fjwc94" + }, + { + "label": "DePauw University", + "type": "related", + "id": "https://ror.org/02mks6v46" + }, + { + "label": "Earlham College", + "type": "related", + "id": "https://ror.org/0566sj483" + }, + { + "label": "Franklin College", + "type": "related", + "id": "https://ror.org/05w35s747" + }, + { + "label": "Goshen College", + "type": "related", + "id": "https://ror.org/03tj80n37" + }, + { + "label": "Grace College & Seminary", + "type": "related", + "id": "https://ror.org/00qsr9g17" + }, + { + "label": "Hanover College", + "type": "related", + "id": "https://ror.org/00vc14296" + }, + { + "label": "Huntington University", + "type": "related", + "id": "https://ror.org/054wajj09" + }, + { + "label": "Manchester University", + "type": "related", + "id": "https://ror.org/02aswte26" + }, + { + "label": "Marian University - Indiana", + "type": "related", + "id": "https://ror.org/00p4ywg82" + }, + { + "label": "Oakland City University", + "type": "related", + "id": "https://ror.org/0453rg493" + }, + { + "label": "Saint Mary-of-the-Woods College", + "type": "related", + "id": "https://ror.org/045jby416" + }, + { + "label": "Saint Mary's College", + "type": "related", + "id": "https://ror.org/02r839n55" + }, + { + "label": "Saint Meinrad Seminary and School of Theology", + "type": "related", + "id": "https://ror.org/05tyqjm34" + }, + { + "label": "Taylor University", + "type": "related", + "id": "https://ror.org/005aghs32" + }, + { + "label": "Trine University", + "type": "related", + "id": "https://ror.org/038e0dv78" + }, + { + "label": "University of Indianapolis", + "type": "related", + "id": "https://ror.org/052133d12" + }, + { + "label": "University of Saint Francis", + "type": "related", + "id": "https://ror.org/01h6pze39" + }, + { + "label": "Wabash College", + "type": "related", + "id": "https://ror.org/00p11pk44" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05dnzrj50.json b/v1.43/05dnzrj50.json new file mode 100644 index 000000000..ac63c6e8a --- /dev/null +++ b/v1.43/05dnzrj50.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100013055" + ], + "preferred": "100013055" + } + ], + "id": "https://ror.org/05dnzrj50", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://science.osti.gov/bes/mse" + } + ], + "names": [ + { + "value": "Materials Sciences and Engineering Division", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Division of Materials Sciences and Engineering", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Materials Sciences and Engineering (MSE) Division", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DMSE", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "MSE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ames National Laboratory", + "type": "parent", + "id": "https://ror.org/041m9xr71" + }, + { + "label": "Office of Basic Energy Sciences", + "type": "successor", + "id": "https://ror.org/05mg91w61" + } + ], + "status": "withdrawn", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05dpfhh73.json b/v1.43/05dpfhh73.json new file mode 100644 index 000000000..3a12ac9d2 --- /dev/null +++ b/v1.43/05dpfhh73.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.464067.7" + ], + "preferred": "grid.464067.7" + } + ], + "id": "https://ror.org/05dpfhh73", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.scicf.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Interactions Cellulaires et Physiopathologie Hépathique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ICPH", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05dpwde09.json b/v1.43/05dpwde09.json new file mode 100644 index 000000000..981e8886b --- /dev/null +++ b/v1.43/05dpwde09.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2639192, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.57515, + "lng": 0.18582, + "name": "Romford" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 4904 9470" + ], + "preferred": "0000 0004 4904 9470" + }, + { + "type": "fundref", + "all": [ + "501100018817" + ], + "preferred": "501100018817" + } + ], + "id": "https://ror.org/05dpwde09", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://lupusuk.org.uk" + } + ], + "names": [ + { + "value": "LUPUS UK", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05dr3r825.json b/v1.43/05dr3r825.json new file mode 100644 index 000000000..584ff5bbc --- /dev/null +++ b/v1.43/05dr3r825.json @@ -0,0 +1,93 @@ +{ + "locations": [ + { + "geonames_id": 2759794, + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 52.37403, + "lng": 4.88969, + "name": "Amsterdam" + } + } + ], + "established": 1926, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0501 3257" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006315", + "501100022115" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.454756.1" + ], + "preferred": "grid.454756.1" + } + ], + "id": "https://ror.org/05dr3r825", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.reumafonds.nl/" + } + ], + "names": [ + { + "value": "ReumaNederland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Reumafonds", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Dutch Arthritis Foundation", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "DAF", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05dy6wv04.json b/v1.43/05dy6wv04.json new file mode 100644 index 000000000..1f717e57e --- /dev/null +++ b/v1.43/05dy6wv04.json @@ -0,0 +1,75 @@ +{ + "locations": [ + { + "geonames_id": 3024783, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.80299, + "lng": 2.26692, + "name": "Clamart" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.503203.7" + ], + "preferred": "grid.503203.7" + } + ], + "id": "https://ror.org/05dy6wv04", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://umr996.inserm.fr/" + } + ], + "names": [ + { + "value": "Inflammation, Microbiome and Immunosurveillance", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Inflammation, Chemokines and Immunopathology", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Inserm", + "type": "parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05ehpzy81.json b/v1.43/05ehpzy81.json new file mode 100644 index 000000000..685984987 --- /dev/null +++ b/v1.43/05ehpzy81.json @@ -0,0 +1,105 @@ +{ + "locations": [ + { + "geonames_id": 1816670, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5928 1249" + ], + "preferred": "0000 0004 5928 1249" + }, + { + "type": "fundref", + "all": [ + "501100015648" + ], + "preferred": "501100015648" + } + ], + "id": "https://ror.org/05ehpzy81", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.epri.sgcc.com.cn" + } + ], + "names": [ + { + "value": "China Electric Power Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "中国电力科学研究院", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "China Electric Power Research Institute Co.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "China Electric Power Research Institute Co., Ltd.", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "中国电力科学研究院有限公司", + "types": [ + "label" + ], + "lang": "zh" + }, + { + "value": "CEPRI", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "State Grid Corporation of China (China)", + "type": "parent", + "id": "https://ror.org/05twwhs70" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05eky6607.json b/v1.43/05eky6607.json new file mode 100644 index 000000000..78791de60 --- /dev/null +++ b/v1.43/05eky6607.json @@ -0,0 +1,68 @@ +{ + "locations": [ + { + "geonames_id": 5959974, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 45.47723, + "lng": -75.70164, + "name": "Gatineau" + } + } + ], + "established": 1967, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 8063 3499" + ], + "preferred": "0000 0004 8063 3499" + } + ], + "id": "https://ror.org/05eky6607", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cisss-outaouais.gouv.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux" + } + ], + "names": [ + { + "value": "Centre intégré de santé et des services sociaux de l’Outaouais", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "CISSS de l'Outaouais", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05etxs293.json b/v1.43/05etxs293.json new file mode 100644 index 000000000..7ff5c4472 --- /dev/null +++ b/v1.43/05etxs293.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-09-21", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2002, + "external_ids": [ + { + "all": [ + "100011889" + ], + "preferred": "100011889", + "type": "fundref" + }, + { + "all": [ + "grid.18785.33" + ], + "preferred": "grid.18785.33", + "type": "grid" + }, + { + "all": [ + "0000 0004 1764 0696" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q652731" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05etxs293", + "links": [ + { + "type": "website", + "value": "http://www.diamond.ac.uk/Home.html" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Diamond_Light_Source" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.60928, + "lng": -1.24214, + "name": "Didcot" + }, + "geonames_id": 2651269 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Diamond Light Source" + } + ], + "relationships": [ + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/05f82e368.json b/v1.43/05f82e368.json new file mode 100644 index 000000000..ff0000ecd --- /dev/null +++ b/v1.43/05f82e368.json @@ -0,0 +1,642 @@ +{ + "locations": [ + { + "geonames_id": 2988507, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.85341, + "lng": 2.3488, + "name": "Paris" + } + } + ], + "established": 2019, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7885 7602" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100021716" + ], + "preferred": "501100021716" + }, + { + "type": "wikidata", + "all": [ + "Q55849612" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.508487.6" + ], + "preferred": "grid.508487.6" + } + ], + "id": "https://ror.org/05f82e368", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://u-paris.fr/en" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/University_of_Paris_(2019)" + } + ], + "names": [ + { + "value": "Université Paris Cité", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Paris", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Université de Paris", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Hôpitaux Universitaires Paris-Ouest", + "type": "related", + "id": "https://ror.org/01v676463" + }, + { + "label": "Hôtel-Dieu de Paris", + "type": "related", + "id": "https://ror.org/03jmjy508" + }, + { + "label": "Institut de physique du globe de Paris", + "type": "related", + "id": "https://ror.org/004gzqz66" + }, + { + "label": "André Revuz Didactics Laboratory", + "type": "child", + "id": "https://ror.org/053p8kg34" + }, + { + "label": "Anthropology and History of the Ancient World", + "type": "child", + "id": "https://ror.org/04yavcg77" + }, + { + "label": "Astroparticle and Cosmology Laboratory", + "type": "child", + "id": "https://ror.org/03tnjrr49" + }, + { + "label": "Astrophysique, Instrumentation et Modélisation", + "type": "child", + "id": "https://ror.org/0015h8611" + }, + { + "label": "Biologie Intégrée du Globule Rouge", + "type": "child", + "id": "https://ror.org/048cbmc89" + }, + { + "label": "Bioscar", + "type": "child", + "id": "https://ror.org/01qdqrj31" + }, + { + "label": "Center for Research and Interdisciplinarity", + "type": "child", + "id": "https://ror.org/00zbj9525" + }, + { + "label": "Center for Research in Medicine, Science, Health, Mental Health and Society", + "type": "child", + "id": "https://ror.org/02v2jyq75" + }, + { + "label": "Center for Research on Inflammation", + "type": "child", + "id": "https://ror.org/02gn50d10" + }, + { + "label": "Center for Social Studies on African, American and Asian Worlds", + "type": "child", + "id": "https://ror.org/03pnk9016" + }, + { + "label": "Centre de Compétences NanoSciences Ile-de-France", + "type": "child", + "id": "https://ror.org/027defw95" + }, + { + "label": "Centre de Linguistique Inter-langues, de Lexicologie, de Linguistique Anglaise et de Corpus-Atelier de Recherche sur la Parole", + "type": "child", + "id": "https://ror.org/01y85ge33" + }, + { + "label": "Centre de Recherche des Cordeliers", + "type": "child", + "id": "https://ror.org/00dmms154" + }, + { + "label": "Centre de Recherche sur les Liens Sociaux", + "type": "child", + "id": "https://ror.org/01wcaw014" + }, + { + "label": "Epigenetics and Cell Fate", + "type": "child", + "id": "https://ror.org/03dbsav41" + }, + { + "label": "Expression Génétique Microbienne", + "type": "child", + "id": "https://ror.org/05t5n2z26" + }, + { + "label": "Galaxies, Etoiles, Physique et Instrumentation", + "type": "child", + "id": "https://ror.org/01920cw75" + }, + { + "label": "Imagine Institute for Genetic Diseases", + "type": "child", + "id": "https://ror.org/05rq3rb55" + }, + { + "label": "Institut Cochin", + "type": "child", + "id": "https://ror.org/051sk4035" + }, + { + "label": "Institut Jacques Monod", + "type": "child", + "id": "https://ror.org/02c5gc203" + }, + { + "label": "Institut Necker Enfants Malades", + "type": "child", + "id": "https://ror.org/000nhq538" + }, + { + "label": "Institut de Mathématiques de Jussieu-Paris Rive Gauche", + "type": "child", + "id": "https://ror.org/03fk87k11" + }, + { + "label": "Institut des Sciences des Plantes de Paris Saclay", + "type": "child", + "id": "https://ror.org/00ajjta07" + }, + { + "label": "Institut d'écologie et des sciences de l'environnement de Paris", + "type": "child", + "id": "https://ror.org/02s56xp85" + }, + { + "label": "Institute of Psychiatry and Neuroscience of Paris", + "type": "child", + "id": "https://ror.org/02g40zn06" + }, + { + "label": "Interfaces Traitements Organisation et Dynamique des Systèmes", + "type": "child", + "id": "https://ror.org/03edms940" + }, + { + "label": "International College of Territorial Sciences", + "type": "child", + "id": "https://ror.org/002t9r032" + }, + { + "label": "Laboratoire Dynamiques Sociales et Recomposition des Espaces", + "type": "child", + "id": "https://ror.org/045r56524" + }, + { + "label": "Laboratoire ICT", + "type": "child", + "id": "https://ror.org/04p7gsa29" + }, + { + "label": "Laboratoire Interdisciplinaire des Énergies de Demain", + "type": "child", + "id": "https://ror.org/00m43ek07" + }, + { + "label": "Laboratoire Interuniversitaire des Systèmes Atmosphériques", + "type": "child", + "id": "https://ror.org/046cjf283" + }, + { + "label": "Laboratoire Jacques-Louis Lions", + "type": "child", + "id": "https://ror.org/04xmteb38" + }, + { + "label": "Laboratoire Matière et Systèmes Complexes", + "type": "child", + "id": "https://ror.org/032w6q449" + }, + { + "label": "Laboratoire Vision Action Cognition", + "type": "child", + "id": "https://ror.org/03saykv37" + }, + { + "label": "Laboratoire d'Electrochimie Moléculaire", + "type": "child", + "id": "https://ror.org/03atapr58" + }, + { + "label": "Laboratoire de Chimie et Biochimie Pharmacologiques et Toxicologiques", + "type": "child", + "id": "https://ror.org/028qedy27" + }, + { + "label": "Laboratoire de Linguistique Formelle", + "type": "child", + "id": "https://ror.org/0223bz716" + }, + { + "label": "Laboratoire de Physique Nucléaire et de Hautes Énergies", + "type": "child", + "id": "https://ror.org/01hg8p552" + }, + { + "label": "Laboratory Materials and Quantum Phenomena", + "type": "child", + "id": "https://ror.org/02p3et738" + }, + { + "label": "Laboratory Orofacial Pathologies, Imaging and Biotherapies", + "type": "child", + "id": "https://ror.org/00kneq391" + }, + { + "label": "Laboratory Preuves, Programmes et Systèmes", + "type": "child", + "id": "https://ror.org/046p9e825" + }, + { + "label": "Laboratory Universe and Theories", + "type": "child", + "id": "https://ror.org/00bbtde36" + }, + { + "label": "Laboratory for Vascular Translational Science", + "type": "child", + "id": "https://ror.org/032q95r88" + }, + { + "label": "Laboratory for the Psychology of Child Development and Education", + "type": "child", + "id": "https://ror.org/023kqz006" + }, + { + "label": "Laboratoire d’immunologie intégrative du cancer", + "type": "child", + "id": "https://ror.org/03cqwn895" + }, + { + "label": "Laboratory of Physical and Chemical Biology of Membrane Proteins", + "type": "child", + "id": "https://ror.org/03nr8xh07" + }, + { + "label": "Laboratoire d’études spatiales et d’instrumentation en astrophysique", + "type": "child", + "id": "https://ror.org/02eptjh02" + }, + { + "label": "Laboratory of Theoretical Biochemistry", + "type": "child", + "id": "https://ror.org/00nvjgv40" + }, + { + "label": "Institut Langevin", + "type": "child", + "id": "https://ror.org/00kr24y60" + }, + { + "label": "Memory and Cognition Laboratory", + "type": "child", + "id": "https://ror.org/036ydxy43" + }, + { + "label": "Metabolism and Renal Physiology", + "type": "child", + "id": "https://ror.org/0366b1491" + }, + { + "label": "Mère et Enfant en Milieu Tropical", + "type": "child", + "id": "https://ror.org/00rd22143" + }, + { + "label": "Laboratoire de Biologie, Bioingéniérie et Bioimagerie ostéoarticulaire", + "type": "child", + "id": "https://ror.org/03q7r5x87" + }, + { + "label": "Paris Biotech Santé", + "type": "child", + "id": "https://ror.org/05h9gyn11" + }, + { + "label": "Paris Cardiovascular Research Center", + "type": "child", + "id": "https://ror.org/03gvnh520" + }, + { + "label": "Pathologie et Virologie Moléculaire", + "type": "child", + "id": "https://ror.org/002fxfq97" + }, + { + "label": "Physiopathologie et Epidémiologie des Maladies Respiratoires", + "type": "child", + "id": "https://ror.org/04n8sc212" + }, + { + "label": "Physique et Mécanique des Milieux Hétérogènes", + "type": "child", + "id": "https://ror.org/03kr50w79" + }, + { + "label": "Population and Development Center", + "type": "child", + "id": "https://ror.org/002yg6s88" + }, + { + "label": "Pôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographique", + "type": "child", + "id": "https://ror.org/002v3cy83" + }, + { + "label": "Research Institute on the Foundations of Computer Science", + "type": "child", + "id": "https://ror.org/02krdtz55" + }, + { + "label": "Sciences, Philosophie, Histoire", + "type": "child", + "id": "https://ror.org/05c9ks061" + }, + { + "label": "Skin Research Center", + "type": "child", + "id": "https://ror.org/0579jh693" + }, + { + "label": "The Centre for Studies on China, Korea and Japan", + "type": "child", + "id": "https://ror.org/02djzje70" + }, + { + "label": "Toxicology, Pharmacology and Cellular Signaling", + "type": "child", + "id": "https://ror.org/021ryxk89" + }, + { + "label": "Typologie et Universaux Linguistiques", + "type": "child", + "id": "https://ror.org/04ej53908" + }, + { + "label": "Unit of Functional and Adaptive Biology", + "type": "child", + "id": "https://ror.org/02z0jq636" + }, + { + "label": "Unité de Technologies Chimiques et Biologiques pour la Santé", + "type": "child", + "id": "https://ror.org/03k1e4r14" + }, + { + "label": "Éco-Anthropologie", + "type": "child", + "id": "https://ror.org/03x0yny97" + }, + { + "label": "Épidémiologie Clinique, Évaluation Économique Appliquées aux Populations Vulnérables", + "type": "child", + "id": "https://ror.org/02617e391" + }, + { + "label": "Histoire des Théories Linguistiques", + "type": "child", + "id": "https://ror.org/0546jt497" + }, + { + "label": "Réseau interdisciplinaire pour l’aménagement, l’observation et la cohésion des territoires européens", + "type": "child", + "id": "https://ror.org/036w0tz95" + }, + { + "label": "Mathématiques Appliquées à Paris 5", + "type": "child", + "id": "https://ror.org/04yrrdj53" + }, + { + "label": "NeuroDiderot", + "type": "child", + "id": "https://ror.org/014ndnr76" + }, + { + "label": "Centre d'Investigation Clinique de Vaccinologie Cochin-Pasteur", + "type": "child", + "id": "https://ror.org/01c1p7750" + }, + { + "label": "Centre de recherche sur les civilisations de l'Asie orientale", + "type": "child", + "id": "https://ror.org/006gzge74" + }, + { + "label": "Innovations Thérapeutiques en Hémostase", + "type": "child", + "id": "https://ror.org/02jp0cd74" + }, + { + "label": "Laboratoire de Recherche sur les Cultures Anglophones", + "type": "child", + "id": "https://ror.org/0057kwj95" + }, + { + "label": "Unite de recherche migrations et sociétés", + "type": "child", + "id": "https://ror.org/02844qe97" + }, + { + "label": "HIPI - Human Immunology, Pathophysiology and Immunotherapy", + "type": "child", + "id": "https://ror.org/008e1sp22" + }, + { + "label": "Institut Droit et Santé", + "type": "child", + "id": "https://ror.org/01ddqfh11" + }, + { + "label": "Unité de Recherche en Biomatériaux Innovant et Interfaces", + "type": "child", + "id": "https://ror.org/01cht3g41" + }, + { + "label": "Optimisation Thérapeutique en Neuropsychopharmacologie", + "type": "child", + "id": "https://ror.org/05wzabs02" + }, + { + "label": "Centre of Research in Epidemiology and Statistics", + "type": "child", + "id": "https://ror.org/00t9egj41" + }, + { + "label": "Infection, Antimicrobials, Modelling, Evolution", + "type": "child", + "id": "https://ror.org/05hqep952" + }, + { + "label": "Institut de Recherche bio-Médicale et d'Epidémiologie du Sport", + "type": "child", + "id": "https://ror.org/00dgdgj39" + }, + { + "label": "Laboratoire de Probabilités, Statistique et Modélisation", + "type": "child", + "id": "https://ror.org/02vnd0e65" + }, + { + "label": "Integrative Neuroscience and Cognition Center", + "type": "child", + "id": "https://ror.org/02fgakj19" + }, + { + "label": "SPPIN - Saints-Pères Paris Institute for Neurosciences", + "type": "child", + "id": "https://ror.org/01a4enz31" + }, + { + "label": "Laboratoire de Psychologie et d’Ergonomie Appliquées", + "type": "child", + "id": "https://ror.org/0572pak88" + }, + { + "label": "Stabilité Génétique, Cellules Souches et Radiations", + "type": "child", + "id": "https://ror.org/00nvvw130" + }, + { + "label": "Fédération de recherche en sciences mathématiques de Paris centre", + "type": "child", + "id": "https://ror.org/02jwwk370" + }, + { + "label": "PHOTOSYNTHESE", + "type": "child", + "id": "https://ror.org/05hb8m595" + }, + { + "label": "Fédération Ile de France de recherche sur l'environnement", + "type": "child", + "id": "https://ror.org/03qgfy688" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Fédération de Recherche Spectroscopies de Photoémission", + "type": "child", + "id": "https://ror.org/01x6z5t49" + }, + { + "label": "GDR NBODY : Problème quantique à N corps en chimie et physique", + "type": "child", + "id": "https://ror.org/01nrtdp55" + }, + { + "label": "Fédération de Recherche Interactions Fondamentales", + "type": "child", + "id": "https://ror.org/03hkqjb05" + }, + { + "label": "Replication des chromosomes eucaryotes et ses points de contrôle", + "type": "child", + "id": "https://ror.org/01r19bq53" + }, + { + "label": "Fédération de Recherche sur l'Energie Solaire", + "type": "child", + "id": "https://ror.org/0459fdx51" + }, + { + "label": "Fondation Sciences mathématiques de Paris", + "type": "child", + "id": "https://ror.org/02zgjrf98" + }, + { + "label": "Paris Network for Advanced Microscopy", + "type": "child", + "id": "https://ror.org/02ffzdx16" + }, + { + "label": "PremUP", + "type": "child", + "id": "https://ror.org/04ph5sm90" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Paris Centre for Quantum Technologies", + "type": "child", + "id": "https://ror.org/00adasd53" + }, + { + "label": "Cohortes épidémiologiques en population", + "type": "child", + "id": "https://ror.org/00ex3jm11" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05f8nen40.json b/v1.43/05f8nen40.json new file mode 100644 index 000000000..c502db98d --- /dev/null +++ b/v1.43/05f8nen40.json @@ -0,0 +1,65 @@ +{ + "locations": [ + { + "geonames_id": 2514256, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 36.72016, + "lng": -4.42034, + "name": "Málaga" + } + } + ], + "established": 1991, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30284480" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423695.f" + ], + "preferred": "grid.423695.f" + } + ], + "id": "https://ror.org/05f8nen40", + "domains": [], + "links": [], + "names": [ + { + "value": "AT4 wireless (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Dekra (Germany)", + "type": "successor", + "id": "https://ror.org/02b3ny291" + } + ], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05fp9g671.json b/v1.43/05fp9g671.json new file mode 100644 index 000000000..51760c258 --- /dev/null +++ b/v1.43/05fp9g671.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 142358, + "geonames_details": { + "country_code": "IR", + "country_name": "Iran", + "lat": 36.69929, + "lng": 52.65011, + "name": "Bābolsar" + } + } + ], + "established": 1979, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9618 7703" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100016293" + ], + "preferred": "501100016293" + }, + { + "type": "wikidata", + "all": [ + "Q6672257" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.411622.2" + ], + "preferred": "grid.411622.2" + } + ], + "id": "https://ror.org/05fp9g671", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://umz.ac.ir" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/University_of_Mazandaran" + } + ], + "names": [ + { + "value": "University of Mazandaran", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Reza Shah Kabir University", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "دانشگاه مازندران", + "types": [ + "label" + ], + "lang": "fa" + }, + { + "value": "UMZ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05g2hd893.json b/v1.43/05g2hd893.json new file mode 100644 index 000000000..405f8ff60 --- /dev/null +++ b/v1.43/05g2hd893.json @@ -0,0 +1,140 @@ +{ + "locations": [ + { + "geonames_id": 5007804, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.48948, + "lng": -83.14465, + "name": "Royal Oak" + } + } + ], + "established": 1955, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0460 1081" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100007740" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q970220" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.461921.9" + ], + "preferred": "grid.461921.9" + } + ], + "id": "https://ror.org/05g2hd893", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.beaumont.org/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Beaumont_Health" + } + ], + "names": [ + { + "value": "Beaumont Health", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "William Beaumont Health System", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Michigan State University", + "type": "related", + "id": "https://ror.org/05hs6h993" + }, + { + "label": "Oakland University", + "type": "related", + "id": "https://ror.org/01ythxj32" + }, + { + "label": "University of Michigan–Ann Arbor", + "type": "related", + "id": "https://ror.org/00jmfr291" + }, + { + "label": "Wayne State University", + "type": "related", + "id": "https://ror.org/01070mq45" + }, + { + "label": "Corewell Health Children's", + "type": "child", + "id": "https://ror.org/03nr10290" + }, + { + "label": "Beaumont Hospital, Dearborn", + "type": "child", + "id": "https://ror.org/03x4pp342" + }, + { + "label": "Corewell Health William Beaumont University Hospital", + "type": "child", + "id": "https://ror.org/058sakv40" + }, + { + "label": "Beaumont Hospital, Royal Oak", + "type": "child", + "id": "https://ror.org/03artm726" + }, + { + "label": "Beaumont Hospital, Troy", + "type": "child", + "id": "https://ror.org/05x9ffc66" + }, + { + "label": "Corewell Health", + "type": "successor", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "inactive", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05gfswd81.json b/v1.43/05gfswd81.json new file mode 100644 index 000000000..38549d902 --- /dev/null +++ b/v1.43/05gfswd81.json @@ -0,0 +1,77 @@ +{ + "admin": { + "created": { + "date": "2022-03-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-04-29", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2000, + "external_ids": [ + { + "all": [ + "0000 0004 0509 2792" + ], + "preferred": "0000 0004 0509 2792", + "type": "isni" + } + ], + "id": "https://ror.org/05gfswd81", + "links": [ + { + "type": "website", + "value": "https://www.irb.usi.ch/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CH", + "country_name": "Switzerland", + "lat": 46.19278, + "lng": 9.01703, + "name": "Bellinzona" + }, + "geonames_id": 2661567 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IRB" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute for Research in Biomedicine" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Istituto di Ricerca in Biomedicina" + } + ], + "relationships": [ + { + "label": "Università della Svizzera italiana", + "type": "parent", + "id": "https://ror.org/03c4atk17" + } + ], + "status": "active", + "types": [ + "nonprofit" + ] +} \ No newline at end of file diff --git a/v1.43/05ghke119.json b/v1.43/05ghke119.json new file mode 100644 index 000000000..3ca474b23 --- /dev/null +++ b/v1.43/05ghke119.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2509954, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 39.47391, + "lng": -0.37966, + "name": "Valencia" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "grid", + "all": [ + "grid.432460.7" + ], + "preferred": "grid.432460.7" + } + ], + "id": "https://ror.org/05ghke119", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.avep.es" + } + ], + "names": [ + { + "value": "Asociacion Valenciana de empresarios de plasticos", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "AVEP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05gq3a412.json b/v1.43/05gq3a412.json new file mode 100644 index 000000000..044568e6e --- /dev/null +++ b/v1.43/05gq3a412.json @@ -0,0 +1,97 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-01-10", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1855, + "external_ids": [ + { + "all": [ + "100002146", + "100006354" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.253419.8" + ], + "preferred": "grid.253419.8", + "type": "grid" + }, + { + "all": [ + "0000 0000 8596 9494", + "0000 0004 1936 8286" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1017974" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05gq3a412", + "links": [ + { + "type": "website", + "value": "https://www.butler.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Butler_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.76838, + "lng": -86.15804, + "name": "Indianapolis" + }, + "geonames_id": 4259418 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Butler University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Butler" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/05gt9yw23.json b/v1.43/05gt9yw23.json new file mode 100644 index 000000000..d7ac13b5e --- /dev/null +++ b/v1.43/05gt9yw23.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 333750, + "geonames_details": { + "country_code": "ET", + "country_name": "Ethiopia", + "lat": 5.65, + "lng": 36.65, + "name": "Jinka" + } + } + ], + "established": 2017, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0976 328X" + ], + "preferred": "0000 0005 0976 328X" + } + ], + "id": "https://ror.org/05gt9yw23", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://jku.edu.et" + } + ], + "names": [ + { + "value": "Jinka University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ጂንካ ዩኒቨርሲቲ", + "types": [ + "label" + ], + "lang": "am" + }, + { + "value": "JKU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05h7ddb14.json b/v1.43/05h7ddb14.json new file mode 100644 index 000000000..31c7ddd87 --- /dev/null +++ b/v1.43/05h7ddb14.json @@ -0,0 +1,97 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0598 8468" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "grid.464124.1" + ], + "preferred": "grid.464124.1", + "type": "grid" + } + ], + "id": "https://ror.org/05h7ddb14", + "links": [ + { + "type": "website", + "value": "https://www6.montpellier.inrae.fr/cbgp_eng/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Centre de Biologie et de Gestion des Populations" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CBGP" + } + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Département Environnement et Agronomie", + "type": "parent", + "id": "https://ror.org/01e7wth34" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/05he0t313.json b/v1.43/05he0t313.json new file mode 100644 index 000000000..5854cd949 --- /dev/null +++ b/v1.43/05he0t313.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 3096880, + "geonames_details": { + "country_code": "PL", + "country_name": "Poland", + "lat": 51.76109, + "lng": 18.09102, + "name": "Kalisz" + } + } + ], + "established": 1999, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0054 1382" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.467042.3" + ], + "preferred": "grid.467042.3" + }, + { + "type": "wikidata", + "all": [ + "Q11815238" + ], + "preferred": "Q11815238" + } + ], + "id": "https://ror.org/05he0t313", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://uniwersytetkaliski.edu.pl" + } + ], + "names": [ + { + "value": "Uniwersytet Kaliski im. Prezydenta Stanisława Wojciechowskiego", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Uniwersytet Kaliski", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Państwowa Wyższa Szkoła Zawodowa w Kaliszu", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "PWSZ", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05hqvvq43.json b/v1.43/05hqvvq43.json new file mode 100644 index 000000000..088630e7f --- /dev/null +++ b/v1.43/05hqvvq43.json @@ -0,0 +1,80 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-08-30", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "grid.451269.d" + ], + "preferred": "grid.451269.d", + "type": "grid" + }, + { + "all": [ + "0000 0004 0607 6102" + ], + "preferred": "0000 0004 0607 6102", + "type": "isni" + } + ], + "id": "https://ror.org/05hqvvq43", + "links": [ + { + "type": "website", + "value": "http://www.gov.nt.ca/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 62.45411, + "lng": -114.37248, + "name": "Yellowknife" + }, + "geonames_id": 6185377 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Government of Northwest Territories" + } + ], + "relationships": [ + { + "label": "Industry, Tourism and Investment", + "type": "child", + "id": "https://ror.org/03b8sbf49" + }, + { + "label": "Northwest Territories Department of Environment and Natural Resources", + "type": "child", + "id": "https://ror.org/046hez538" + }, + { + "label": "Institut de tourisme et d'hôtellerie du Québec", + "type": "child", + "id": "https://ror.org/02w3bnx54" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/05hs6h993.json b/v1.43/05hs6h993.json new file mode 100644 index 000000000..326d5988c --- /dev/null +++ b/v1.43/05hs6h993.json @@ -0,0 +1,194 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-12-07", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1855, + "external_ids": [ + { + "all": [ + "0000 0001 2195 6501", + "0000 0004 1375 3642" + ], + "preferred": "0000 0001 2195 6501", + "type": "isni" + }, + { + "all": [ + "100007709", + "100006534", + "100007508", + "100010507", + "100010518", + "100010603", + "100011138", + "100009585", + "100008425", + "100008587", + "100015893", + "100015892" + ], + "preferred": "100007709", + "type": "fundref" + }, + { + "all": [ + "Q270222" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.17088.36" + ], + "preferred": "grid.17088.36", + "type": "grid" + } + ], + "id": "https://ror.org/05hs6h993", + "links": [ + { + "type": "website", + "value": "https://msu.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Michigan_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.73698, + "lng": -84.48387, + "name": "East Lansing" + }, + "geonames_id": 4991640 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Michigan State University" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État du michigan" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MSU" + } + ], + "relationships": [ + { + "label": "Borgess Medical Center", + "type": "related", + "id": "https://ror.org/03964hc96" + }, + { + "label": "Botsford Hospital", + "type": "related", + "id": "https://ror.org/050qpjf10" + }, + { + "label": "Bronson Methodist Hospital", + "type": "related", + "id": "https://ror.org/032zc6m47" + }, + { + "label": "Corewell Health Butterworth Hospital", + "type": "related", + "id": "https://ror.org/05x643e19" + }, + { + "label": "Genesys Regional Medical Center", + "type": "related", + "id": "https://ror.org/03snrmr61" + }, + { + "label": "Hurley Medical Center", + "type": "related", + "id": "https://ror.org/034npj057" + }, + { + "label": "Marquette General Hospital", + "type": "related", + "id": "https://ror.org/01aj5dy09" + }, + { + "label": "McLaren Greater Lansing", + "type": "related", + "id": "https://ror.org/045zcth28" + }, + { + "label": "Munson Medical Center", + "type": "related", + "id": "https://ror.org/005qzv038" + }, + { + "label": "Sparrow Hospital", + "type": "related", + "id": "https://ror.org/018dx8725" + }, + { + "label": "Corewell Health Blodgett Hospital", + "type": "related", + "id": "https://ror.org/00qy68j92" + }, + { + "label": "McLaren Regional Medical Center", + "type": "child", + "id": "https://ror.org/01cpcy908" + }, + { + "label": "Michigan Sea Grant", + "type": "child", + "id": "https://ror.org/015tnsz82" + }, + { + "label": "National Superconducting Cyclotron Laboratory", + "type": "child", + "id": "https://ror.org/00qerpb33" + }, + { + "label": "Kellogg Biological Station Long Term Ecological Research", + "type": "child", + "id": "https://ror.org/02vkce854" + }, + { + "label": "Facility for Rare Isotope Beams", + "type": "child", + "id": "https://ror.org/03r4g9w46" + }, + { + "label": "Henry Ford Health + Michigan State University Health Sciences", + "type": "child", + "id": "https://ror.org/0599cab37" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/05hv77153.json b/v1.43/05hv77153.json new file mode 100644 index 000000000..9b71b0af9 --- /dev/null +++ b/v1.43/05hv77153.json @@ -0,0 +1,113 @@ +{ + "locations": [ + { + "geonames_id": 6174041, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 48.4359, + "lng": -123.35155, + "name": "Victoria" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0707 3462" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100002759" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.468004.e" + ], + "preferred": "grid.468004.e" + }, + { + "type": "wikidata", + "all": [ + "Q30264305" + ], + "preferred": "Q30264305" + } + ], + "id": "https://ror.org/05hv77153", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www2.gov.bc.ca/gov/content/governments/organizational-structure/ministries-organizations/ministries/education" + } + ], + "names": [ + { + "value": "Ministry of Education and Child Care", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "British Columbia Ministry of Education and Child Care", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BC Ministry of Education and Child Care", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "British Columbia Ministry of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "BC Ministry of Education", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05j5g1b69.json b/v1.43/05j5g1b69.json new file mode 100644 index 000000000..5e12eca79 --- /dev/null +++ b/v1.43/05j5g1b69.json @@ -0,0 +1,81 @@ +{ + "locations": [ + { + "geonames_id": 2653822, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.48, + "lng": -3.18, + "name": "Cardiff" + } + } + ], + "established": 2014, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q29025663" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.500780.a" + ], + "preferred": "grid.500780.a" + } + ], + "id": "https://ror.org/05j5g1b69", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://ppiw.org.uk/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Public_Policy_Institute_for_Wales" + } + ], + "names": [ + { + "value": "Public Policy Institute for Wales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "PPIW", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Wales Centre for Public Policy", + "type": "successor", + "id": "https://ror.org/03y0ymy78" + } + ], + "status": "inactive", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05jge5x64.json b/v1.43/05jge5x64.json new file mode 100644 index 000000000..1dd9ebe41 --- /dev/null +++ b/v1.43/05jge5x64.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2185018, + "geonames_details": { + "country_code": "NZ", + "country_name": "New Zealand", + "lat": -40.35636, + "lng": 175.61113, + "name": "Palmerston North" + } + } + ], + "established": 1992, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7863 9787" + ], + "preferred": "0000 0004 7863 9787" + }, + { + "type": "wikidata", + "all": [ + "Q116185757" + ], + "preferred": "Q116185757" + }, + { + "type": "fundref", + "all": [ + "501100009482" + ], + "preferred": "501100009482" + } + ], + "id": "https://ror.org/05jge5x64", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.nzagrc.org.nz" + } + ], + "names": [ + { + "value": "New Zealand Agricultural Greenhouse Gas Research Centre", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "NZ Agricultural Greenhouse Gas Research Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "NZAGRC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05jmnvy38.json b/v1.43/05jmnvy38.json new file mode 100644 index 000000000..53c3db9d9 --- /dev/null +++ b/v1.43/05jmnvy38.json @@ -0,0 +1,99 @@ +{ + "locations": [ + { + "geonames_id": 2619856, + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 55.88098, + "lng": 12.50111, + "name": "Hørsholm" + } + } + ], + "established": 1964, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0670 5261" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.423937.8" + ], + "preferred": "grid.423937.8" + } + ], + "id": "https://ror.org/05jmnvy38", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.dhigroup.com" + } + ], + "names": [ + { + "value": "DHI", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DHI Water & Environment", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Dansk Hydraulisk Institut", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DHI Water and Environment", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Danish Hydraulic Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "DHI A/S", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05jnma812.json b/v1.43/05jnma812.json new file mode 100644 index 000000000..fe41afed4 --- /dev/null +++ b/v1.43/05jnma812.json @@ -0,0 +1,84 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 1995, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0697 156X" + ], + "preferred": "0000 0001 0697 156X" + }, + { + "type": "fundref", + "all": [ + "100012387" + ], + "preferred": "100012387" + } + ], + "id": "https://ror.org/05jnma812", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.acf.hhs.gov/opre/" + } + ], + "names": [ + { + "value": "Office of Planning, Research and Evaluation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Office of Planning, Research & Evaluation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "OPRE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Administration for Children and Families", + "type": "parent", + "id": "https://ror.org/00g8hms52" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05jvrb780.json b/v1.43/05jvrb780.json new file mode 100644 index 000000000..527a0bc8a --- /dev/null +++ b/v1.43/05jvrb780.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 756135, + "geonames_details": { + "country_code": "PL", + "country_name": "Poland", + "lat": 52.22977, + "lng": 21.01178, + "name": "Warsaw" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 9334 2236" + ], + "preferred": "0000 0004 9334 2236" + } + ], + "id": "https://ror.org/05jvrb780", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://grape.org.pl/fame" + } + ], + "names": [ + { + "value": "Fundacja Adeptów i Miłośników Ekonomii", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Foundation of Admirers and Mavens of Economics", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FAME", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05mee8y17.json b/v1.43/05mee8y17.json new file mode 100644 index 000000000..d1bdbc2bb --- /dev/null +++ b/v1.43/05mee8y17.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 3448439, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -23.5475, + "lng": -46.63611, + "name": "São Paulo" + } + } + ], + "established": 2013, + "external_ids": [], + "id": "https://ror.org/05mee8y17", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://vitaalere.com.br" + } + ], + "names": [ + { + "value": "Instituto Vita Alere", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto Vita Alere de Prevenção e Posvenção do Suicídio", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Vita Alere Institute", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IVA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05merjr74.json b/v1.43/05merjr74.json new file mode 100644 index 000000000..6550e9cc9 --- /dev/null +++ b/v1.43/05merjr74.json @@ -0,0 +1,101 @@ +{ + "admin": { + "created": { + "date": "2019-02-17", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1987, + "external_ids": [ + { + "all": [ + "0000 0004 0502 3674" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q51782343" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.503222.4" + ], + "preferred": "grid.503222.4", + "type": "grid" + } + ], + "id": "https://ror.org/05merjr74", + "links": [ + { + "type": "website", + "value": "https://umr-selmet.cirad.fr/en" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Tropical and Mediterranean Animal Production Systems" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Systèmes d’élevage méditerranéens et tropicaux" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SELMET" + } + ], + "relationships": [ + { + "label": "Centre Occitanie-Montpellier", + "type": "parent", + "id": "https://ror.org/03fkrcm40" + }, + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/05mg91w61.json b/v1.43/05mg91w61.json new file mode 100644 index 000000000..8b7e7beff --- /dev/null +++ b/v1.43/05mg91w61.json @@ -0,0 +1,100 @@ +{ + "locations": [ + { + "geonames_id": 4140963, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.89511, + "lng": -77.03637, + "name": "Washington" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 5897 3091" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "100006151", + "100017535", + "100013055" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q30296525" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.452988.a" + ], + "preferred": "grid.452988.a" + } + ], + "id": "https://ror.org/05mg91w61", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://science.osti.gov/bes" + } + ], + "names": [ + { + "value": "Office of Basic Energy Sciences", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "BES", + "types": [ + "acronym" + ], + "lang": null + }, + { + "value": "DOE BES", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Office of Science", + "type": "parent", + "id": "https://ror.org/00mmn6b08" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05mz0pr34.json b/v1.43/05mz0pr34.json new file mode 100644 index 000000000..61ab91d0a --- /dev/null +++ b/v1.43/05mz0pr34.json @@ -0,0 +1,91 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": 1994, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q45131942" + ], + "preferred": "Q45131942" + }, + { + "type": "fundref", + "all": [ + "100011088" + ], + "preferred": "100011088" + } + ], + "id": "https://ror.org/05mz0pr34", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.uclhcharity.org.uk" + } + ], + "names": [ + { + "value": "UCL Hospitals Charitable Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "UCLH Charitable Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University College London Hospitals Charitable Foundation", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UCLH Charity", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University College London", + "type": "parent", + "id": "https://ror.org/02jx3x895" + } + ], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05n3x4p02.json b/v1.43/05n3x4p02.json new file mode 100644 index 000000000..0a882e4f6 --- /dev/null +++ b/v1.43/05n3x4p02.json @@ -0,0 +1,139 @@ +{ + "locations": [ + { + "geonames_id": 2761369, + "geonames_details": { + "country_code": "AT", + "country_name": "Austria", + "lat": 48.20849, + "lng": 16.37208, + "name": "Vienna" + } + } + ], + "established": 1365, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9259 8492" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100005788" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q700731" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.22937.3d" + ], + "preferred": "grid.22937.3d" + } + ], + "id": "https://ror.org/05n3x4p02", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.meduniwien.ac.at" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Medical_University_of_Vienna" + } + ], + "names": [ + { + "value": "Medical University of Vienna", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "MedUni Wien", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MedUni Vienna", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Medizinische Universität Wien", + "types": [ + "label" + ], + "lang": "de" + } + ], + "relationships": [ + { + "label": "Complexity Science Hub Vienna", + "type": "related", + "id": "https://ror.org/023dz9m50" + }, + { + "label": "Universitätsklinik für Neurologie", + "type": "related", + "id": "https://ror.org/00adn8q67" + }, + { + "label": "Universitätszahnklinik Wien", + "type": "related", + "id": "https://ror.org/04zvdfd56" + }, + { + "label": "Vienna General Hospital", + "type": "related", + "id": "https://ror.org/05f0zr486" + }, + { + "label": "Comprehensive Cancer Center Vienna", + "type": "child", + "id": "https://ror.org/00df3z122" + }, + { + "label": "Universitätsklinik für Hals-, Nasen- und Ohrenkrankheiten", + "type": "child", + "id": "https://ror.org/0045a4523" + }, + { + "label": "Austrian BioImaging/CMI", + "type": "related", + "id": "https://ror.org/028696h48" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05nqvv719.json b/v1.43/05nqvv719.json new file mode 100644 index 000000000..60b411742 --- /dev/null +++ b/v1.43/05nqvv719.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 3871336, + "geonames_details": { + "country_code": "CL", + "country_name": "Chile", + "lat": -33.45694, + "lng": -70.64827, + "name": "Santiago" + } + } + ], + "established": 1924, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0628 5553" + ], + "preferred": "0000 0004 0628 5553" + }, + { + "type": "wikidata", + "all": [ + "Q6017174" + ], + "preferred": "Q6017174" + } + ], + "id": "https://ror.org/05nqvv719", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.minagri.gob.cl" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Agriculture_%28Chile%29" + } + ], + "names": [ + { + "value": "Ministerio de Agricultura", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Minagri", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministerio de Agricultura de Chile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Chilean Ministry of Agriculture", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Agriculture, Chile", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Agriculture", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05p1j8758.json b/v1.43/05p1j8758.json new file mode 100644 index 000000000..81ad3b46e --- /dev/null +++ b/v1.43/05p1j8758.json @@ -0,0 +1,122 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-06-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1863, + "external_ids": [ + { + "all": [ + "100007765", + "100007830", + "100007766", + "100007829" + ], + "preferred": "100007765", + "type": "fundref" + }, + { + "all": [ + "grid.36567.31" + ], + "preferred": "grid.36567.31", + "type": "grid" + }, + { + "all": [ + "0000 0001 0737 1259" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q31249" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05p1j8758", + "links": [ + { + "type": "website", + "value": "http://www.k-state.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Kansas_State_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.18361, + "lng": -96.57167, + "name": "Manhattan" + }, + "geonames_id": 4274994 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "K-State" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Kansas State University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad Estatal de Kansas" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université d'État du kansas" + } + ], + "relationships": [ + { + "label": "Kansas State University Salina Aerospace and Technology Campus", + "type": "child", + "id": "https://ror.org/02mrpaq42" + }, + { + "label": "Konza Prairie Long Term Ecological Research", + "type": "child", + "id": "https://ror.org/02wavzm11" + }, + { + "label": "Johnson Cancer Research Center", + "type": "child", + "id": "https://ror.org/00nffqq91" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/05p3cb968.json b/v1.43/05p3cb968.json new file mode 100644 index 000000000..52aea9a65 --- /dev/null +++ b/v1.43/05p3cb968.json @@ -0,0 +1,92 @@ +{ + "locations": [ + { + "geonames_id": 1040652, + "geonames_details": { + "country_code": "MZ", + "country_name": "Mozambique", + "lat": -25.96553, + "lng": 32.58322, + "name": "Maputo" + } + } + ], + "established": 2005, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9230 7800" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100013954" + ], + "preferred": "501100013954" + }, + { + "type": "grid", + "all": [ + "grid.463372.7" + ], + "preferred": "grid.463372.7" + }, + { + "type": "wikidata", + "all": [ + "Q30261867" + ], + "preferred": "Q30261867" + } + ], + "id": "https://ror.org/05p3cb968", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://iiam.gov.mz" + } + ], + "names": [ + { + "value": "Instituto de Investigação Agrária de Moçambique", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Agricultural Research Institute of Mozambique", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "IIAM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05p70jq59.json b/v1.43/05p70jq59.json new file mode 100644 index 000000000..c97c6c94f --- /dev/null +++ b/v1.43/05p70jq59.json @@ -0,0 +1,103 @@ +{ + "locations": [ + { + "geonames_id": 2179537, + "geonames_details": { + "country_code": "NZ", + "country_name": "New Zealand", + "lat": -41.28664, + "lng": 174.77557, + "name": "Wellington" + } + } + ], + "established": 1989, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0727 3536" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q1937182" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.488641.7" + ], + "preferred": "grid.488641.7" + }, + { + "type": "fundref", + "all": [ + "501100009648" + ], + "preferred": "501100009648" + } + ], + "id": "https://ror.org/05p70jq59", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.education.govt.nz/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Education_(New_Zealand)" + } + ], + "names": [ + { + "value": "Ministry of Education", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Education of New Zealand", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "New Zealand Ministry of Education", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Te Tāhuhu o te Mātauranga", + "types": [ + "label" + ], + "lang": "mi" + } + ], + "relationships": [], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05ppf7q77.json b/v1.43/05ppf7q77.json new file mode 100644 index 000000000..8f0a54d5c --- /dev/null +++ b/v1.43/05ppf7q77.json @@ -0,0 +1,100 @@ +{ + "locations": [ + { + "geonames_id": 3014143, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.77334, + "lng": 2.07393, + "name": "Guyancourt" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q3214361" + ], + "preferred": "Q3214361" + }, + { + "type": "grid", + "all": [ + "grid.494619.7" + ], + "preferred": "grid.494619.7" + }, + { + "type": "isni", + "all": [ + "0000 0001 0456 3087" + ], + "preferred": "0000 0001 0456 3087" + } + ], + "id": "https://ror.org/05ppf7q77", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.latmos.ipsl.fr" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Laboratoire_atmosph%C3%A8res,_milieux,_observations_spatiales" + } + ], + "names": [ + { + "value": "Laboratoire atmosphères, milieux, observations spatiales", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Atmospheres Laboratory Environments, Observations Spatiales", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "LATMOS", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Sorbonne Université", + "type": "parent", + "id": "https://ror.org/02en5vm52" + }, + { + "label": "Université de Versailles Saint-Quentin-en-Yvelines", + "type": "parent", + "id": "https://ror.org/03mkjjy25" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05pvqha70.json b/v1.43/05pvqha70.json new file mode 100644 index 000000000..02108a11f --- /dev/null +++ b/v1.43/05pvqha70.json @@ -0,0 +1,109 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-09-23", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1856, + "external_ids": [ + { + "all": [ + "100009970" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.264119.9" + ], + "preferred": "grid.264119.9", + "type": "grid" + }, + { + "all": [ + "0000 0001 2179 3458" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1411093" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05pvqha70", + "links": [ + { + "type": "website", + "value": "http://www.stlawu.edu/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/St._Lawrence_University" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 44.59562, + "lng": -75.16909, + "name": "Canton" + }, + "geonames_id": 5111484 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SLU" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "St. Lawrence University" + }, + { + "lang": "es", + "types": [ + "label" + ], + "value": "Universidad de St. Lawrence" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Université de st. lawrence" + } + ], + "relationships": [ + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/05q4hzm57.json b/v1.43/05q4hzm57.json new file mode 100644 index 000000000..0db5b57ef --- /dev/null +++ b/v1.43/05q4hzm57.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 2950159, + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.52437, + "lng": 13.41053, + "name": "Berlin" + } + } + ], + "established": 2021, + "external_ids": [], + "id": "https://ror.org/05q4hzm57", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://kfid-online.de" + } + ], + "names": [ + { + "value": "Kommission für Forschungsinformationen in Deutschland", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Commission for Research Information in Germany", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "KFID", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "other" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05q6yhx55.json b/v1.43/05q6yhx55.json new file mode 100644 index 000000000..8a97d575c --- /dev/null +++ b/v1.43/05q6yhx55.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 2656173, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.3751, + "lng": -2.36172, + "name": "Bath" + } + } + ], + "established": 2002, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 7784 7859" + ], + "preferred": "0000 0004 7784 7859" + }, + { + "type": "fundref", + "all": [ + "100012660" + ], + "preferred": "100012660" + } + ], + "id": "https://ror.org/05q6yhx55", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.evacranetrust.org" + } + ], + "names": [ + { + "value": "Eva Crane Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05q94pf14.json b/v1.43/05q94pf14.json new file mode 100644 index 000000000..63668776c --- /dev/null +++ b/v1.43/05q94pf14.json @@ -0,0 +1,104 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": null, + "external_ids": [ + { + "all": [ + "0000 0004 0613 4851" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q30261483" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.462526.1" + ], + "preferred": "grid.462526.1", + "type": "grid" + } + ], + "id": "https://ror.org/05q94pf14", + "links": [ + { + "type": "website", + "value": "http://umr-lstm.cirad.fr/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Laboratoire des Symbioses Tropicales et Méditerranéennes" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "LSTM" + } + ], + "relationships": [ + { + "label": "Centre de Coopération Internationale en Recherche Agronomique pour le Développement", + "type": "parent", + "id": "https://ror.org/05kpkpg04" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "parent", + "id": "https://ror.org/05q3vnk25" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/05qj6w324.json b/v1.43/05qj6w324.json new file mode 100644 index 000000000..5a848dc42 --- /dev/null +++ b/v1.43/05qj6w324.json @@ -0,0 +1,86 @@ +{ + "admin": { + "created": { + "date": "2022-06-16", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2020, + "external_ids": [ + { + "all": [ + "Q105757481" + ], + "preferred": "Q105757481", + "type": "wikidata" + } + ], + "id": "https://ror.org/05qj6w324", + "links": [ + { + "type": "website", + "value": "https://www.nfdi.de" + }, + { + "type": "wikipedia", + "value": "https://de.wikipedia.org/wiki/Nationale_Forschungsdateninfrastruktur" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 49.00937, + "lng": 8.40444, + "name": "Karlsruhe" + }, + "geonames_id": 2892794 + } + ], + "names": [ + { + "lang": "en", + "types": [ + "label" + ], + "value": "German National Research Data Infrastructure" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "NFDI" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Nationale Forschungsdateninfrastruktur" + } + ], + "relationships": [ + { + "label": "Mathematical Research Data Initiative", + "type": "child", + "id": "https://ror.org/04ncnzm65" + }, + { + "label": "NFDI4DS", + "type": "child", + "id": "https://ror.org/00bb4nn95" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/05qpmg879.json b/v1.43/05qpmg879.json new file mode 100644 index 000000000..5767ec823 --- /dev/null +++ b/v1.43/05qpmg879.json @@ -0,0 +1,94 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1998, + "external_ids": [ + { + "all": [ + "grid.465534.5" + ], + "preferred": "grid.465534.5", + "type": "grid" + }, + { + "all": [ + "0000 0004 0638 0833" + ], + "preferred": null, + "type": "isni" + } + ], + "id": "https://ror.org/05qpmg879", + "links": [ + { + "type": "website", + "value": "http://www-ibmc.u-strasbg.fr/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.58392, + "lng": 7.74553, + "name": "Strasbourg" + }, + "geonames_id": 2973783 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "IBMC" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Institut de Biologie Moléculaire et Cellulaire" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Institute for Molecular and Cellular Biology" + } + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "University of Strasbourg", + "type": "parent", + "id": "https://ror.org/00pg6eq24" + }, + { + "label": "Modèles Insectes de l'Immunité Innée", + "type": "child", + "id": "https://ror.org/030przz70" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/05r0vyz12.json b/v1.43/05r0vyz12.json new file mode 100644 index 000000000..594db7c63 --- /dev/null +++ b/v1.43/05r0vyz12.json @@ -0,0 +1,142 @@ +{ + "locations": [ + { + "geonames_id": 3117735, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 40.4165, + "lng": -3.70256, + "name": "Madrid" + } + } + ], + "established": 2020, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100004837", + "100014440", + "501100017642" + ], + "preferred": "501100004837" + }, + { + "type": "wikidata", + "all": [ + "Q85874966" + ], + "preferred": "Q85874966" + } + ], + "id": "https://ror.org/05r0vyz12", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ciencia.gob.es" + }, + { + "type": "wikipedia", + "value": "https://es.wikipedia.org/wiki/Ministerio_de_Ciencia_e_Innovaci%C3%B3n" + } + ], + "names": [ + { + "value": "Ministerio de Ciencia, Innovación y Universidades", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Ministry of Science and Information", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Science, Innovation and Universities", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Spanish Ministry of Science, Innovation and Universities", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministry of Science, Innovation and Universities, Spain", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministerio de Ciencia, Innovación y Universidades de España", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministerio de Ciencia e Innovación", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Ministerio de Ciencia e Innovación de España", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "MICINN", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Agencia Estatal de Investigación", + "type": "child", + "id": "https://ror.org/003x0zc53" + }, + { + "label": "European X-Ray Free-Electron Laser", + "type": "child", + "id": "https://ror.org/01wp2jz98" + }, + { + "label": "Instituto de Salud Carlos III", + "type": "child", + "id": "https://ror.org/00ca2c886" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05r332y60.json b/v1.43/05r332y60.json new file mode 100644 index 000000000..ebb4a96bb --- /dev/null +++ b/v1.43/05r332y60.json @@ -0,0 +1,116 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-07-27", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1999, + "external_ids": [ + { + "all": [ + "0000 0004 0445 8430" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q30261319" + ], + "preferred": null, + "type": "wikidata" + }, + { + "all": [ + "grid.461861.c" + ], + "preferred": "grid.461861.c", + "type": "grid" + } + ], + "id": "https://ror.org/05r332y60", + "links": [ + { + "type": "website", + "value": "https://www1.montpellier.inra.fr/wp-inra/bpmp/en/" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 43.61093, + "lng": 3.87635, + "name": "Montpellier" + }, + "geonames_id": 2992166 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Biochemistry and Plant Molecular Physiology" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Biochimie et Physiologie Moléculaire des Plantes" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "BPMP" + } + ], + "relationships": [ + { + "label": "Institut des Sciences Biologiques", + "type": "parent", + "id": "https://ror.org/00rydyx93" + }, + { + "label": "Institut Agro Montpellier", + "type": "parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "National Research Institute for Agriculture, Food and Environment", + "type": "parent", + "id": "https://ror.org/003vg9w96" + }, + { + "label": "University of Montpellier", + "type": "parent", + "id": "https://ror.org/051escj72" + }, + { + "label": "Agropolymerpolymer Engineering and Emerging Technologies", + "type": "child", + "id": "https://ror.org/0000n5x09" + }, + { + "label": "Genetic Improvement and Adaptation of Mediterranean and Tropical Plants", + "type": "child", + "id": "https://ror.org/02w4exq36" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/05r3f7h03.json b/v1.43/05r3f7h03.json new file mode 100644 index 000000000..dd91912cb --- /dev/null +++ b/v1.43/05r3f7h03.json @@ -0,0 +1,96 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1887, + "external_ids": [ + { + "all": [ + "grid.4764.1" + ], + "preferred": "grid.4764.1", + "type": "grid" + }, + { + "all": [ + "0000 0001 2186 1887" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q470438", + "Q28738259" + ], + "preferred": "Q470438", + "type": "wikidata" + } + ], + "id": "https://ror.org/05r3f7h03", + "links": [ + { + "type": "website", + "value": "https://www.ptb.de/cms/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Physikalisch-Technische_Bundesanstalt" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DE", + "country_name": "Germany", + "lat": 52.26594, + "lng": 10.52673, + "name": "Braunschweig" + }, + "geonames_id": 2945024 + } + ], + "names": [ + { + "lang": "en", + "types": [ + "label" + ], + "value": "German National Metrology Institute" + }, + { + "lang": null, + "types": [ + "acronym" + ], + "value": "PTB" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Physikalisch-Technische Bundesanstalt" + } + ], + "relationships": [ + { + "label": "LEAPS", + "type": "related", + "id": "https://ror.org/04wcn4e27" + } + ], + "status": "active", + "types": [ + "facility" + ] +} \ No newline at end of file diff --git a/v1.43/05rbx8m02.json b/v1.43/05rbx8m02.json new file mode 100644 index 000000000..2692843ce --- /dev/null +++ b/v1.43/05rbx8m02.json @@ -0,0 +1,98 @@ +{ + "locations": [ + { + "geonames_id": 3173435, + "geonames_details": { + "country_code": "IT", + "country_name": "Italy", + "lat": 45.46427, + "lng": 9.18951, + "name": "Milan" + } + } + ], + "established": 1918, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 0707 5492" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100008088" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.417894.7" + ], + "preferred": "grid.417894.7" + } + ], + "id": "https://ror.org/05rbx8m02", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.istituto-besta.it" + } + ], + "names": [ + { + "value": "Fondazione IRCCS Istituto Neurologico Carlo Besta", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "IRCCS Istituto Neurologico Carlo Besta", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Istituto Neurologico Carlo Besta", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Carlo Besta Neurological Institute", + "types": [ + "label" + ], + "lang": "en" + } + ], + "relationships": [ + { + "label": "Istituti di Ricovero e Cura a Carattere Scientifico", + "type": "parent", + "id": "https://ror.org/04tfzc498" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05rdv5n40.json b/v1.43/05rdv5n40.json new file mode 100644 index 000000000..38de1594d --- /dev/null +++ b/v1.43/05rdv5n40.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1945, + "external_ids": [ + { + "all": [ + "grid.434823.a" + ], + "preferred": "grid.434823.a", + "type": "grid" + }, + { + "all": [ + "Q1550517" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05rdv5n40", + "links": [ + { + "type": "website", + "value": "https://www.grundfos.com/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Grundfos" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "DK", + "country_name": "Denmark", + "lat": 56.37797, + "lng": 9.66065, + "name": "Bjerringbro" + }, + "geonames_id": 2624019 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Grundfos (Denmark)" + }, + { + "lang": "da", + "types": [ + "label" + ], + "value": "ˈkʁɔnˀfɒs" + } + ], + "relationships": [ + { + "label": "Grundfos Fond", + "type": "parent", + "id": "https://ror.org/0008vp155" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/05sbt2524.json b/v1.43/05sbt2524.json new file mode 100644 index 000000000..71d1baee2 --- /dev/null +++ b/v1.43/05sbt2524.json @@ -0,0 +1,230 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1892, + "external_ids": [ + { + "all": [ + "grid.5676.2" + ], + "preferred": "grid.5676.2", + "type": "grid" + }, + { + "all": [ + "0000 0004 1765 4326" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q1665121" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05sbt2524", + "links": [ + { + "type": "website", + "value": "http://www.grenoble-inp.fr/welcome/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Grenoble_Institute_of_Technology" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.17869, + "lng": 5.71479, + "name": "Grenoble" + }, + "geonames_id": 3014728 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Grenoble INP" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Grenoble Institute of Technology" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Institut polytechnique de Grenoble" + } + ], + "relationships": [ + { + "label": "Centre Interuniversitaire de MicroElectronique et Nanotechnologies", + "type": "child", + "id": "https://ror.org/000tdrn36" + }, + { + "label": "Grenoble Applied Economics Lab", + "type": "child", + "id": "https://ror.org/00fwjkb59" + }, + { + "label": "Grenoble Computer Science Laboratory", + "type": "child", + "id": "https://ror.org/01c8rcg82" + }, + { + "label": "Grenoble Images Parole Signal Automatique", + "type": "child", + "id": "https://ror.org/02wrme198" + }, + { + "label": "Institut de Microélectronique, Electromagnétisme et Photonique", + "type": "child", + "id": "https://ror.org/03taa9n66" + }, + { + "label": "Institute of Environmental Geosciences", + "type": "child", + "id": "https://ror.org/01wwcfa26" + }, + { + "label": "LabEx PERSYVAL-Lab", + "type": "child", + "id": "https://ror.org/03eqm6y13" + }, + { + "label": "Laboratoire Jean Kuntzmann", + "type": "child", + "id": "https://ror.org/04ett5b41" + }, + { + "label": "Laboratoire Rhéologie et Procédés", + "type": "child", + "id": "https://ror.org/044ggyg50" + }, + { + "label": "Laboratoire de Conception et d'Intégration des Systèmes", + "type": "child", + "id": "https://ror.org/04eg25g76" + }, + { + "label": "Laboratoire de Génie Électrique de Grenoble", + "type": "child", + "id": "https://ror.org/05hyx5a17" + }, + { + "label": "Laboratoire des Sciences pour la Conception, l'Optimisation et la Production", + "type": "child", + "id": "https://ror.org/00rv5x925" + }, + { + "label": "Laboratoire des Écoulements Géophysiques et Industriels", + "type": "child", + "id": "https://ror.org/043pfpy19" + }, + { + "label": "Laboratoire d’Electrochimie et de Physico-chimie des Matériaux et des Interfaces", + "type": "child", + "id": "https://ror.org/04axb9j69" + }, + { + "label": "Laboratory of Pulp and Paper Science and Graphic Arts", + "type": "child", + "id": "https://ror.org/02z8yps18" + }, + { + "label": "Laboratory of Subatomic Physics and Cosmology", + "type": "child", + "id": "https://ror.org/03f0apy98" + }, + { + "label": "Materials and Physical Engineering Laboratory", + "type": "child", + "id": "https://ror.org/014n97s28" + }, + { + "label": "Science et Ingénierie des Matériaux et Procédés", + "type": "child", + "id": "https://ror.org/00m7zca23" + }, + { + "label": "Sols, Solides, Structures, Risques", + "type": "child", + "id": "https://ror.org/03bcdsr62" + }, + { + "label": "Spintronique et Technologie des Composants", + "type": "child", + "id": "https://ror.org/03e044190" + }, + { + "label": "Techniques for Biomedical Engineering and Complexity Management–Informatics, Mathematics and Applications Grenoble", + "type": "child", + "id": "https://ror.org/03985kf35" + }, + { + "label": "Techniques of Informatics and Microelectronics for Integrated Systems Architecture", + "type": "child", + "id": "https://ror.org/000063q30" + }, + { + "label": "Verimag", + "type": "child", + "id": "https://ror.org/05afmzm11" + }, + { + "label": "GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de Données", + "type": "child", + "id": "https://ror.org/044cfnj78" + }, + { + "label": "Micropesanteur Fondamentale et Appliquée", + "type": "child", + "id": "https://ror.org/05be9p317" + }, + { + "label": "Microscopie Fonctionnelle du Vivant", + "type": "child", + "id": "https://ror.org/01sgwka45" + }, + { + "label": "Université Grenoble Alpes", + "type": "parent", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Communauté Université Grenoble Alpes", + "type": "related", + "id": "https://ror.org/05v727m31" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/05sgwan27.json b/v1.43/05sgwan27.json new file mode 100644 index 000000000..457773e16 --- /dev/null +++ b/v1.43/05sgwan27.json @@ -0,0 +1,64 @@ +{ + "locations": [ + { + "geonames_id": 3128760, + "geonames_details": { + "country_code": "ES", + "country_name": "Spain", + "lat": 41.38879, + "lng": 2.15899, + "name": "Barcelona" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q30256536" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.434270.6" + ], + "preferred": "grid.434270.6" + } + ], + "id": "https://ror.org/05sgwan27", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://worldgeo.weebly.com/" + } + ], + "names": [ + { + "value": "Ecosystem (Spain)", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "inactive", + "types": [ + "company" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05sqppn31.json b/v1.43/05sqppn31.json new file mode 100644 index 000000000..1127b3178 --- /dev/null +++ b/v1.43/05sqppn31.json @@ -0,0 +1,85 @@ +{ + "locations": [ + { + "geonames_id": 2797656, + "geonames_details": { + "country_code": "BE", + "country_name": "Belgium", + "lat": 51.05, + "lng": 3.71667, + "name": "Ghent" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0729 1485" + ], + "preferred": "0000 0005 0729 1485" + }, + { + "type": "fundref", + "all": [ + "100019618" + ], + "preferred": "100019618" + } + ], + "id": "https://ror.org/05sqppn31", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.vscentrum.be" + } + ], + "names": [ + { + "value": "Vlaams Supercomputer Centrum", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Flemish Supercomputer Center", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Flemish Supercomputer Centre", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "VSC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05stqjz94.json b/v1.43/05stqjz94.json new file mode 100644 index 000000000..7c48ec96f --- /dev/null +++ b/v1.43/05stqjz94.json @@ -0,0 +1,66 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 1977, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q45134415" + ], + "preferred": "Q45134415" + }, + { + "type": "fundref", + "all": [ + "100012164" + ], + "preferred": "100012164" + } + ], + "id": "https://ror.org/05stqjz94", + "domains": [], + "links": [], + "names": [ + { + "value": "Row Fogo Charitable Trust", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Mrs. Gladys Row Fogo Charitable Trust", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05syd6y78.json b/v1.43/05syd6y78.json new file mode 100644 index 000000000..2df801316 --- /dev/null +++ b/v1.43/05syd6y78.json @@ -0,0 +1,97 @@ +{ + "locations": [ + { + "geonames_id": 3464975, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -25.42778, + "lng": -49.27306, + "name": "Curitiba" + } + } + ], + "established": 1912, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 1941 472X" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100008224", + "501100008223" + ], + "preferred": "501100008223" + }, + { + "type": "wikidata", + "all": [ + "Q1232831" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.20736.30" + ], + "preferred": "grid.20736.30" + } + ], + "id": "https://ror.org/05syd6y78", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://ufpr.br" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Federal_University_of_Paran%C3%A1" + } + ], + "names": [ + { + "value": "Universidade Federal do Paraná", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Federal University of Paraná", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UFPR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05sz3st37.json b/v1.43/05sz3st37.json new file mode 100644 index 000000000..37d359cb6 --- /dev/null +++ b/v1.43/05sz3st37.json @@ -0,0 +1,79 @@ +{ + "locations": [ + { + "geonames_id": 6325521, + "geonames_details": { + "country_code": "CA", + "country_name": "Canada", + "lat": 46.80326, + "lng": -71.17793, + "name": "Lévis" + } + } + ], + "established": 1990, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0000 9606 3209" + ], + "preferred": "0000 0000 9606 3209" + }, + { + "type": "wikidata", + "all": [ + "Q3009983" + ], + "preferred": "Q3009983" + } + ], + "id": "https://ror.org/05sz3st37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://cegepba.qc.ca" + }, + { + "type": "wikipedia", + "value": "https://fr.wikipedia.org/wiki/C%C3%A9gep_Beauce-Appalaches" + } + ], + "names": [ + { + "value": "Cégep Beauce-Appalaches", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Hôpital d'Youville de Sherbrooke", + "type": "parent", + "id": "https://ror.org/02805zw73" + }, + { + "label": "Hôpital d'Youville de Sherbrooke", + "type": "child", + "id": "https://ror.org/02805zw73" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05t17k830.json b/v1.43/05t17k830.json new file mode 100644 index 000000000..ec595566a --- /dev/null +++ b/v1.43/05t17k830.json @@ -0,0 +1,78 @@ +{ + "locations": [ + { + "geonames_id": 2650225, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 55.95206, + "lng": -3.19648, + "name": "Edinburgh" + } + } + ], + "established": 2012, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0005 0285 1076" + ], + "preferred": "0000 0005 0285 1076" + }, + { + "type": "fundref", + "all": [ + "501100019326" + ], + "preferred": "501100019326" + } + ], + "id": "https://ror.org/05t17k830", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ukrmp.org.uk" + } + ], + "names": [ + { + "value": "UK Regenerative Medicine Platform", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "United Kingdom Regenerative Medicine Platform", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "UKRMP", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05t2rs949.json b/v1.43/05t2rs949.json new file mode 100644 index 000000000..f33c481f3 --- /dev/null +++ b/v1.43/05t2rs949.json @@ -0,0 +1,63 @@ +{ + "locations": [ + { + "geonames_id": 3470353, + "geonames_details": { + "country_code": "BR", + "country_name": "Brazil", + "lat": -23.51056, + "lng": -46.87611, + "name": "Barueri" + } + } + ], + "established": 1994, + "external_ids": [], + "id": "https://ror.org/05t2rs949", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://fieb.edu.br" + } + ], + "names": [ + { + "value": "Fundação Instututo de Educação de Barueri", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Instituto Tecnológico de Barueri", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "FIEB", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05tamah23.json b/v1.43/05tamah23.json new file mode 100644 index 000000000..8bb04a5d7 --- /dev/null +++ b/v1.43/05tamah23.json @@ -0,0 +1,77 @@ +{ + "locations": [ + { + "geonames_id": 2653941, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 52.2, + "lng": 0.11667, + "name": "Cambridge" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "fundref", + "all": [ + "501100011032" + ], + "preferred": "501100011032" + } + ], + "id": "https://ror.org/05tamah23", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.cedar.iph.cam.ac.uk" + } + ], + "names": [ + { + "value": "Communicating Diet and Activity Research", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Centre for Diet and Activity Research", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CEDAR", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "United Kingdom Clinical Research Collaboration", + "type": "related", + "id": "https://ror.org/025ecp212" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05tgxx705.json b/v1.43/05tgxx705.json new file mode 100644 index 000000000..48dc46062 --- /dev/null +++ b/v1.43/05tgxx705.json @@ -0,0 +1,116 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-02-13", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1987, + "external_ids": [ + { + "all": [ + "501100010892", + "501100010218" + ], + "preferred": "501100010892", + "type": "fundref" + }, + { + "all": [ + "grid.484092.3" + ], + "preferred": "grid.484092.3", + "type": "grid" + }, + { + "all": [ + "Q3547215" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05tgxx705", + "links": [ + { + "type": "website", + "value": "http://www.dost.gov.ph/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Department_of_Science_and_Technology_(Philippines)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "PH", + "country_name": "Philippines", + "lat": 14.5243, + "lng": 121.0792, + "name": "Taguig" + }, + "geonames_id": 1684308 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "DOST" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Department of Science and Technology" + }, + { + "lang": "tl", + "types": [ + "label" + ], + "value": "Kagawaran ng Agham at Teknolohiya" + } + ], + "relationships": [ + { + "label": "Industrial Technology Development Institute", + "type": "child", + "id": "https://ror.org/058k8t807" + }, + { + "label": "Philippine Council for Industry, Energy, and Emerging Technology Research and Development", + "type": "child", + "id": "https://ror.org/056ezpj87" + }, + { + "label": "Philippine Council for Health Research and Development", + "type": "child", + "id": "https://ror.org/04rpdbq72" + }, + { + "label": "Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development", + "type": "child", + "id": "https://ror.org/057p7e749" + }, + { + "label": "National Research Council of the Philippines", + "type": "child", + "id": "https://ror.org/00c746491" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/05tvkct11.json b/v1.43/05tvkct11.json new file mode 100644 index 000000000..7ad1b9f21 --- /dev/null +++ b/v1.43/05tvkct11.json @@ -0,0 +1,71 @@ +{ + "locations": [ + { + "geonames_id": 2158177, + "geonames_details": { + "country_code": "AU", + "country_name": "Australia", + "lat": -37.814, + "lng": 144.96332, + "name": "Melbourne" + } + } + ], + "established": 1978, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 6431 4914" + ], + "preferred": "0000 0004 6431 4914" + }, + { + "type": "wikidata", + "all": [ + "Q7238757" + ], + "preferred": "Q7238757" + }, + { + "type": "fundref", + "all": [ + "100012188" + ], + "preferred": "100012188" + } + ], + "id": "https://ror.org/05tvkct11", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Pratt_Foundation" + } + ], + "names": [ + { + "value": "Pratt Foundation", + "types": [ + "ror_display", + "label" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "nonprofit" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05twwhs70.json b/v1.43/05twwhs70.json new file mode 100644 index 000000000..8f878b38d --- /dev/null +++ b/v1.43/05twwhs70.json @@ -0,0 +1,107 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-11", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 2002, + "external_ids": [ + { + "all": [ + "501100010880" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.433158.8" + ], + "preferred": "grid.433158.8", + "type": "grid" + }, + { + "all": [ + "0000 0000 8891 7315" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q209078" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05twwhs70", + "links": [ + { + "type": "website", + "value": "http://www.sgcc.com.cn/ywlm/index.shtml" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/State_Grid_Corporation_of_China" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 39.9075, + "lng": 116.39723, + "name": "Beijing" + }, + "geonames_id": 1816670 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "SGCC" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "State Grid Corporation of China (China)" + }, + { + "lang": "zh", + "types": [ + "label" + ], + "value": "国家电网公司" + } + ], + "relationships": [ + { + "label": "Global Energy Interconnection Research Institute North America", + "type": "child", + "id": "https://ror.org/00efwap41" + }, + { + "label": "China Electric Power Research Institute", + "type": "child", + "id": "https://ror.org/05ehpzy81" + } + ], + "status": "active", + "types": [ + "company" + ] +} \ No newline at end of file diff --git a/v1.43/05tyqjm34.json b/v1.43/05tyqjm34.json new file mode 100644 index 000000000..2fa44fdbe --- /dev/null +++ b/v1.43/05tyqjm34.json @@ -0,0 +1,81 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1857, + "external_ids": [ + { + "all": [ + "grid.431503.0" + ], + "preferred": "grid.431503.0", + "type": "grid" + }, + { + "all": [ + "0000 0000 8971 0658" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q7401893" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05tyqjm34", + "links": [ + { + "type": "website", + "value": "http://www.saintmeinrad.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Saint_Meinrad_Seminary_and_School_of_Theology" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 38.12005, + "lng": -86.91416, + "name": "Santa Claus" + }, + "geonames_id": 4264457 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Saint Meinrad Seminary and School of Theology" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/05v1m8q81.json b/v1.43/05v1m8q81.json new file mode 100644 index 000000000..adc242344 --- /dev/null +++ b/v1.43/05v1m8q81.json @@ -0,0 +1,128 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-02-16", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1966, + "external_ids": [ + { + "all": [ + "501100004409", + "100012964" + ], + "preferred": null, + "type": "fundref" + }, + { + "all": [ + "grid.425819.3" + ], + "preferred": "grid.425819.3", + "type": "grid" + }, + { + "all": [ + "Q3315194" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05v1m8q81", + "links": [ + { + "type": "website", + "value": "http://www.mes.tn/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Ministry_of_Higher_Education_and_Scientific_Research_(Tunisia)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "TN", + "country_name": "Tunisia", + "lat": 36.81897, + "lng": 10.16579, + "name": "Tunis" + }, + "geonames_id": 2464470 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "MHESR" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Ministry of Higher Education and Scientific Research" + }, + { + "lang": "fr", + "types": [ + "label" + ], + "value": "Ministère de l'Enseignement Supérieur et de la Recherche Scientifique" + }, + { + "lang": "ar", + "types": [ + "label" + ], + "value": "وزارة التعليم العالي والبحث العلمي" + } + ], + "relationships": [ + { + "label": "Institut Préparatoire aux Études d'Ingénieurs de Monastir", + "type": "child", + "id": "https://ror.org/02qrt6d45" + }, + { + "label": "Institut de Recherche pour le Développement", + "type": "child", + "id": "https://ror.org/044vzpb64" + }, + { + "label": "Mateur Higher School of Agriculture", + "type": "child", + "id": "https://ror.org/053y1tm43" + }, + { + "label": "National Agency for Promotion of Research and Innovation", + "type": "child", + "id": "https://ror.org/020vej288" + }, + { + "label": "Research and Technology Center of Energy", + "type": "child", + "id": "https://ror.org/00dyead60" + }, + { + "label": "University National Center of Scientific and Technical Documentation", + "type": "child", + "id": "https://ror.org/03hc27x54" + } + ], + "status": "active", + "types": [ + "government" + ] +} \ No newline at end of file diff --git a/v1.43/05v727m31.json b/v1.43/05v727m31.json new file mode 100644 index 000000000..5595c66ba --- /dev/null +++ b/v1.43/05v727m31.json @@ -0,0 +1,127 @@ +{ + "locations": [ + { + "geonames_id": 2978317, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 45.1787, + "lng": 5.76281, + "name": "Saint-Martin-d'Hères" + } + } + ], + "established": 2013, + "external_ids": [ + { + "type": "wikidata", + "all": [ + "Q3551589" + ], + "preferred": "Q3551589" + }, + { + "type": "fundref", + "all": [ + "100012953" + ], + "preferred": "100012953" + } + ], + "id": "https://ror.org/05v727m31", + "domains": [], + "links": [ + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Community_Universit%C3%A9_Grenoble_Alpes" + } + ], + "names": [ + { + "value": "Communauté Université Grenoble Alpes", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "University of Grenoble Alpes ComUE", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Communauté Université Grenoble-Alpes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "University of Grenoble Alpes Community", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "ComUE Université Grenoble Alpes", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Community University Grenoble Alps", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "COMUE", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "related", + "id": "https://ror.org/02rx3b187" + }, + { + "label": "Grenoble Institute of Technology", + "type": "related", + "id": "https://ror.org/05sbt2524" + }, + { + "label": "French National Centre for Scientific Research", + "type": "related", + "id": "https://ror.org/02feahw73" + }, + { + "label": "French Institute for Research in Computer Science and Automation", + "type": "related", + "id": "https://ror.org/02kvxyf05" + } + ], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05vm26792.json b/v1.43/05vm26792.json new file mode 100644 index 000000000..48a9c574f --- /dev/null +++ b/v1.43/05vm26792.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 1691444, + "geonames_details": { + "country_code": "PH", + "country_name": "Philippines", + "lat": 11.58528, + "lng": 122.75111, + "name": "Roxas City" + } + } + ], + "established": 1981, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0480 6802" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5036027" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.443135.4" + ], + "preferred": "grid.443135.4" + } + ], + "id": "https://ror.org/05vm26792", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.capsu.edu.ph" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Capiz_State_University" + } + ], + "names": [ + { + "value": "Capiz State University", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Panay State Polytechnic College", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "CAPSU", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05vnxnq07.json b/v1.43/05vnxnq07.json new file mode 100644 index 000000000..83881bdff --- /dev/null +++ b/v1.43/05vnxnq07.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1855, + "external_ids": [ + { + "all": [ + "grid.431592.8" + ], + "preferred": "grid.431592.8", + "type": "grid" + }, + { + "all": [ + "0000 0001 2149 5506" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5110194" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05vnxnq07", + "links": [ + { + "type": "website", + "value": "http://www.cts.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Christian_Theological_Seminary" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.76838, + "lng": -86.15804, + "name": "Indianapolis" + }, + "geonames_id": 4259418 + } + ], + "names": [ + { + "lang": null, + "types": [ + "acronym" + ], + "value": "CTS" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Christian Theological Seminary" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "other" + ] +} \ No newline at end of file diff --git a/v1.43/05vrs0r17.json b/v1.43/05vrs0r17.json new file mode 100644 index 000000000..53cf81803 --- /dev/null +++ b/v1.43/05vrs0r17.json @@ -0,0 +1,107 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2022-10-20", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1826, + "external_ids": [ + { + "all": [ + "100010957" + ], + "preferred": "100010957", + "type": "fundref" + }, + { + "all": [ + "grid.264268.c" + ], + "preferred": "grid.264268.c", + "type": "grid" + }, + { + "all": [ + "0000 0004 0388 0154" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q6487738" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05vrs0r17", + "links": [ + { + "type": "website", + "value": "http://home.fredonia.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Fredonia" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.44006, + "lng": -79.33171, + "name": "Fredonia" + }, + "geonames_id": 5117926 + } + ], + "names": [ + { + "lang": null, + "types": [ + "alias" + ], + "value": "Fredonia State College" + }, + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "SUNY Fredonia" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "State University of New York at Fredonia" + } + ], + "relationships": [ + { + "label": "State University of New York", + "type": "parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Great Lakes Research Consortium", + "type": "related", + "id": "https://ror.org/05cshtm26" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/05vs9t239.json b/v1.43/05vs9t239.json new file mode 100644 index 000000000..1e38561a2 --- /dev/null +++ b/v1.43/05vs9t239.json @@ -0,0 +1,56 @@ +{ + "locations": [ + { + "geonames_id": 1793511, + "geonames_details": { + "country_code": "CN", + "country_name": "China", + "lat": 37.86944, + "lng": 112.56028, + "name": "Taiyuan" + } + } + ], + "established": 1998, + "external_ids": [], + "id": "https://ror.org/05vs9t239", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.sx.sgcc.com.cn" + } + ], + "names": [ + { + "value": "State Grid Shanxi Electric Power Company Electric Power Research Institute", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "国网山西省电力公司电力科学研究院", + "types": [ + "label" + ], + "lang": "zh" + } + ], + "relationships": [], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05w35s747.json b/v1.43/05w35s747.json new file mode 100644 index 000000000..9825d8c7a --- /dev/null +++ b/v1.43/05w35s747.json @@ -0,0 +1,88 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2021-03-17", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1834, + "external_ids": [ + { + "all": [ + "grid.421573.6" + ], + "preferred": "grid.421573.6", + "type": "grid" + }, + { + "all": [ + "0000 0000 9525 218X" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q5491372" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05w35s747", + "links": [ + { + "type": "website", + "value": "http://www.franklincollege.edu/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Franklin_College_(Indiana)" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 39.48061, + "lng": -86.05499, + "name": "Franklin" + }, + "geonames_id": 4828382 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Franklin College" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "Franklin College of Indiana" + } + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "related", + "id": "https://ror.org/05dch6316" + } + ], + "status": "active", + "types": [ + "education" + ] +} \ No newline at end of file diff --git a/v1.43/05wg1m734.json b/v1.43/05wg1m734.json new file mode 100644 index 000000000..6456ad125 --- /dev/null +++ b/v1.43/05wg1m734.json @@ -0,0 +1,125 @@ +{ + "locations": [ + { + "geonames_id": 2750053, + "geonames_details": { + "country_code": "NL", + "country_name": "The Netherlands", + "lat": 51.8425, + "lng": 5.85278, + "name": "Nijmegen" + } + } + ], + "established": 1956, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0444 9382" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100006209", + "501100003297" + ], + "preferred": "501100006209" + }, + { + "type": "wikidata", + "all": [ + "Q2594321" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.10417.33" + ], + "preferred": "grid.10417.33" + } + ], + "id": "https://ror.org/05wg1m734", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.radboudumc.nl" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Radboud_University_Nijmegen_Medical_Centre" + } + ], + "names": [ + { + "value": "Radboud University Medical Center", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Radboud University Nijmegen Medical Centre", + "types": [ + "alias" + ], + "lang": null + }, + { + "value": "Radboudumc", + "types": [ + "label" + ], + "lang": "nl" + }, + { + "value": "RUNMC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Radboud University Nijmegen", + "type": "related", + "id": "https://ror.org/016xsfp80" + }, + { + "label": "Amalia Kinderziekenhuis", + "type": "child", + "id": "https://ror.org/024pk8k39" + }, + { + "label": "ERN eUROGEN", + "type": "related", + "id": "https://ror.org/00y7tet25" + }, + { + "label": "ERN GENTURIS", + "type": "related", + "id": "https://ror.org/03pbpa834" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05wnp0977.json b/v1.43/05wnp0977.json new file mode 100644 index 000000000..03ced11cd --- /dev/null +++ b/v1.43/05wnp0977.json @@ -0,0 +1,70 @@ +{ + "locations": [ + { + "geonames_id": 2643743, + "geonames_details": { + "country_code": "GB", + "country_name": "United Kingdom", + "lat": 51.50853, + "lng": -0.12574, + "name": "London" + } + } + ], + "established": null, + "external_ids": [ + { + "type": "fundref", + "all": [ + "100012339" + ], + "preferred": "100012339" + } + ], + "id": "https://ror.org/05wnp0977", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.gov.uk/government/organisations/defence-and-security-accelerator" + } + ], + "names": [ + { + "value": "Defence and Security Accelerator", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "DASA", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Ministry of Defence", + "type": "parent", + "id": "https://ror.org/01bvxzn29" + } + ], + "status": "active", + "types": [ + "government" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05wygq130.json b/v1.43/05wygq130.json new file mode 100644 index 000000000..1573e2218 --- /dev/null +++ b/v1.43/05wygq130.json @@ -0,0 +1,89 @@ +{ + "locations": [ + { + "geonames_id": 3871336, + "geonames_details": { + "country_code": "CL", + "country_name": "Chile", + "lat": -33.45694, + "lng": -70.64827, + "name": "Santiago" + } + } + ], + "established": 1981, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2230 9680" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5515968" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.441822.9" + ], + "preferred": "grid.441822.9" + } + ], + "id": "https://ror.org/05wygq130", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.ugm.cl/" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Gabriela_Mistral_University" + } + ], + "names": [ + { + "value": "Universidad Gabriela Mistral", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Gabriela Mistral University", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UGM", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05wzh1m37.json b/v1.43/05wzh1m37.json new file mode 100644 index 000000000..abcd3c52c --- /dev/null +++ b/v1.43/05wzh1m37.json @@ -0,0 +1,82 @@ +{ + "locations": [ + { + "geonames_id": 2989204, + "geonames_details": { + "country_code": "FR", + "country_name": "France", + "lat": 48.69572, + "lng": 2.18727, + "name": "Orsay" + } + } + ], + "established": 2006, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0382 4005" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.462047.3" + ], + "preferred": "grid.462047.3" + } + ], + "id": "https://ror.org/05wzh1m37", + "domains": [], + "links": [ + { + "type": "website", + "value": "https://www.icmmo.universite-paris-saclay.fr" + } + ], + "names": [ + { + "value": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "ICMMO", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "University of Paris-Saclay", + "type": "parent", + "id": "https://ror.org/03xjwb503" + }, + { + "label": "French National Centre for Scientific Research", + "type": "parent", + "id": "https://ror.org/02feahw73" + } + ], + "status": "active", + "types": [ + "facility" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05x643e19.json b/v1.43/05x643e19.json new file mode 100644 index 000000000..a52117d9a --- /dev/null +++ b/v1.43/05x643e19.json @@ -0,0 +1,93 @@ +{ + "locations": [ + { + "geonames_id": 4994358, + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.96336, + "lng": -85.66809, + "name": "Grand Rapids" + } + } + ], + "established": 1875, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0004 0450 5989" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q5003039" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.413153.1" + ], + "preferred": "grid.413153.1" + } + ], + "id": "https://ror.org/05x643e19", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.spectrumhealth.org/butterworth" + }, + { + "type": "wikipedia", + "value": "https://en.wikipedia.org/wiki/Butterworth_Hospital_(Michigan)" + } + ], + "names": [ + { + "value": "Corewell Health Butterworth Hospital", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Butterworth Hospital", + "types": [ + "alias" + ], + "lang": null + } + ], + "relationships": [ + { + "label": "Michigan State University", + "type": "related", + "id": "https://ror.org/05hs6h993" + }, + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05x9ffc66.json b/v1.43/05x9ffc66.json new file mode 100644 index 000000000..cfdb652c4 --- /dev/null +++ b/v1.43/05x9ffc66.json @@ -0,0 +1,89 @@ +{ + "admin": { + "created": { + "date": "2018-11-14", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2023-10-26", + "schema_version": "2.0" + } + }, + "domains": [], + "established": 1908, + "external_ids": [ + { + "all": [ + "grid.417120.1" + ], + "preferred": "grid.417120.1", + "type": "grid" + }, + { + "all": [ + "0000 0004 0435 2409" + ], + "preferred": null, + "type": "isni" + }, + { + "all": [ + "Q50376756" + ], + "preferred": null, + "type": "wikidata" + } + ], + "id": "https://ror.org/05x9ffc66", + "links": [ + { + "type": "website", + "value": "https://www.beaumont.org/locations/beaumont-hospital-troy" + } + ], + "locations": [ + { + "geonames_details": { + "country_code": "US", + "country_name": "United States", + "lat": 42.60559, + "lng": -83.14993, + "name": "Troy" + }, + "geonames_id": 5012639 + } + ], + "names": [ + { + "lang": null, + "types": [ + "ror_display", + "label" + ], + "value": "Beaumont Hospital, Troy" + }, + { + "lang": null, + "types": [ + "alias" + ], + "value": "William Beaumont Hospital, Troy" + } + ], + "relationships": [ + { + "label": "Oakland University", + "type": "related", + "id": "https://ror.org/01ythxj32" + }, + { + "label": "Corewell Health", + "type": "parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "status": "active", + "types": [ + "healthcare" + ] +} \ No newline at end of file diff --git a/v1.43/05xwcq167.json b/v1.43/05xwcq167.json new file mode 100644 index 000000000..c7ca26c52 --- /dev/null +++ b/v1.43/05xwcq167.json @@ -0,0 +1,96 @@ +{ + "locations": [ + { + "geonames_id": 3996069, + "geonames_details": { + "country_code": "MX", + "country_name": "Mexico", + "lat": 32.62781, + "lng": -115.45446, + "name": "Mexicali" + } + } + ], + "established": 1957, + "external_ids": [ + { + "type": "isni", + "all": [ + "0000 0001 2192 0509" + ], + "preferred": null + }, + { + "type": "fundref", + "all": [ + "501100007228" + ], + "preferred": null + }, + { + "type": "wikidata", + "all": [ + "Q4826824" + ], + "preferred": null + }, + { + "type": "grid", + "all": [ + "grid.412852.8" + ], + "preferred": "grid.412852.8" + } + ], + "id": "https://ror.org/05xwcq167", + "domains": [], + "links": [ + { + "type": "website", + "value": "http://www.uabc.mx/" + }, + { + "type": "wikipedia", + "value": "http://en.wikipedia.org/wiki/Autonomous_University_of_Baja_California" + } + ], + "names": [ + { + "value": "Universidad Autónoma de Baja California", + "types": [ + "ror_display", + "label" + ], + "lang": null + }, + { + "value": "Autonomous University of Baja California", + "types": [ + "label" + ], + "lang": "en" + }, + { + "value": "UABC", + "types": [ + "acronym" + ], + "lang": null + } + ], + "relationships": [], + "status": "active", + "types": [ + "education" + ], + "admin": { + "created": { + "date": "2024-03-15", + "schema_version": "1.0" + }, + "last_modified": { + "date": "2024-03-15", + "schema_version": "2.0" + } + } +} \ No newline at end of file diff --git a/v1.43/relationships.csv b/v1.43/relationships.csv new file mode 100644 index 000000000..ec5712f8e --- /dev/null +++ b/v1.43/relationships.csv @@ -0,0 +1,952 @@ +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 +9986,https://github.com/ror-community/ror-updates/issues/9986,"Modify the information in an existing ROR record: +UNIVERSIDAD DE LA LAGUNA https://ror.org/01r9z8p25 +",UNIVERSIDAD DE LA LAGUNA,https://ror.org/01r9z8p25,https://ror.org/03cmntr54,Instituto de Astrofísica de Canarias,Child,Production +9986,https://github.com/ror-community/ror-updates/issues/9986,"Modify the information in an existing ROR record: +UNIVERSIDAD DE LA LAGUNA https://ror.org/01r9z8p25 +",Instituto de Astrofísica de Canarias,https://ror.org/03cmntr54,https://ror.org/01r9z8p25,UNIVERSIDAD DE LA LAGUNA,Parent,Release +9986,https://github.com/ror-community/ror-updates/issues/9986,"Modify the information in an existing ROR record: +UNIVERSIDAD DE LA LAGUNA https://ror.org/01r9z8p25 +",UNIVERSIDAD DE LA LAGUNA,https://ror.org/01r9z8p25,https://ror.org/005a3p084,Hospital Universitario Nuestra Señora de Candelaria,Related,Production +9986,https://github.com/ror-community/ror-updates/issues/9986,"Modify the information in an existing ROR record: +UNIVERSIDAD DE LA LAGUNA https://ror.org/01r9z8p25 +",Hospital Universitario Nuestra Señora de Candelaria,https://ror.org/005a3p084,https://ror.org/01r9z8p25,UNIVERSIDAD DE LA LAGUNA,Related,Release +9712,https://github.com/ror-community/ror-updates/issues/9712,Modify the information in an existing ROR record: AT4 wireless (Spain) - https://ror.org/05f8nen40,AT4 wireless (Spain),https://ror.org/05f8nen40,https://ror.org/02b3ny291,Dekra (Germany),Successor,Production +9713,https://github.com/ror-community/ror-updates/issues/9713,Modify the information in an existing ROR record: IberEspacio (Spain) - https://ror.org/00mccb878,IberEspacio (Spain),https://ror.org/00mccb878,https://ror.org/04mnaqe33,Arquimea (Spain),Successor,Production +9715,https://github.com/ror-community/ror-updates/issues/9715,Modify the information in an existing ROR record: Lipotec (Spain) - https://ror.org/04k1qv985,Lipotec (Spain),https://ror.org/04k1qv985,https://ror.org/03kp1tb17,Lubrizol Life Science Health (United States),Successor,Production +9760,https://github.com/ror-community/ror-updates/issues/9760,Modify the information in an existing ROR record: AIDIMA Technology Institute - https://ror.org/030gd0911,AIDIMA Technology Institute,https://ror.org/030gd0911,https://ror.org/057f9wg13,"Instituto Tecnológico Metalmecánico, Mueble, Madera, Embalaje y Afines",Successor,Production +9755,https://github.com/ror-community/ror-updates/issues/9755,Modify the information in an existing ROR record: Catalonian Research and Innovation Centre - https://ror.org/03hpdk269,Catalonian Research and Innovation Centre,https://ror.org/03hpdk269,https://ror.org/01m260238,Ateknea Solutions (Spain),Successor,Production +9726,https://github.com/ror-community/ror-updates/issues/9726,Modify the information in an existing ROR record: Centre de Recerca en Sanitat Animal - https://ror.org/011jtr847,Centre de Recerca en Sanitat Animal,https://ror.org/011jtr847,https://ror.org/012zh9h13,Institute for Research and Technology in Food and Agriculture,Successor,Production +9719,https://github.com/ror-community/ror-updates/issues/9719,Modify the information in an existing ROR record: Ramem (Spain) - https://ror.org/057yy7z71,Ramem (Spain),https://ror.org/057yy7z71,https://ror.org/04mnaqe33,Arquimea (Spain),Successor,Production +9765,https://github.com/ror-community/ror-updates/issues/9765,Modify the information in an existing ROR record: Centre for Nanoscience and Nanotechnology - https://ror.org/00zay3w86,Centre for Nanoscience and Nanotechnology,https://ror.org/00zay3w86,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9765,https://github.com/ror-community/ror-updates/issues/9765,Modify the information in an existing ROR record: Centre for Nanoscience and Nanotechnology - https://ror.org/00zay3w86,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/00zay3w86,Centre for Nanoscience and Nanotechnology,Child,Release +9766,https://github.com/ror-community/ror-updates/issues/9766,Modify the information in an existing ROR record: Centre de recherche en Epidémiologie et Santé des Populations - https://ror.org/01ed4t417,Centre de recherche en Epidémiologie et Santé des Populations,https://ror.org/01ed4t417,https://ror.org/02vjkv261,Inserm,Parent,Release +9766,https://github.com/ror-community/ror-updates/issues/9766,Modify the information in an existing ROR record: Centre de recherche en Epidémiologie et Santé des Populations - https://ror.org/01ed4t417,Inserm,https://ror.org/02vjkv261,https://ror.org/01ed4t417,Centre de recherche en Epidémiologie et Santé des Populations,Child,Release +9766,https://github.com/ror-community/ror-updates/issues/9766,Modify the information in an existing ROR record: Centre de recherche en Epidémiologie et Santé des Populations - https://ror.org/01ed4t417,Centre de recherche en Epidémiologie et Santé des Populations,https://ror.org/01ed4t417,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9766,https://github.com/ror-community/ror-updates/issues/9766,Modify the information in an existing ROR record: Centre de recherche en Epidémiologie et Santé des Populations - https://ror.org/01ed4t417,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/01ed4t417,Centre de recherche en Epidémiologie et Santé des Populations,Child,Release +9767,https://github.com/ror-community/ror-updates/issues/9767,Modify the information in an existing ROR record: Department of Mathematics and their Applications - https://ror.org/03k9z2963,Department of Mathematics and their Applications,https://ror.org/03k9z2963,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9767,https://github.com/ror-community/ror-updates/issues/9767,Modify the information in an existing ROR record: Department of Mathematics and their Applications - https://ror.org/03k9z2963,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/03k9z2963,Department of Mathematics and their Applications,Child,Release +9768,https://github.com/ror-community/ror-updates/issues/9768,Modify the information in an existing ROR record: Département de Mathématiques - https://ror.org/03ab0zs98,Département de Mathématiques,https://ror.org/03ab0zs98,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9768,https://github.com/ror-community/ror-updates/issues/9768,Modify the information in an existing ROR record: Département de Mathématiques - https://ror.org/03ab0zs98,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/03ab0zs98,Département de Mathématiques,Child,Release +9768,https://github.com/ror-community/ror-updates/issues/9768,Modify the information in an existing ROR record: Département de Mathématiques - https://ror.org/03ab0zs98,Département de Mathématiques,https://ror.org/03ab0zs98,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9768,https://github.com/ror-community/ror-updates/issues/9768,Modify the information in an existing ROR record: Département de Mathématiques - https://ror.org/03ab0zs98,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/03ab0zs98,Département de Mathématiques,Child,Release +9769,https://github.com/ror-community/ror-updates/issues/9769,"Modify the information in an existing ROR record: Fluides, Automatique et Systèmes Thermiques - https://ror.org/02byv2846","Fluides, Automatique et Systèmes Thermiques",https://ror.org/02byv2846,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9769,https://github.com/ror-community/ror-updates/issues/9769,"Modify the information in an existing ROR record: Fluides, Automatique et Systèmes Thermiques - https://ror.org/02byv2846",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02byv2846,"Fluides, Automatique et Systèmes Thermiques",Child,Release +9769,https://github.com/ror-community/ror-updates/issues/9769,"Modify the information in an existing ROR record: Fluides, Automatique et Systèmes Thermiques - https://ror.org/02byv2846","Fluides, Automatique et Systèmes Thermiques",https://ror.org/02byv2846,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9769,https://github.com/ror-community/ror-updates/issues/9769,"Modify the information in an existing ROR record: Fluides, Automatique et Systèmes Thermiques - https://ror.org/02byv2846",University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02byv2846,"Fluides, Automatique et Systèmes Thermiques",Child,Release +9771,https://github.com/ror-community/ror-updates/issues/9771,Modify the information in an existing ROR record: Genotoxic Stress and Cancer - https://ror.org/01b5rtm37,Genotoxic Stress and Cancer,https://ror.org/01b5rtm37,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9771,https://github.com/ror-community/ror-updates/issues/9771,Modify the information in an existing ROR record: Genotoxic Stress and Cancer - https://ror.org/01b5rtm37,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/01b5rtm37,Genotoxic Stress and Cancer,Child,Release +9771,https://github.com/ror-community/ror-updates/issues/9771,Modify the information in an existing ROR record: Genotoxic Stress and Cancer - https://ror.org/01b5rtm37,Genotoxic Stress and Cancer,https://ror.org/01b5rtm37,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9771,https://github.com/ror-community/ror-updates/issues/9771,Modify the information in an existing ROR record: Genotoxic Stress and Cancer - https://ror.org/01b5rtm37,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/01b5rtm37,Genotoxic Stress and Cancer,Child,Release +9773,https://github.com/ror-community/ror-updates/issues/9773,Modify the information in an existing ROR record: Génétique Quantitative et Évolution Le Moulon - https://ror.org/012fqzm33,Génétique Quantitative et Évolution Le Moulon,https://ror.org/012fqzm33,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9773,https://github.com/ror-community/ror-updates/issues/9773,Modify the information in an existing ROR record: Génétique Quantitative et Évolution Le Moulon - https://ror.org/012fqzm33,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/012fqzm33,Génétique Quantitative et Évolution Le Moulon,Child,Release +9773,https://github.com/ror-community/ror-updates/issues/9773,Modify the information in an existing ROR record: Génétique Quantitative et Évolution Le Moulon - https://ror.org/012fqzm33,Génétique Quantitative et Évolution Le Moulon,https://ror.org/012fqzm33,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9773,https://github.com/ror-community/ror-updates/issues/9773,Modify the information in an existing ROR record: Génétique Quantitative et Évolution Le Moulon - https://ror.org/012fqzm33,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/012fqzm33,Génétique Quantitative et Évolution Le Moulon,Child,Release +9774,https://github.com/ror-community/ror-updates/issues/9774,"Modify the information in an existing ROR record: Inflammation, Chemokines and Immunopathology - https://ror.org/05dy6wv04","Inflammation, Chemokines and Immunopathology",https://ror.org/05dy6wv04,https://ror.org/02vjkv261,Inserm,Parent,Release +9774,https://github.com/ror-community/ror-updates/issues/9774,"Modify the information in an existing ROR record: Inflammation, Chemokines and Immunopathology - https://ror.org/05dy6wv04",Inserm,https://ror.org/02vjkv261,https://ror.org/05dy6wv04,"Inflammation, Chemokines and Immunopathology",Child,Release +9774,https://github.com/ror-community/ror-updates/issues/9774,"Modify the information in an existing ROR record: Inflammation, Chemokines and Immunopathology - https://ror.org/05dy6wv04","Inflammation, Chemokines and Immunopathology",https://ror.org/05dy6wv04,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9774,https://github.com/ror-community/ror-updates/issues/9774,"Modify the information in an existing ROR record: Inflammation, Chemokines and Immunopathology - https://ror.org/05dy6wv04",University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/05dy6wv04,"Inflammation, Chemokines and Immunopathology",Child,Release +9776,https://github.com/ror-community/ror-updates/issues/9776,Modify the information in an existing ROR record: Institut Galien Paris Sud - https://ror.org/02mnw9q71,Institut Galien Paris Sud,https://ror.org/02mnw9q71,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9776,https://github.com/ror-community/ror-updates/issues/9776,Modify the information in an existing ROR record: Institut Galien Paris Sud - https://ror.org/02mnw9q71,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02mnw9q71,Institut Galien Paris Sud,Child,Release +9776,https://github.com/ror-community/ror-updates/issues/9776,Modify the information in an existing ROR record: Institut Galien Paris Sud - https://ror.org/02mnw9q71,Institut Galien Paris Sud,https://ror.org/02mnw9q71,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9776,https://github.com/ror-community/ror-updates/issues/9776,Modify the information in an existing ROR record: Institut Galien Paris Sud - https://ror.org/02mnw9q71,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02mnw9q71,Institut Galien Paris Sud,Child,Release +9777,https://github.com/ror-community/ror-updates/issues/9777,Modify the information in an existing ROR record: Institut d'Astrophysique Spatiale - https://ror.org/014p8mr66,Institut d'Astrophysique Spatiale,https://ror.org/014p8mr66,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9777,https://github.com/ror-community/ror-updates/issues/9777,Modify the information in an existing ROR record: Institut d'Astrophysique Spatiale - https://ror.org/014p8mr66,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/014p8mr66,Institut d'Astrophysique Spatiale,Child,Release +9777,https://github.com/ror-community/ror-updates/issues/9777,Modify the information in an existing ROR record: Institut d'Astrophysique Spatiale - https://ror.org/014p8mr66,Institut d'Astrophysique Spatiale,https://ror.org/014p8mr66,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9777,https://github.com/ror-community/ror-updates/issues/9777,Modify the information in an existing ROR record: Institut d'Astrophysique Spatiale - https://ror.org/014p8mr66,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/014p8mr66,Institut d'Astrophysique Spatiale,Child,Release +9779,https://github.com/ror-community/ror-updates/issues/9779,Modify the information in an existing ROR record: Institut de Chimie Moléculaire et des Matériaux d'Orsay - https://ror.org/05wzh1m37,Institut de Chimie Moléculaire et des Matériaux d'Orsay,https://ror.org/05wzh1m37,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9779,https://github.com/ror-community/ror-updates/issues/9779,Modify the information in an existing ROR record: Institut de Chimie Moléculaire et des Matériaux d'Orsay - https://ror.org/05wzh1m37,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/05wzh1m37,Institut de Chimie Moléculaire et des Matériaux d'Orsay,Child,Release +9779,https://github.com/ror-community/ror-updates/issues/9779,Modify the information in an existing ROR record: Institut de Chimie Moléculaire et des Matériaux d'Orsay - https://ror.org/05wzh1m37,Institut de Chimie Moléculaire et des Matériaux d'Orsay,https://ror.org/05wzh1m37,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9779,https://github.com/ror-community/ror-updates/issues/9779,Modify the information in an existing ROR record: Institut de Chimie Moléculaire et des Matériaux d'Orsay - https://ror.org/05wzh1m37,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/05wzh1m37,Institut de Chimie Moléculaire et des Matériaux d'Orsay,Child,Release +9778,https://github.com/ror-community/ror-updates/issues/9778,Modify the information in an existing ROR record: University of Paris-Sud - https://ror.org/028rypz17,University of Paris-Sud,https://ror.org/028rypz17,https://ror.org/03xjwb503,University of Paris-Saclay,Successor,Release +9780,https://github.com/ror-community/ror-updates/issues/9780,Modify the information in an existing ROR record: Institut de Chimie des Substances Naturelles - https://ror.org/02st4q439,Institut de Chimie des Substances Naturelles,https://ror.org/02st4q439,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9780,https://github.com/ror-community/ror-updates/issues/9780,Modify the information in an existing ROR record: Institut de Chimie des Substances Naturelles - https://ror.org/02st4q439,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02st4q439,Institut de Chimie des Substances Naturelles,Child,Release +9780,https://github.com/ror-community/ror-updates/issues/9780,Modify the information in an existing ROR record: Institut de Chimie des Substances Naturelles - https://ror.org/02st4q439,Institut de Chimie des Substances Naturelles,https://ror.org/02st4q439,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9780,https://github.com/ror-community/ror-updates/issues/9780,Modify the information in an existing ROR record: Institut de Chimie des Substances Naturelles - https://ror.org/02st4q439,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02st4q439,Institut de Chimie des Substances Naturelles,Child,Release +9781,https://github.com/ror-community/ror-updates/issues/9781,Modify the information in an existing ROR record: Institut de Mécanique Céleste et de Calcul des Éphémérides - https://ror.org/002zc3t08,Institut de Mécanique Céleste et de Calcul des Éphémérides,https://ror.org/002zc3t08,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9781,https://github.com/ror-community/ror-updates/issues/9781,Modify the information in an existing ROR record: Institut de Mécanique Céleste et de Calcul des Éphémérides - https://ror.org/002zc3t08,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/002zc3t08,Institut de Mécanique Céleste et de Calcul des Éphémérides,Child,Release +9782,https://github.com/ror-community/ror-updates/issues/9782,Modify the information in an existing ROR record: Institut des Sciences Moléculaires d'Orsay - https://ror.org/0211r2z47,Institut des Sciences Moléculaires d'Orsay,https://ror.org/0211r2z47,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9782,https://github.com/ror-community/ror-updates/issues/9782,Modify the information in an existing ROR record: Institut des Sciences Moléculaires d'Orsay - https://ror.org/0211r2z47,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/0211r2z47,Institut des Sciences Moléculaires d'Orsay,Child,Release +9782,https://github.com/ror-community/ror-updates/issues/9782,Modify the information in an existing ROR record: Institut des Sciences Moléculaires d'Orsay - https://ror.org/0211r2z47,Institut des Sciences Moléculaires d'Orsay,https://ror.org/0211r2z47,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9782,https://github.com/ror-community/ror-updates/issues/9782,Modify the information in an existing ROR record: Institut des Sciences Moléculaires d'Orsay - https://ror.org/0211r2z47,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/0211r2z47,Institut des Sciences Moléculaires d'Orsay,Child,Release +9783,https://github.com/ror-community/ror-updates/issues/9783,Modify the information in an existing ROR record: Institut des Sciences des Plantes de Paris Saclay - https://ror.org/00ajjta07,Institut des Sciences des Plantes de Paris Saclay,https://ror.org/00ajjta07,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9783,https://github.com/ror-community/ror-updates/issues/9783,Modify the information in an existing ROR record: Institut des Sciences des Plantes de Paris Saclay - https://ror.org/00ajjta07,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/00ajjta07,Institut des Sciences des Plantes de Paris Saclay,Child,Release +9783,https://github.com/ror-community/ror-updates/issues/9783,Modify the information in an existing ROR record: Institut des Sciences des Plantes de Paris Saclay - https://ror.org/00ajjta07,Institut des Sciences des Plantes de Paris Saclay,https://ror.org/00ajjta07,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9783,https://github.com/ror-community/ror-updates/issues/9783,Modify the information in an existing ROR record: Institut des Sciences des Plantes de Paris Saclay - https://ror.org/00ajjta07,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/00ajjta07,Institut des Sciences des Plantes de Paris Saclay,Child,Release +9784,https://github.com/ror-community/ror-updates/issues/9784,Modify the information in an existing ROR record: Institute of Integrative Biology of the Cell - https://ror.org/01fftxe08,Institute of Integrative Biology of the Cell,https://ror.org/01fftxe08,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9784,https://github.com/ror-community/ror-updates/issues/9784,Modify the information in an existing ROR record: Institute of Integrative Biology of the Cell - https://ror.org/01fftxe08,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/01fftxe08,Institute of Integrative Biology of the Cell,Child,Release +9784,https://github.com/ror-community/ror-updates/issues/9784,Modify the information in an existing ROR record: Institute of Integrative Biology of the Cell - https://ror.org/01fftxe08,Institute of Integrative Biology of the Cell,https://ror.org/01fftxe08,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9784,https://github.com/ror-community/ror-updates/issues/9784,Modify the information in an existing ROR record: Institute of Integrative Biology of the Cell - https://ror.org/01fftxe08,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/01fftxe08,Institute of Integrative Biology of the Cell,Child,Release +9785,https://github.com/ror-community/ror-updates/issues/9785,Modify the information in an existing ROR record: Interactions Cellulaires et Physiopathologie Hépathique - https://ror.org/05dpfhh73,Interactions Cellulaires et Physiopathologie Hépathique,https://ror.org/05dpfhh73,https://ror.org/02vjkv261,Inserm,Parent,Release +9785,https://github.com/ror-community/ror-updates/issues/9785,Modify the information in an existing ROR record: Interactions Cellulaires et Physiopathologie Hépathique - https://ror.org/05dpfhh73,Inserm,https://ror.org/02vjkv261,https://ror.org/05dpfhh73,Interactions Cellulaires et Physiopathologie Hépathique,Child,Release +9785,https://github.com/ror-community/ror-updates/issues/9785,Modify the information in an existing ROR record: Interactions Cellulaires et Physiopathologie Hépathique - https://ror.org/05dpfhh73,Interactions Cellulaires et Physiopathologie Hépathique,https://ror.org/05dpfhh73,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9785,https://github.com/ror-community/ror-updates/issues/9785,Modify the information in an existing ROR record: Interactions Cellulaires et Physiopathologie Hépathique - https://ror.org/05dpfhh73,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/05dpfhh73,Interactions Cellulaires et Physiopathologie Hépathique,Child,Release +9786,https://github.com/ror-community/ror-updates/issues/9786,Modify the information in an existing ROR record: Laboratoire Aimé Cotton - https://ror.org/021xexe56,Laboratoire Aimé Cotton,https://ror.org/021xexe56,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9786,https://github.com/ror-community/ror-updates/issues/9786,Modify the information in an existing ROR record: Laboratoire Aimé Cotton - https://ror.org/021xexe56,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/021xexe56,Laboratoire Aimé Cotton,Child,Release +9786,https://github.com/ror-community/ror-updates/issues/9786,Modify the information in an existing ROR record: Laboratoire Aimé Cotton - https://ror.org/021xexe56,Laboratoire Aimé Cotton,https://ror.org/021xexe56,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9786,https://github.com/ror-community/ror-updates/issues/9786,Modify the information in an existing ROR record: Laboratoire Aimé Cotton - https://ror.org/021xexe56,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/021xexe56,Laboratoire Aimé Cotton,Child,Release +9787,https://github.com/ror-community/ror-updates/issues/9787,"Modify the information in an existing ROR record: Laboratoire Complexité, Innovation et Activités Motrices et Sportives - https://ror.org/00k3ph542","Laboratoire Complexité, Innovation et Activités Motrices et Sportives",https://ror.org/00k3ph542,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9787,https://github.com/ror-community/ror-updates/issues/9787,"Modify the information in an existing ROR record: Laboratoire Complexité, Innovation et Activités Motrices et Sportives - https://ror.org/00k3ph542",University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/00k3ph542,"Laboratoire Complexité, Innovation et Activités Motrices et Sportives",Child,Release +9788,https://github.com/ror-community/ror-updates/issues/9788,Modify the information in an existing ROR record: Laboratoire de Chimie Physique - https://ror.org/016r2hq43,Laboratoire de Chimie Physique,https://ror.org/016r2hq43,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9788,https://github.com/ror-community/ror-updates/issues/9788,Modify the information in an existing ROR record: Laboratoire de Chimie Physique - https://ror.org/016r2hq43,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/016r2hq43,Laboratoire de Chimie Physique,Child,Release +9788,https://github.com/ror-community/ror-updates/issues/9788,Modify the information in an existing ROR record: Laboratoire de Chimie Physique - https://ror.org/016r2hq43,Laboratoire de Chimie Physique,https://ror.org/016r2hq43,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9788,https://github.com/ror-community/ror-updates/issues/9788,Modify the information in an existing ROR record: Laboratoire de Chimie Physique - https://ror.org/016r2hq43,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/016r2hq43,Laboratoire de Chimie Physique,Child,Release +9789,https://github.com/ror-community/ror-updates/issues/9789,Modify the information in an existing ROR record: Laboratoire de Génie Électrique et Électronique de Paris - https://ror.org/02xnnng09,Laboratoire de Génie Électrique et Électronique de Paris,https://ror.org/02xnnng09,https://ror.org/019tcpt25,CentraleSupélec,Parent,Production +9789,https://github.com/ror-community/ror-updates/issues/9789,Modify the information in an existing ROR record: Laboratoire de Génie Électrique et Électronique de Paris - https://ror.org/02xnnng09,CentraleSupélec,https://ror.org/019tcpt25,https://ror.org/02xnnng09,Laboratoire de Génie Électrique et Électronique de Paris,Child,Release +9789,https://github.com/ror-community/ror-updates/issues/9789,Modify the information in an existing ROR record: Laboratoire de Génie Électrique et Électronique de Paris - https://ror.org/02xnnng09,Laboratoire de Génie Électrique et Électronique de Paris,https://ror.org/02xnnng09,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9789,https://github.com/ror-community/ror-updates/issues/9789,Modify the information in an existing ROR record: Laboratoire de Génie Électrique et Électronique de Paris - https://ror.org/02xnnng09,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02xnnng09,Laboratoire de Génie Électrique et Électronique de Paris,Child,Release +9789,https://github.com/ror-community/ror-updates/issues/9789,Modify the information in an existing ROR record: Laboratoire de Génie Électrique et Électronique de Paris - https://ror.org/02xnnng09,Laboratoire de Génie Électrique et Électronique de Paris,https://ror.org/02xnnng09,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9789,https://github.com/ror-community/ror-updates/issues/9789,Modify the information in an existing ROR record: Laboratoire de Génie Électrique et Électronique de Paris - https://ror.org/02xnnng09,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02xnnng09,Laboratoire de Génie Électrique et Électronique de Paris,Child,Release +9790,https://github.com/ror-community/ror-updates/issues/9790,Modify the information in an existing ROR record: Laboratoire de Physique des Gaz et des Plasmas - https://ror.org/04bgjpg77,Laboratoire de Physique des Gaz et des Plasmas,https://ror.org/04bgjpg77,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9790,https://github.com/ror-community/ror-updates/issues/9790,Modify the information in an existing ROR record: Laboratoire de Physique des Gaz et des Plasmas - https://ror.org/04bgjpg77,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/04bgjpg77,Laboratoire de Physique des Gaz et des Plasmas,Child,Release +9791,https://github.com/ror-community/ror-updates/issues/9791,Modify the information in an existing ROR record: Laboratoire des Signaux & Systèmes - https://ror.org/00skw9v43,Laboratoire des Signaux & Systèmes,https://ror.org/00skw9v43,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9791,https://github.com/ror-community/ror-updates/issues/9791,Modify the information in an existing ROR record: Laboratoire des Signaux & Systèmes - https://ror.org/00skw9v43,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/00skw9v43,Laboratoire des Signaux & Systèmes,Child,Release +9791,https://github.com/ror-community/ror-updates/issues/9791,Modify the information in an existing ROR record: Laboratoire des Signaux & Systèmes - https://ror.org/00skw9v43,Laboratoire des Signaux & Systèmes,https://ror.org/00skw9v43,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9791,https://github.com/ror-community/ror-updates/issues/9791,Modify the information in an existing ROR record: Laboratoire des Signaux & Systèmes - https://ror.org/00skw9v43,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/00skw9v43,Laboratoire des Signaux & Systèmes,Child,Release +9792,https://github.com/ror-community/ror-updates/issues/9792,Modify the information in an existing ROR record: Laboratoire pour l'utilisation des lasers intenses - https://ror.org/002ty1h48,Laboratoire pour l'utilisation des lasers intenses,https://ror.org/002ty1h48,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9792,https://github.com/ror-community/ror-updates/issues/9792,Modify the information in an existing ROR record: Laboratoire pour l'utilisation des lasers intenses - https://ror.org/002ty1h48,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/002ty1h48,Laboratoire pour l'utilisation des lasers intenses,Child,Release +9793,https://github.com/ror-community/ror-updates/issues/9793,Modify the information in an existing ROR record: Laboratory of Solid State Physics - https://ror.org/02dyaew97,Laboratory of Solid State Physics,https://ror.org/02dyaew97,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9793,https://github.com/ror-community/ror-updates/issues/9793,Modify the information in an existing ROR record: Laboratory of Solid State Physics - https://ror.org/02dyaew97,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02dyaew97,Laboratory of Solid State Physics,Child,Release +9793,https://github.com/ror-community/ror-updates/issues/9793,Modify the information in an existing ROR record: Laboratory of Solid State Physics - https://ror.org/02dyaew97,Laboratory of Solid State Physics,https://ror.org/02dyaew97,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9793,https://github.com/ror-community/ror-updates/issues/9793,Modify the information in an existing ROR record: Laboratory of Solid State Physics - https://ror.org/02dyaew97,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02dyaew97,Laboratory of Solid State Physics,Child,Release +9795,https://github.com/ror-community/ror-updates/issues/9795,Modify the information in an existing ROR record: Laboratory of Theoretical Physics and Statistical Models - https://ror.org/00w67e447,Laboratory of Theoretical Physics and Statistical Models,https://ror.org/00w67e447,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9795,https://github.com/ror-community/ror-updates/issues/9795,Modify the information in an existing ROR record: Laboratory of Theoretical Physics and Statistical Models - https://ror.org/00w67e447,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/00w67e447,Laboratory of Theoretical Physics and Statistical Models,Child,Release +9795,https://github.com/ror-community/ror-updates/issues/9795,Modify the information in an existing ROR record: Laboratory of Theoretical Physics and Statistical Models - https://ror.org/00w67e447,Laboratory of Theoretical Physics and Statistical Models,https://ror.org/00w67e447,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9795,https://github.com/ror-community/ror-updates/issues/9795,Modify the information in an existing ROR record: Laboratory of Theoretical Physics and Statistical Models - https://ror.org/00w67e447,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/00w67e447,Laboratory of Theoretical Physics and Statistical Models,Child,Release +9796,https://github.com/ror-community/ror-updates/issues/9796,Modify the information in an existing ROR record: Institut des Neurosciences Paris-Saclay - https://ror.org/002v40q27,Institut des Neurosciences Paris-Saclay,https://ror.org/002v40q27,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9796,https://github.com/ror-community/ror-updates/issues/9796,Modify the information in an existing ROR record: Institut des Neurosciences Paris-Saclay - https://ror.org/002v40q27,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/002v40q27,Institut des Neurosciences Paris-Saclay,Child,Release +9796,https://github.com/ror-community/ror-updates/issues/9796,Modify the information in an existing ROR record: Institut des Neurosciences Paris-Saclay - https://ror.org/002v40q27,Institut des Neurosciences Paris-Saclay,https://ror.org/002v40q27,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9796,https://github.com/ror-community/ror-updates/issues/9796,Modify the information in an existing ROR record: Institut des Neurosciences Paris-Saclay - https://ror.org/002v40q27,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/002v40q27,Institut des Neurosciences Paris-Saclay,Child,Release +9797,https://github.com/ror-community/ror-updates/issues/9797,Modify the information in an existing ROR record: Pathophysiology and Novel Therapies - https://ror.org/01et6g203,Pathophysiology and Novel Therapies,https://ror.org/01et6g203,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9797,https://github.com/ror-community/ror-updates/issues/9797,Modify the information in an existing ROR record: Pathophysiology and Novel Therapies - https://ror.org/01et6g203,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/01et6g203,Pathophysiology and Novel Therapies,Child,Release +9798,https://github.com/ror-community/ror-updates/issues/9798,"Modify the information in an existing ROR record: Systèmes Membranaires, Photobiologie, Stress et Détoxication - https://ror.org/03sypqe31","Systèmes Membranaires, Photobiologie, Stress et Détoxication",https://ror.org/03sypqe31,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9798,https://github.com/ror-community/ror-updates/issues/9798,"Modify the information in an existing ROR record: Systèmes Membranaires, Photobiologie, Stress et Détoxication - https://ror.org/03sypqe31",University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/03sypqe31,"Systèmes Membranaires, Photobiologie, Stress et Détoxication",Child,Release +9798,https://github.com/ror-community/ror-updates/issues/9798,"Modify the information in an existing ROR record: Systèmes Membranaires, Photobiologie, Stress et Détoxication - https://ror.org/03sypqe31","Systèmes Membranaires, Photobiologie, Stress et Détoxication",https://ror.org/03sypqe31,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9798,https://github.com/ror-community/ror-updates/issues/9798,"Modify the information in an existing ROR record: Systèmes Membranaires, Photobiologie, Stress et Détoxication - https://ror.org/03sypqe31",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/03sypqe31,"Systèmes Membranaires, Photobiologie, Stress et Détoxication",Child,Release +9798,https://github.com/ror-community/ror-updates/issues/9798,"Modify the information in an existing ROR record: Systèmes Membranaires, Photobiologie, Stress et Détoxication - https://ror.org/03sypqe31","Systèmes Membranaires, Photobiologie, Stress et Détoxication",https://ror.org/03sypqe31,https://ror.org/00jjx8s55,Atomic Energy and Alternative Energies Commission,Parent,Production +9798,https://github.com/ror-community/ror-updates/issues/9798,"Modify the information in an existing ROR record: Systèmes Membranaires, Photobiologie, Stress et Détoxication - https://ror.org/03sypqe31",Atomic Energy and Alternative Energies Commission,https://ror.org/00jjx8s55,https://ror.org/03sypqe31,"Systèmes Membranaires, Photobiologie, Stress et Détoxication",Child,Release +9794,https://github.com/ror-community/ror-updates/issues/9794,Modify the information in an existing ROR record: Laboratory of Systems & Applications of Information & Energy Technologies - https://ror.org/03vam5b06,Laboratory of Systems & Applications of Information & Energy Technologies,https://ror.org/03vam5b06,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9794,https://github.com/ror-community/ror-updates/issues/9794,Modify the information in an existing ROR record: Laboratory of Systems & Applications of Information & Energy Technologies - https://ror.org/03vam5b06,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/03vam5b06,Laboratory of Systems & Applications of Information & Energy Technologies,Child,Release +9794,https://github.com/ror-community/ror-updates/issues/9794,Modify the information in an existing ROR record: Laboratory of Systems & Applications of Information & Energy Technologies - https://ror.org/03vam5b06,Laboratory of Systems & Applications of Information & Energy Technologies,https://ror.org/03vam5b06,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9794,https://github.com/ror-community/ror-updates/issues/9794,Modify the information in an existing ROR record: Laboratory of Systems & Applications of Information & Energy Technologies - https://ror.org/03vam5b06,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/03vam5b06,Laboratory of Systems & Applications of Information & Energy Technologies,Child,Release +9799,https://github.com/ror-community/ror-updates/issues/9799,Modify the information in an existing ROR record: Unité Mixte de Physique CNRS/Thales - https://ror.org/02erddr56,Unité Mixte de Physique CNRS/Thales,https://ror.org/02erddr56,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9799,https://github.com/ror-community/ror-updates/issues/9799,Modify the information in an existing ROR record: Unité Mixte de Physique CNRS/Thales - https://ror.org/02erddr56,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02erddr56,Unité Mixte de Physique CNRS/Thales,Child,Release +9799,https://github.com/ror-community/ror-updates/issues/9799,Modify the information in an existing ROR record: Unité Mixte de Physique CNRS/Thales - https://ror.org/02erddr56,Unité Mixte de Physique CNRS/Thales,https://ror.org/02erddr56,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9799,https://github.com/ror-community/ror-updates/issues/9799,Modify the information in an existing ROR record: Unité Mixte de Physique CNRS/Thales - https://ror.org/02erddr56,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02erddr56,Unité Mixte de Physique CNRS/Thales,Child,Release +9800,https://github.com/ror-community/ror-updates/issues/9800,"Modify the information in an existing ROR record: Écologie, Systématique et Évolution - https://ror.org/00kk89y84","Écologie, Systématique et Évolution",https://ror.org/00kk89y84,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9800,https://github.com/ror-community/ror-updates/issues/9800,"Modify the information in an existing ROR record: Écologie, Systématique et Évolution - https://ror.org/00kk89y84",University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/00kk89y84,"Écologie, Systématique et Évolution",Child,Release +9800,https://github.com/ror-community/ror-updates/issues/9800,"Modify the information in an existing ROR record: Écologie, Systématique et Évolution - https://ror.org/00kk89y84","Écologie, Systématique et Évolution",https://ror.org/00kk89y84,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9800,https://github.com/ror-community/ror-updates/issues/9800,"Modify the information in an existing ROR record: Écologie, Systématique et Évolution - https://ror.org/00kk89y84",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/00kk89y84,"Écologie, Systématique et Évolution",Child,Release +9801,https://github.com/ror-community/ror-updates/issues/9801,"Modify the information in an existing ROR record: Évolution, Génomes, Comportement, Écologie - https://ror.org/011abem59","Évolution, Génomes, Comportement, Écologie",https://ror.org/011abem59,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9801,https://github.com/ror-community/ror-updates/issues/9801,"Modify the information in an existing ROR record: Évolution, Génomes, Comportement, Écologie - https://ror.org/011abem59",University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/011abem59,"Évolution, Génomes, Comportement, Écologie",Child,Release +9801,https://github.com/ror-community/ror-updates/issues/9801,"Modify the information in an existing ROR record: Évolution, Génomes, Comportement, Écologie - https://ror.org/011abem59","Évolution, Génomes, Comportement, Écologie",https://ror.org/011abem59,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9801,https://github.com/ror-community/ror-updates/issues/9801,"Modify the information in an existing ROR record: Évolution, Génomes, Comportement, Écologie - https://ror.org/011abem59",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/011abem59,"Évolution, Génomes, Comportement, Écologie",Child,Release +9802,https://github.com/ror-community/ror-updates/issues/9802,Modify the information in an existing ROR record: Agronomie - https://ror.org/02cptmd52,Agronomie,https://ror.org/02cptmd52,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9802,https://github.com/ror-community/ror-updates/issues/9802,Modify the information in an existing ROR record: Agronomie - https://ror.org/02cptmd52,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/02cptmd52,Agronomie,Child,Release +9802,https://github.com/ror-community/ror-updates/issues/9802,Modify the information in an existing ROR record: Agronomie - https://ror.org/02cptmd52,Agronomie,https://ror.org/02cptmd52,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9802,https://github.com/ror-community/ror-updates/issues/9802,Modify the information in an existing ROR record: Agronomie - https://ror.org/02cptmd52,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02cptmd52,Agronomie,Child,Release +9806,https://github.com/ror-community/ror-updates/issues/9806,Modify the information in an existing ROR record: Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique - https://ror.org/035gq6r08,Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique,https://ror.org/035gq6r08,https://ror.org/03xjwb503,University of Paris-Saclay,Parent,Release +9806,https://github.com/ror-community/ror-updates/issues/9806,Modify the information in an existing ROR record: Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique - https://ror.org/035gq6r08,University of Paris-Saclay,https://ror.org/03xjwb503,https://ror.org/035gq6r08,Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique,Child,Release +9830,https://github.com/ror-community/ror-updates/issues/9830,Modify the information in an existing ROR record: Fishing in Ireland - https://ror.org/04ma29860,Fishing in Ireland,https://ror.org/04ma29860,https://ror.org/022rydv31,Inland Fisheries Ireland,Successor,Release +9825,https://github.com/ror-community/ror-updates/issues/9825,"Modify the information in an existing ROR record: +IImmune Response and Development in Insects https://ror.org/030przz70 +",Immune Response and Development in Insects,https://ror.org/030przz70,https://ror.org/05qpmg879,Institute for Molecular and Cellular Biology,Parent,Production +9825,https://github.com/ror-community/ror-updates/issues/9825,"Modify the information in an existing ROR record: +IImmune Response and Development in Insects https://ror.org/030przz70 +",Institute for Molecular and Cellular Biology,https://ror.org/05qpmg879,https://ror.org/030przz70,Immune Response and Development in Insects,Child,Release +9825,https://github.com/ror-community/ror-updates/issues/9825,"Modify the information in an existing ROR record: +IImmune Response and Development in Insects https://ror.org/030przz70 +",Immune Response and Development in Insects,https://ror.org/030przz70,https://ror.org/02vjkv261,Inserm,Parent,Release +9825,https://github.com/ror-community/ror-updates/issues/9825,"Modify the information in an existing ROR record: +IImmune Response and Development in Insects https://ror.org/030przz70 +",Inserm,https://ror.org/02vjkv261,https://ror.org/030przz70,Immune Response and Development in Insects,Child,Release +9825,https://github.com/ror-community/ror-updates/issues/9825,"Modify the information in an existing ROR record: +IImmune Response and Development in Insects https://ror.org/030przz70 +",Immune Response and Development in Insects,https://ror.org/030przz70,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9825,https://github.com/ror-community/ror-updates/issues/9825,"Modify the information in an existing ROR record: +IImmune Response and Development in Insects https://ror.org/030przz70 +",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/030przz70,Immune Response and Development in Insects,Child,Release +9891,https://github.com/ror-community/ror-updates/issues/9891,"Modify the information in an existing ROR record: + Centre d'Études Spatiales de la Biosphère https://ror.org/01225hq90 +",Centre d'Études Spatiales de la Biosphère,https://ror.org/01225hq90,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9891,https://github.com/ror-community/ror-updates/issues/9891,"Modify the information in an existing ROR record: + Centre d'Études Spatiales de la Biosphère https://ror.org/01225hq90 +",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/01225hq90,Centre d'Études Spatiales de la Biosphère,Child,Release +9891,https://github.com/ror-community/ror-updates/issues/9891,"Modify the information in an existing ROR record: + Centre d'Études Spatiales de la Biosphère https://ror.org/01225hq90 +",Centre d'Études Spatiales de la Biosphère,https://ror.org/01225hq90,https://ror.org/003vg9w96,"National Research Institute for Agriculture, Food and Environment",Parent,Release +9891,https://github.com/ror-community/ror-updates/issues/9891,"Modify the information in an existing ROR record: + Centre d'Études Spatiales de la Biosphère https://ror.org/01225hq90 +","National Research Institute for Agriculture, Food and Environment",https://ror.org/003vg9w96,https://ror.org/01225hq90,Centre d'Études Spatiales de la Biosphère,Child,Release +9901,https://github.com/ror-community/ror-updates/issues/9901,"Modify the information in an existing ROR record: +LEGOS https://ror.org/02chvqy57 +",LEGOS,https://ror.org/02chvqy57,https://ror.org/02feahw73,French National Centre for Scientific Research,Parent,Production +9901,https://github.com/ror-community/ror-updates/issues/9901,"Modify the information in an existing ROR record: +LEGOS https://ror.org/02chvqy57 +",French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/02chvqy57,LEGOS,Child,Release +9905,https://github.com/ror-community/ror-updates/issues/9905,"Modify the information in an existing ROR record: +Northwestern University in Qatar https://ror.org/006m74d95 +",Northwestern University in Qatar,https://ror.org/006m74d95,https://ror.org/000e0be47,Northwestern University,Related,Production +9905,https://github.com/ror-community/ror-updates/issues/9905,"Modify the information in an existing ROR record: +Northwestern University in Qatar https://ror.org/006m74d95 +",Northwestern University,https://ror.org/000e0be47,https://ror.org/006m74d95,Northwestern University in Qatar,Related,Release +9906,https://github.com/ror-community/ror-updates/issues/9906,"Modify the information in an existing ROR record: +Northwestern Medicine https://ror.org/04fzwnh64 +",Northwestern Medicine,https://ror.org/04fzwnh64,https://ror.org/000e0be47,Northwestern University,Related,Production +9906,https://github.com/ror-community/ror-updates/issues/9906,"Modify the information in an existing ROR record: +Northwestern Medicine https://ror.org/04fzwnh64 +",Northwestern University,https://ror.org/000e0be47,https://ror.org/04fzwnh64,Northwestern Medicine,Related,Release +9907,https://github.com/ror-community/ror-updates/issues/9907,"Modify the information in an existing ROR record: +Robert H. Lurie Comprehensive Cancer Center of Northwestern University https://ror.org/02p4far57 +",Robert H. Lurie Comprehensive Cancer Center of Northwestern University,https://ror.org/02p4far57,https://ror.org/000e0be47,Northwestern University,Related,Production +9907,https://github.com/ror-community/ror-updates/issues/9907,"Modify the information in an existing ROR record: +Robert H. Lurie Comprehensive Cancer Center of Northwestern University https://ror.org/02p4far57 +",Northwestern University,https://ror.org/000e0be47,https://ror.org/02p4far57,Robert H. Lurie Comprehensive Cancer Center of Northwestern University,Related,Release +9909,https://github.com/ror-community/ror-updates/issues/9909,"Modify the information in an existing ROR record: +Department of Water https://ror.org/017wrhq72 +",Department of Water,https://ror.org/017wrhq72,https://ror.org/0508kew31,Department of Water and Environmental Regulation,Successor,Production +9909,https://github.com/ror-community/ror-updates/issues/9909,"Modify the information in an existing ROR record: +Department of Water https://ror.org/017wrhq72 +",Department of Water and Environmental Regulation,https://ror.org/0508kew31,https://ror.org/017wrhq72,Department of Water,Predecessor,Release +9918,https://github.com/ror-community/ror-updates/issues/9918,Modify the information in an existing ROR record: Austrian BioImaging/CMI - https://ror.org/028696h48,Austrian BioImaging/CMI,https://ror.org/028696h48,https://ror.org/05n3x4p02,Medical University of Vienna,Related,Release +9918,https://github.com/ror-community/ror-updates/issues/9918,Modify the information in an existing ROR record: Austrian BioImaging/CMI - https://ror.org/028696h48,Medical University of Vienna,https://ror.org/05n3x4p02,https://ror.org/028696h48,Austrian BioImaging/CMI,Related,Release +9928,https://github.com/ror-community/ror-updates/issues/9928,Modify the information in an existing ROR record: Office of Electricity Delivery and Energy Reliability - https://ror.org/03rd4h240,Office of Electricity Delivery and Energy Reliability,https://ror.org/03rd4h240,https://ror.org/02y6dp041,Office of Electricity,Successor,Release +9931,https://github.com/ror-community/ror-updates/issues/9931,Modify the information in an existing ROR record: Materials Sciences and Engineering Division - https://ror.org/05dnzrj50,Materials Sciences and Engineering Division,https://ror.org/05dnzrj50,https://ror.org/05mg91w61,Office of Basic Energy Sciences,Successor,Release +9949,https://github.com/ror-community/ror-updates/issues/9949,Modify the information in an existing ROR record: New Mexico State University Alamogordo - https://ror.org/007sts724,New Mexico State University Alamogordo,https://ror.org/007sts724,https://ror.org/00hpz7z43,New Mexico State University,Parent,Production +9949,https://github.com/ror-community/ror-updates/issues/9949,Modify the information in an existing ROR record: New Mexico State University Alamogordo - https://ror.org/007sts724,New Mexico State University,https://ror.org/00hpz7z43,https://ror.org/007sts724,New Mexico State University Alamogordo,Child,Release +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Università della Svizzera italiana,https://ror.org/03c4atk17,https://ror.org/01dpyn972,Institute of Oncology Research,Child,Production +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Institute of Oncology Research,https://ror.org/01dpyn972,https://ror.org/03c4atk17,Università della Svizzera italiana,Parent,Release +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Università della Svizzera italiana,https://ror.org/03c4atk17,https://ror.org/05gfswd81,Institute for Research in Biomedicine,Child,Production +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Institute for Research in Biomedicine,https://ror.org/05gfswd81,https://ror.org/03c4atk17,Università della Svizzera italiana,Parent,Release +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Università della Svizzera italiana,https://ror.org/03c4atk17,https://ror.org/013355g38,Dalle Molle Institute for Artificial Intelligence Research,Child,Production +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Dalle Molle Institute for Artificial Intelligence Research,https://ror.org/013355g38,https://ror.org/03c4atk17,Università della Svizzera italiana,Parent,Release +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Università della Svizzera italiana,https://ror.org/03c4atk17,https://ror.org/02k3baz05,Facoltà di Teologia di Lugano,Child,Production +9962,https://github.com/ror-community/ror-updates/issues/9962,"Modify the information in an existing ROR record: +Università della Svizzera italiana https://ror.org/03c4atk17 +",Facoltà di Teologia di Lugano,https://ror.org/02k3baz05,https://ror.org/03c4atk17,Università della Svizzera italiana,Parent,Release +9992,https://github.com/ror-community/ror-updates/issues/9992,"Modify the information in an existing ROR record: +Elite School of Optometry https://ror.org/00vvz3k68 +",Elite School of Optometry,https://ror.org/00vvz3k68,https://ror.org/032jk8892,SASTRA University,Related,Production +9992,https://github.com/ror-community/ror-updates/issues/9992,"Modify the information in an existing ROR record: +Elite School of Optometry https://ror.org/00vvz3k68 +",SASTRA University,https://ror.org/032jk8892,https://ror.org/00vvz3k68,Elite School of Optometry,Related,Release +10017,https://github.com/ror-community/ror-updates/issues/10017,Modify the information in an existing ROR record: Barcelonabeta - https://ror.org/03k4wdb90,Barcelonabeta,https://ror.org/03k4wdb90,https://ror.org/04n0g0b29,Pompeu Fabra University,Parent,Release +10017,https://github.com/ror-community/ror-updates/issues/10017,Modify the information in an existing ROR record: Barcelonabeta - https://ror.org/03k4wdb90,Pompeu Fabra University,https://ror.org/04n0g0b29,https://ror.org/03k4wdb90,Barcelonabeta,Child,Release +10017,https://github.com/ror-community/ror-updates/issues/10017,Modify the information in an existing ROR record: Barcelonabeta - https://ror.org/03k4wdb90,Barcelonabeta,https://ror.org/03k4wdb90,https://ror.org/01nry9c15,Pasqual Maragall Foundation,Parent,Release +10017,https://github.com/ror-community/ror-updates/issues/10017,Modify the information in an existing ROR record: Barcelonabeta - https://ror.org/03k4wdb90,Pasqual Maragall Foundation,https://ror.org/01nry9c15,https://ror.org/03k4wdb90,Barcelonabeta,Child,Release +10018,https://github.com/ror-community/ror-updates/issues/10018,Modify the information in an existing ROR record: Barcelonaβeta Brain Research Center - https://ror.org/023hj4e57,Barcelonaβeta Brain Research Center,https://ror.org/023hj4e57,https://ror.org/03k4wdb90,Barcelonaβeta Brain Research Center,Successor,Release +9409,https://github.com/ror-community/ror-updates/issues/9409,"Add a new organization to ROR: + +Nestlé Health Science",Nestlé Health Science (United States),https://ror.org/03y8jvk69,https://ror.org/01v5xwf23,Nestlé (Switzerland),Parent,Production +9409,https://github.com/ror-community/ror-updates/issues/9409,"Add a new organization to ROR: + +Nestlé Health Science",Nestlé (Switzerland),https://ror.org/01v5xwf23,https://ror.org/03y8jvk69,Nestlé Health Science (United States),Child,Release +9418,https://github.com/ror-community/ror-updates/issues/9418,"Add a new organization to ROR: + +Ninja Theory",Ninja Theory (United Kingdom),https://ror.org/04xrsn650,https://ror.org/00d0nc645,Microsoft (United States),Parent,Production +9418,https://github.com/ror-community/ror-updates/issues/9418,"Add a new organization to ROR: + +Ninja Theory",Microsoft (United States),https://ror.org/00d0nc645,https://ror.org/04xrsn650,Ninja Theory (United Kingdom),Child,Release +8479,https://github.com/ror-community/ror-updates/issues/8479,Add a new organization to ROR: State Key Laboratory of Aerodynamics,State Key Laboratory of Aerodynamics,https://ror.org/055rh9p75,https://ror.org/00jma8s40,China Aerodynamics Research and Development Center,Parent,Production +8479,https://github.com/ror-community/ror-updates/issues/8479,Add a new organization to ROR: State Key Laboratory of Aerodynamics,China Aerodynamics Research and Development Center,https://ror.org/00jma8s40,https://ror.org/055rh9p75,State Key Laboratory of Aerodynamics,Child,Release +8329,https://github.com/ror-community/ror-updates/issues/8329,Add a new organization to ROR: State Key Laboratory of Automobile Simulation and Control,State Key Laboratory of Automotive Simulation and Control,https://ror.org/00b67z867,https://ror.org/00js3aw79,Jilin University,Parent,Production +8329,https://github.com/ror-community/ror-updates/issues/8329,Add a new organization to ROR: State Key Laboratory of Automobile Simulation and Control,Jilin University,https://ror.org/00js3aw79,https://ror.org/00b67z867,State Key Laboratory of Automotive Simulation and Control,Child,Release +8393,https://github.com/ror-community/ror-updates/issues/8393,Add a new organization to ROR: State Key Laboratory of Quantum Optics and Quantum Optics Devices,State Key Laboratory of Quantum Optics and Quantum Optics Devices,https://ror.org/035z18f46,https://ror.org/03y3e3s17,Shanxi University,Parent,Production +8393,https://github.com/ror-community/ror-updates/issues/8393,Add a new organization to ROR: State Key Laboratory of Quantum Optics and Quantum Optics Devices,Shanxi University,https://ror.org/03y3e3s17,https://ror.org/035z18f46,State Key Laboratory of Quantum Optics and Quantum Optics Devices,Child,Release +8458,https://github.com/ror-community/ror-updates/issues/8458,Add a new organization to ROR: State Key Laboratory of Virtual Reality Technology and Systems,State Key Laboratory of Virtual Reality Technology and Systems,https://ror.org/0009eea46,https://ror.org/00wk2mp56,Beihang University,Parent,Production +8458,https://github.com/ror-community/ror-updates/issues/8458,Add a new organization to ROR: State Key Laboratory of Virtual Reality Technology and Systems,Beihang University,https://ror.org/00wk2mp56,https://ror.org/0009eea46,State Key Laboratory of Virtual Reality Technology and Systems,Child,Release +8478,https://github.com/ror-community/ror-updates/issues/8478,Add a new organization to ROR: State Key Laboratory of Power System and Generation Equipment,State Key Laboratory of Power System and Generation Equipment,https://ror.org/043evzg22,https://ror.org/03cve4549,Tsinghua University,Parent,Production +8478,https://github.com/ror-community/ror-updates/issues/8478,Add a new organization to ROR: State Key Laboratory of Power System and Generation Equipment,Tsinghua University,https://ror.org/03cve4549,https://ror.org/043evzg22,State Key Laboratory of Power System and Generation Equipment,Child,Release +9494,https://github.com/ror-community/ror-updates/issues/9494,Add a new organization to ROR: Bloomsbury (United States),Bloomsbury (United States),https://ror.org/042vxm455,https://ror.org/04yyy0y35,Bloomsbury Publishing (United Kingdom),Parent,Production +9494,https://github.com/ror-community/ror-updates/issues/9494,Add a new organization to ROR: Bloomsbury (United States),Bloomsbury Publishing (United Kingdom),https://ror.org/04yyy0y35,https://ror.org/042vxm455,Bloomsbury (United States),Child,Release +9499,https://github.com/ror-community/ror-updates/issues/9499,"Add a new organization to ROR: + +University National Center of Scientific and Technical Documentation",University National Center of Scientific and Technical Documentation,https://ror.org/03hc27x54,https://ror.org/05v1m8q81,Ministry of Higher Education and Scientific Research,Parent,Production +9499,https://github.com/ror-community/ror-updates/issues/9499,"Add a new organization to ROR: + +University National Center of Scientific and Technical Documentation",Ministry of Higher Education and Scientific Research,https://ror.org/05v1m8q81,https://ror.org/03hc27x54,University National Center of Scientific and Technical Documentation,Child,Release +9500,https://github.com/ror-community/ror-updates/issues/9500,"Add a new organization to ROR: + +University Hospitals Bristol and Weston NHS Foundation Trust",University Hospitals Bristol and Weston NHS Foundation Trust,https://ror.org/03jzzxg14,https://ror.org/04nm1cv11,University Hospitals Bristol NHS Foundation Trust,Predecessor,Release +9500,https://github.com/ror-community/ror-updates/issues/9500,"Add a new organization to ROR: + +University Hospitals Bristol and Weston NHS Foundation Trust",University Hospitals Bristol NHS Foundation Trust,https://ror.org/04nm1cv11,https://ror.org/03jzzxg14,University Hospitals Bristol and Weston NHS Foundation Trust,Successor,Release +9500,https://github.com/ror-community/ror-updates/issues/9500,"Add a new organization to ROR: + +University Hospitals Bristol and Weston NHS Foundation Trust",University Hospitals Bristol and Weston NHS Foundation Trust,https://ror.org/03jzzxg14,https://ror.org/03fpf5m04,Weston Area Health NHS Trust,Predecessor,Release +9500,https://github.com/ror-community/ror-updates/issues/9500,"Add a new organization to ROR: + +University Hospitals Bristol and Weston NHS Foundation Trust",Weston Area Health NHS Trust,https://ror.org/03fpf5m04,https://ror.org/03jzzxg14,University Hospitals Bristol and Weston NHS Foundation Trust,Successor,Release +9500,https://github.com/ror-community/ror-updates/issues/9500,"Add a new organization to ROR: + +University Hospitals Bristol and Weston NHS Foundation Trust",University Hospitals Bristol and Weston NHS Foundation Trust,https://ror.org/03jzzxg14,https://ror.org/03mc19e15,Weston General Hospital,Child,Production +9500,https://github.com/ror-community/ror-updates/issues/9500,"Add a new organization to ROR: + +University Hospitals Bristol and Weston NHS Foundation Trust",Weston General Hospital,https://ror.org/03mc19e15,https://ror.org/03jzzxg14,University Hospitals Bristol and Weston NHS Foundation Trust,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/05g2hd893,Beaumont Health,Predecessor,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Beaumont Health,https://ror.org/05g2hd893,https://ror.org/02hb5yj49,Corewell Health,Successor,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/02ahxdd04,Spectrum Health,Predecessor,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Spectrum Health,https://ror.org/02ahxdd04,https://ror.org/02hb5yj49,Corewell Health,Successor,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/02x3f7722,Lakeland Health,Predecessor,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Lakeland Health,https://ror.org/02x3f7722,https://ror.org/02hb5yj49,Corewell Health,Successor,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/05x643e19,Corewell Health Butterworth Hospital,Child,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health Butterworth Hospital,https://ror.org/05x643e19,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/03bk8p931,Helen DeVos Children's Hospital,Child,Production +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Helen DeVos Children's Hospital,https://ror.org/03bk8p931,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/00qy68j92,Corewell Health Blodgett Hospital,Child,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health Blodgett Hospital,https://ror.org/00qy68j92,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/04xcq9q51,Corewell Health Reed City Hospital,Child,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health Reed City Hospital,https://ror.org/04xcq9q51,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/053jm8142,Corewell Health Zeeland Hospital,Child,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health Zeeland Hospital,https://ror.org/053jm8142,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/03nr10290,Corewell Health Children's,Child,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health Children's,https://ror.org/03nr10290,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/03x4pp342,"Beaumont Hospital, Dearborn",Child,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,"Beaumont Hospital, Dearborn",https://ror.org/03x4pp342,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/058sakv40,Corewell Health William Beaumont University Hospital,Child,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health William Beaumont University Hospital,https://ror.org/058sakv40,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/03artm726,"Beaumont Hospital, Royal Oak",Child,Production +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,"Beaumont Hospital, Royal Oak",https://ror.org/03artm726,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,Corewell Health,https://ror.org/02hb5yj49,https://ror.org/05x9ffc66,"Beaumont Hospital, Troy",Child,Production +9507,https://github.com/ror-community/ror-updates/issues/9507,Add a new organization to ROR: Corewell Health,"Beaumont Hospital, Troy",https://ror.org/05x9ffc66,https://ror.org/02hb5yj49,Corewell Health,Parent,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/02j9n6e35,ALBA Synchrotron (Spain),Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",ALBA Synchrotron (Spain),https://ror.org/02j9n6e35,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/01js2sh04,Deutsches Elektronen-Synchrotron DESY,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Deutsches Elektronen-Synchrotron DESY,https://ror.org/01js2sh04,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/05etxs293,Diamond Light Source,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Diamond Light Source,https://ror.org/05etxs293,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/01c3rrh15,Elettra-Sincrotrone Trieste S.C.p.A.,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Elettra-Sincrotrone Trieste S.C.p.A.,https://ror.org/01c3rrh15,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/01wp2jz98,European X-Ray Free-Electron Laser,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",European X-Ray Free-Electron Laser,https://ror.org/01wp2jz98,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/03tkwyq76,FELIX Laboratory,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",FELIX Laboratory,https://ror.org/03tkwyq76,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/02aj13c28,Helmholtz-Zentrum Berlin für Materialien und Energie,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Helmholtz-Zentrum Berlin für Materialien und Energie,https://ror.org/02aj13c28,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/01zy2cs03,Helmholtz-Zentrum Dresden-Rossendorf,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Helmholtz-Zentrum Dresden-Rossendorf,https://ror.org/01zy2cs03,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/005ta0471,Istituto Nazionale di Fisica Nucleare,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Istituto Nazionale di Fisica Nucleare,https://ror.org/005ta0471,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/03q28x580,MAX IV Laboratory,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",MAX IV Laboratory,https://ror.org/03q28x580,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/03eh3y714,Paul Scherrer Institute,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Paul Scherrer Institute,https://ror.org/03eh3y714,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/05r3f7h03,Physikalisch-Technische Bundesanstalt,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Physikalisch-Technische Bundesanstalt,https://ror.org/05r3f7h03,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/01ydb3330,Soleil Synchrotron,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Soleil Synchrotron,https://ror.org/01ydb3330,https://ror.org/04wcn4e27,LEAPS,Related,Release +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",LEAPS,https://ror.org/04wcn4e27,https://ror.org/01ydb3330,Soleil Synchrotron,Related,Production +9682,https://github.com/ror-community/ror-updates/issues/9682,"Add a new organization to ROR: + +LEAPS",Soleil Synchrotron,https://ror.org/01ydb3330,https://ror.org/04wcn4e27,LEAPS,Related,Release +9690,https://github.com/ror-community/ror-updates/issues/9690,Add a new organization to ROR - Institute of Chinese Materia Medica,Institute of Chinese Materia Medica,https://ror.org/04kn56m50,https://ror.org/02drdmm93,Chinese Academy of Medical Sciences & Peking Union Medical College,Parent,Production +9690,https://github.com/ror-community/ror-updates/issues/9690,Add a new organization to ROR - Institute of Chinese Materia Medica,Chinese Academy of Medical Sciences & Peking Union Medical College,https://ror.org/02drdmm93,https://ror.org/04kn56m50,Institute of Chinese Materia Medica,Child,Release +9695,https://github.com/ror-community/ror-updates/issues/9695,Add a new organization to ROR: China Electric Power Research Institute,China Electric Power Research Institute,https://ror.org/05ehpzy81,https://ror.org/05twwhs70,State Grid Corporation of China (China),Parent,Production +9695,https://github.com/ror-community/ror-updates/issues/9695,Add a new organization to ROR: China Electric Power Research Institute,State Grid Corporation of China (China),https://ror.org/05twwhs70,https://ror.org/05ehpzy81,China Electric Power Research Institute,Child,Release +9702,https://github.com/ror-community/ror-updates/issues/9702,"Add a new organization to ROR: + +Deutsche Institut für angewandte Pflegeforschung e.V.",Deutsche Institut für angewandte Pflegeforschung e.V.,https://ror.org/02bjrmf75,https://ror.org/024nr0776,Catholic University of Applied Sciences of North Rhine – Westphalia,Related,Production +9702,https://github.com/ror-community/ror-updates/issues/9702,"Add a new organization to ROR: + +Deutsche Institut für angewandte Pflegeforschung e.V.",Catholic University of Applied Sciences of North Rhine – Westphalia,https://ror.org/024nr0776,https://ror.org/02bjrmf75,Deutsche Institut für angewandte Pflegeforschung e.V.,Related,Release +9718,https://github.com/ror-community/ror-updates/issues/9718,Add a new organization to ROR - Cegid,Cegid (France),https://ror.org/03eewzy02,https://ror.org/03kevw840,Meta4 (Spain),Predecessor,Release +9734,https://github.com/ror-community/ror-updates/issues/9734,Add a new organization to ROR: DRACE GEOCISA S.A. (Spain),DRACE GEOCISA S.A. (Spain),https://ror.org/03gf4dx13,https://ror.org/0040z4m89,Geocisa (Spain),Predecessor,Release +9734,https://github.com/ror-community/ror-updates/issues/9734,Add a new organization to ROR: DRACE GEOCISA S.A. (Spain),Geocisa (Spain),https://ror.org/0040z4m89,https://ror.org/03gf4dx13,DRACE GEOCISA S.A. (Spain),Successor,Release +9741,https://github.com/ror-community/ror-updates/issues/9741,Add a new organization to ROR: Cesefor,Cesefor,https://ror.org/057k6gq03,https://ror.org/03ry8wj79,Instituto de Biotecnología de León,Predecessor,Production +9754,https://github.com/ror-community/ror-updates/issues/9754,Add a new organization to ROR - Spanish National Health System,Sistema Nacional de Salud,https://ror.org/026z37f85,https://ror.org/04t4b6y41,Instituto Nacional de la Salud,Predecessor,Release +9754,https://github.com/ror-community/ror-updates/issues/9754,Add a new organization to ROR - Spanish National Health System,Sistema Nacional de Salud,https://ror.org/026z37f85,https://ror.org/00y6q9n79,Ministry of Health,Parent,Production +9754,https://github.com/ror-community/ror-updates/issues/9754,Add a new organization to ROR - Spanish National Health System,Ministry of Health,https://ror.org/00y6q9n79,https://ror.org/026z37f85,Sistema Nacional de Salud,Child,Release +9836,https://github.com/ror-community/ror-updates/issues/9836,"Add a new organization to ROR: + +Médecine Cardiovasculaire Translationnelle",Médecine Cardiovasculaire Translationnelle,https://ror.org/010e21634,https://ror.org/00pg6eq24,University of Strasbourg,Parent,Production +9836,https://github.com/ror-community/ror-updates/issues/9836,"Add a new organization to ROR: + +Médecine Cardiovasculaire Translationnelle",University of Strasbourg,https://ror.org/00pg6eq24,https://ror.org/010e21634,Médecine Cardiovasculaire Translationnelle,Child,Release +9835,https://github.com/ror-community/ror-updates/issues/9835,Add a new organization to ROR: Hospital Universitario de Toledo,Hospital Universitario de Toledo,https://ror.org/00wxgxz56,https://ror.org/0289cxp23,Hospital Virgen de la Salud,Predecessor,Release +9835,https://github.com/ror-community/ror-updates/issues/9835,Add a new organization to ROR: Hospital Universitario de Toledo,Hospital Virgen de la Salud,https://ror.org/0289cxp23,https://ror.org/00wxgxz56,Hospital Universitario de Toledo,Successor,Release +9832,https://github.com/ror-community/ror-updates/issues/9832,"Add a new organization to ROR: + +NFDI4DS",NFDI4DS,https://ror.org/00bb4nn95,https://ror.org/05qj6w324,Nationale Forschungsdateninfrastruktur,Parent,Production +9832,https://github.com/ror-community/ror-updates/issues/9832,"Add a new organization to ROR: + +NFDI4DS",Nationale Forschungsdateninfrastruktur,https://ror.org/05qj6w324,https://ror.org/00bb4nn95,NFDI4DS,Child,Release +9854,https://github.com/ror-community/ror-updates/issues/9854,"Add a new organization to ROR: + +Wales Centre for Public Policy",Wales Centre for Public Policy,https://ror.org/03y0ymy78,https://ror.org/05j5g1b69,Public Policy Institute for Wales,Predecessor,Release +9854,https://github.com/ror-community/ror-updates/issues/9854,"Add a new organization to ROR: + +Wales Centre for Public Policy",Public Policy Institute for Wales,https://ror.org/05j5g1b69,https://ror.org/03y0ymy78,Wales Centre for Public Policy,Successor,Release +9854,https://github.com/ror-community/ror-updates/issues/9854,"Add a new organization to ROR: + +Wales Centre for Public Policy",Wales Centre for Public Policy,https://ror.org/03y0ymy78,https://ror.org/03kk7td41,Cardiff University,Related,Production +9854,https://github.com/ror-community/ror-updates/issues/9854,"Add a new organization to ROR: + +Wales Centre for Public Policy",Cardiff University,https://ror.org/03kk7td41,https://ror.org/03y0ymy78,Wales Centre for Public Policy,Related,Release +9855,https://github.com/ror-community/ror-updates/issues/9855,"Add a new organization to ROR: + +Escuela Universitaria de Magisterio Begoñako Andra Mari",Escuela Universitaria de Magisterio Begoñako Andra Mari,https://ror.org/009xdmc59,https://ror.org/00ne6sr39,Universidad de Deusto,Related,Production +9855,https://github.com/ror-community/ror-updates/issues/9855,"Add a new organization to ROR: + +Escuela Universitaria de Magisterio Begoñako Andra Mari",Universidad de Deusto,https://ror.org/00ne6sr39,https://ror.org/009xdmc59,Escuela Universitaria de Magisterio Begoñako Andra Mari,Related,Release +9874,https://github.com/ror-community/ror-updates/issues/9874,Add a new organization to ROR: Cégep Beauce-Appalaches,Cégep Beauce-Appalaches,https://ror.org/05sz3st37,https://ror.org/02805zw73,Hôpital d'Youville de Sherbrooke,Parent,Production +9874,https://github.com/ror-community/ror-updates/issues/9874,Add a new organization to ROR: Cégep Beauce-Appalaches,Hôpital d'Youville de Sherbrooke,https://ror.org/02805zw73,https://ror.org/05sz3st37,Cégep Beauce-Appalaches,Child,Release +9874,https://github.com/ror-community/ror-updates/issues/9874,Add a new organization to ROR: Cégep Beauce-Appalaches,Cégep Beauce-Appalaches,https://ror.org/05sz3st37,https://ror.org/02805zw73,Hôpital d'Youville de Sherbrooke,Child,Production +9874,https://github.com/ror-community/ror-updates/issues/9874,Add a new organization to ROR: Cégep Beauce-Appalaches,Hôpital d'Youville de Sherbrooke,https://ror.org/02805zw73,https://ror.org/05sz3st37,Cégep Beauce-Appalaches,Parent,Release +9873,https://github.com/ror-community/ror-updates/issues/9873,Add a new organization to ROR: Institut de tourisme et d'hôtellerie du Québec [ITHQ],Institut de tourisme et d'hôtellerie du Québec,https://ror.org/02w3bnx54,https://ror.org/05hqvvq43,Government of Northwest Territories,Parent,Production +9873,https://github.com/ror-community/ror-updates/issues/9873,Add a new organization to ROR: Institut de tourisme et d'hôtellerie du Québec [ITHQ],Government of Northwest Territories,https://ror.org/05hqvvq43,https://ror.org/02w3bnx54,Institut de tourisme et d'hôtellerie du Québec,Child,Release +9523,https://github.com/ror-community/ror-updates/issues/9523,Add a new organization to ROR: Strategic Environmental Research and Development Program,Strategic Environmental Research and Development Program,https://ror.org/00ew61678,https://ror.org/0447fe631,United States Department of Defense,Parent,Production +9523,https://github.com/ror-community/ror-updates/issues/9523,Add a new organization to ROR: Strategic Environmental Research and Development Program,United States Department of Defense,https://ror.org/0447fe631,https://ror.org/00ew61678,Strategic Environmental Research and Development Program,Child,Release +9666,https://github.com/ror-community/ror-updates/issues/9666,"Add a new organization to ROR: Centre on Innovation and Energy Demand, University of Sussex",Centre on Innovation and Energy Demand,https://ror.org/00g1jn849,https://ror.org/00ayhx656,University of Sussex,Parent,Production +9666,https://github.com/ror-community/ror-updates/issues/9666,"Add a new organization to ROR: Centre on Innovation and Energy Demand, University of Sussex",University of Sussex,https://ror.org/00ayhx656,https://ror.org/00g1jn849,Centre on Innovation and Energy Demand,Child,Release +9524,https://github.com/ror-community/ror-updates/issues/9524,Add a new organization to ROR: European Metrology Programme for Innovation and Research,European Metrology Programme for Innovation and Research,https://ror.org/042k5q325,https://ror.org/03csrq586,European Association of National Metrology Institutes,Parent,Production +9524,https://github.com/ror-community/ror-updates/issues/9524,Add a new organization to ROR: European Metrology Programme for Innovation and Research,European Association of National Metrology Institutes,https://ror.org/03csrq586,https://ror.org/042k5q325,European Metrology Programme for Innovation and Research,Child,Release +9525,https://github.com/ror-community/ror-updates/issues/9525,Add a new organization to ROR: FURTHERMORE grants in publishing,FURTHERMORE grants in publishing,https://ror.org/04vzm8988,https://ror.org/03cn98e27,J.M. Kaplan Fund,Parent,Production +9525,https://github.com/ror-community/ror-updates/issues/9525,Add a new organization to ROR: FURTHERMORE grants in publishing,J.M. Kaplan Fund,https://ror.org/03cn98e27,https://ror.org/04vzm8988,FURTHERMORE grants in publishing,Child,Release +9527,https://github.com/ror-community/ror-updates/issues/9527,Add a new organization to ROR: Common Fund,NIH Common Fund,https://ror.org/001d55x84,https://ror.org/02e3wq066,Division of Program Coordination Planning and Strategic Initiatives,Parent,Production +9527,https://github.com/ror-community/ror-updates/issues/9527,Add a new organization to ROR: Common Fund,Division of Program Coordination Planning and Strategic Initiatives,https://ror.org/02e3wq066,https://ror.org/001d55x84,NIH Common Fund,Child,Release +9530,https://github.com/ror-community/ror-updates/issues/9530,Add a new organization to ROR: National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber,NIHR Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber,https://ror.org/0300g2m85,https://ror.org/0187kwz08,National Institute for Health Research,Parent,Production +9530,https://github.com/ror-community/ror-updates/issues/9530,Add a new organization to ROR: National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber,National Institute for Health Research,https://ror.org/0187kwz08,https://ror.org/0300g2m85,NIHR Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber,Child,Release +9531,https://github.com/ror-community/ror-updates/issues/9531,"Add a new organization to ROR: Nonwovens Institute, North Carolina State University",The Nonwovens Institute,https://ror.org/0568g2481,https://ror.org/04tj63d06,North Carolina State University,Parent,Production +9531,https://github.com/ror-community/ror-updates/issues/9531,"Add a new organization to ROR: Nonwovens Institute, North Carolina State University",North Carolina State University,https://ror.org/04tj63d06,https://ror.org/0568g2481,The Nonwovens Institute,Child,Release +9532,https://github.com/ror-community/ror-updates/issues/9532,Add a new organization to ROR: Collaboration for Leadership in Applied Health Research and Care - Greater Manchester,NIHR Applied Research Collaboration Greater Manchester,https://ror.org/021954z67,https://ror.org/0187kwz08,National Institute for Health Research,Parent,Production +9532,https://github.com/ror-community/ror-updates/issues/9532,Add a new organization to ROR: Collaboration for Leadership in Applied Health Research and Care - Greater Manchester,National Institute for Health Research,https://ror.org/0187kwz08,https://ror.org/021954z67,NIHR Applied Research Collaboration Greater Manchester,Child,Release +9534,https://github.com/ror-community/ror-updates/issues/9534,"Add a new organization to ROR: Stanley Center for Psychiatric Research, Broad Institute",Stanley Center for Psychiatric Research,https://ror.org/01tm9b530,https://ror.org/05a0ya142,Broad Institute,Parent,Production +9534,https://github.com/ror-community/ror-updates/issues/9534,"Add a new organization to ROR: Stanley Center for Psychiatric Research, Broad Institute",Broad Institute,https://ror.org/05a0ya142,https://ror.org/01tm9b530,Stanley Center for Psychiatric Research,Child,Release +9537,https://github.com/ror-community/ror-updates/issues/9537,Add a new organization to ROR: Communicating Diet and Activity Research,Communicating Diet and Activity Research,https://ror.org/05tamah23,https://ror.org/025ecp212,United Kingdom Clinical Research Collaboration,Related,Production +9537,https://github.com/ror-community/ror-updates/issues/9537,Add a new organization to ROR: Communicating Diet and Activity Research,United Kingdom Clinical Research Collaboration,https://ror.org/025ecp212,https://ror.org/05tamah23,Communicating Diet and Activity Research,Related,Release +9545,https://github.com/ror-community/ror-updates/issues/9545,Add a new organization to ROR: Instituto Nacional de Ciência e Tecnologia Translacional em Medicina,Instituto Nacional de Ciência e Tecnologia Translacional em Medicina,https://ror.org/01vt9w950,https://ror.org/041yk2d64,Universidade Federal do Rio Grande do Sul,Parent,Production +9545,https://github.com/ror-community/ror-updates/issues/9545,Add a new organization to ROR: Instituto Nacional de Ciência e Tecnologia Translacional em Medicina,Universidade Federal do Rio Grande do Sul,https://ror.org/041yk2d64,https://ror.org/01vt9w950,Instituto Nacional de Ciência e Tecnologia Translacional em Medicina,Child,Release +9552,https://github.com/ror-community/ror-updates/issues/9552,Add a new organization to ROR: Foundation Medicine,Foundation Medicine (United States),https://ror.org/02ackr434,https://ror.org/00by1q217,Roche (Switzerland),Parent,Production +9552,https://github.com/ror-community/ror-updates/issues/9552,Add a new organization to ROR: Foundation Medicine,Roche (Switzerland),https://ror.org/00by1q217,https://ror.org/02ackr434,Foundation Medicine (United States),Child,Release +9553,https://github.com/ror-community/ror-updates/issues/9553,Add a new organization to ROR: OVC Pet Trust,OVC Pet Trust,https://ror.org/02stdqb15,https://ror.org/04frvgs13,Ontario Veterinary College,Parent,Production +9553,https://github.com/ror-community/ror-updates/issues/9553,Add a new organization to ROR: OVC Pet Trust,Ontario Veterinary College,https://ror.org/04frvgs13,https://ror.org/02stdqb15,OVC Pet Trust,Child,Release +9554,https://github.com/ror-community/ror-updates/issues/9554,Add a new organization to ROR: EIT Food,EIT Food,https://ror.org/01kde4v59,https://ror.org/036dxts37,European Institute of Innovation and Technology,Parent,Production +9554,https://github.com/ror-community/ror-updates/issues/9554,Add a new organization to ROR: EIT Food,European Institute of Innovation and Technology,https://ror.org/036dxts37,https://ror.org/01kde4v59,EIT Food,Child,Release +9895,https://github.com/ror-community/ror-updates/issues/9895,"Add a new organization to ROR: + +Fondazione Giannino Bassetti",Fondazione Giannino Bassetti,https://ror.org/027620g33,https://ror.org/01ym3w380,Globus et Locus,Related,Production +9895,https://github.com/ror-community/ror-updates/issues/9895,"Add a new organization to ROR: + +Fondazione Giannino Bassetti",Globus et Locus,https://ror.org/01ym3w380,https://ror.org/027620g33,Fondazione Giannino Bassetti,Related,Release +9897,https://github.com/ror-community/ror-updates/issues/9897,"Add a new organization to ROR: + +Ministerio para la Transformación Digital y de la Función Pública",Ministerio para la Transformación Digital y de la Función Pública,https://ror.org/01qh08519,https://ror.org/03sv46s19,Ministerio de Asuntos Económicos y Transformación Digital,Predecessor,Release +9897,https://github.com/ror-community/ror-updates/issues/9897,"Add a new organization to ROR: + +Ministerio para la Transformación Digital y de la Función Pública",Ministerio de Asuntos Económicos y Transformación Digital,https://ror.org/03sv46s19,https://ror.org/01qh08519,Ministerio para la Transformación Digital y de la Función Pública,Successor,Release +9910,https://github.com/ror-community/ror-updates/issues/9910,"Add a new organization to ROR: + +Panskura Banamali College (Autonomous)",Panskura Banamali College,https://ror.org/01hn2pk88,https://ror.org/027jsza11,Vidyasagar University,Related,Production +9910,https://github.com/ror-community/ror-updates/issues/9910,"Add a new organization to ROR: + +Panskura Banamali College (Autonomous)",Vidyasagar University,https://ror.org/027jsza11,https://ror.org/01hn2pk88,Panskura Banamali College,Related,Release +9543,https://github.com/ror-community/ror-updates/issues/9543,Add a new organization to ROR: ZOLL Medical Corporation,ZOLL Medical Corporation (United States),https://ror.org/036wkjd70,https://ror.org/018wp0236,Asahi Kasei (Japan),Parent,Production +9543,https://github.com/ror-community/ror-updates/issues/9543,Add a new organization to ROR: ZOLL Medical Corporation,Asahi Kasei (Japan),https://ror.org/018wp0236,https://ror.org/036wkjd70,ZOLL Medical Corporation (United States),Child,Release +9555,https://github.com/ror-community/ror-updates/issues/9555,"Add a new organization to ROR: Ministère de l’Éducation, Gouvernement de l’Ontario",Ministry of Education,https://ror.org/016gy9w96,https://ror.org/015pzp858,Government of Ontario,Parent,Production +9555,https://github.com/ror-community/ror-updates/issues/9555,"Add a new organization to ROR: Ministère de l’Éducation, Gouvernement de l’Ontario",Government of Ontario,https://ror.org/015pzp858,https://ror.org/016gy9w96,Ministry of Education,Child,Release +9556,https://github.com/ror-community/ror-updates/issues/9556,Add a new organization to ROR: Ministry of Science and Technology (Pakistan),Ministry of Science and Technology,https://ror.org/03jn2p430,https://ror.org/00pnp4y96,Government of Pakistan,Parent,Production +9556,https://github.com/ror-community/ror-updates/issues/9556,Add a new organization to ROR: Ministry of Science and Technology (Pakistan),Government of Pakistan,https://ror.org/00pnp4y96,https://ror.org/03jn2p430,Ministry of Science and Technology,Child,Release +9558,https://github.com/ror-community/ror-updates/issues/9558,Add a new organization to ROR: Fondation Saint-Luc,Fondation Saint-Luc,https://ror.org/021354321,https://ror.org/03s4khd80,Cliniques Universitaires Saint-Luc,Parent,Production +9558,https://github.com/ror-community/ror-updates/issues/9558,Add a new organization to ROR: Fondation Saint-Luc,Cliniques Universitaires Saint-Luc,https://ror.org/03s4khd80,https://ror.org/021354321,Fondation Saint-Luc,Child,Release +9559,https://github.com/ror-community/ror-updates/issues/9559,"Add a new organization to ROR: Departement Economie, Wetenschap & Innovatie","Departement Economie, Wetenschap & Innovatie",https://ror.org/01g94x362,https://ror.org/04qxsrb28,Flemish Government,Parent,Production +9559,https://github.com/ror-community/ror-updates/issues/9559,"Add a new organization to ROR: Departement Economie, Wetenschap & Innovatie",Flemish Government,https://ror.org/04qxsrb28,https://ror.org/01g94x362,"Departement Economie, Wetenschap & Innovatie",Child,Release +9560,https://github.com/ror-community/ror-updates/issues/9560,Add a new organization to ROR: Grundfos Fond,Grundfos Fond,https://ror.org/0008vp155,https://ror.org/05rdv5n40,Grundfos (Denmark),Child,Production +9560,https://github.com/ror-community/ror-updates/issues/9560,Add a new organization to ROR: Grundfos Fond,Grundfos (Denmark),https://ror.org/05rdv5n40,https://ror.org/0008vp155,Grundfos Fond,Parent,Release +9564,https://github.com/ror-community/ror-updates/issues/9564,Add a new organization to ROR: Medtronic Foundation,Medtronic Foundation,https://ror.org/01f7saf07,https://ror.org/00grd1h17,Medtronic (United States),Parent,Production +9564,https://github.com/ror-community/ror-updates/issues/9564,Add a new organization to ROR: Medtronic Foundation,Medtronic (United States),https://ror.org/00grd1h17,https://ror.org/01f7saf07,Medtronic Foundation,Child,Release +9568,https://github.com/ror-community/ror-updates/issues/9568,Add a new organization to ROR: Stiftung Charité,Stiftung Charité,https://ror.org/016rf0n60,https://ror.org/001w7jn25,Charité - Universitätsmedizin Berlin,Parent,Production +9568,https://github.com/ror-community/ror-updates/issues/9568,Add a new organization to ROR: Stiftung Charité,Charité - Universitätsmedizin Berlin,https://ror.org/001w7jn25,https://ror.org/016rf0n60,Stiftung Charité,Child,Release +9569,https://github.com/ror-community/ror-updates/issues/9569,Add a new organization to ROR: Ontario Agri-Food Innovation Alliance,Ontario Agri-Food Innovation Alliance,https://ror.org/02ftfma65,https://ror.org/011n4tk56,Agricultural Research Institute of Ontario,Related,Production +9569,https://github.com/ror-community/ror-updates/issues/9569,Add a new organization to ROR: Ontario Agri-Food Innovation Alliance,Agricultural Research Institute of Ontario,https://ror.org/011n4tk56,https://ror.org/02ftfma65,Ontario Agri-Food Innovation Alliance,Related,Release +9569,https://github.com/ror-community/ror-updates/issues/9569,Add a new organization to ROR: Ontario Agri-Food Innovation Alliance,Ontario Agri-Food Innovation Alliance,https://ror.org/02ftfma65,https://ror.org/01r7awg59,University of Guelph,Related,Production +9569,https://github.com/ror-community/ror-updates/issues/9569,Add a new organization to ROR: Ontario Agri-Food Innovation Alliance,University of Guelph,https://ror.org/01r7awg59,https://ror.org/02ftfma65,Ontario Agri-Food Innovation Alliance,Related,Release +9570,https://github.com/ror-community/ror-updates/issues/9570,"Add a new organization to ROR: Agricultural Research Institute, California State University",Agricultural Research Institute,https://ror.org/00m98kt33,https://ror.org/020qm1538,California State University System,Parent,Production +9570,https://github.com/ror-community/ror-updates/issues/9570,"Add a new organization to ROR: Agricultural Research Institute, California State University",California State University System,https://ror.org/020qm1538,https://ror.org/00m98kt33,Agricultural Research Institute,Child,Release +9571,https://github.com/ror-community/ror-updates/issues/9571,Add a new organization to ROR: Astellas Pharma (Canada),Astellas Pharma (Canada),https://ror.org/041repn61,https://ror.org/01cjash87,Astellas Pharma (Japan),Parent,Production +9571,https://github.com/ror-community/ror-updates/issues/9571,Add a new organization to ROR: Astellas Pharma (Canada),Astellas Pharma (Japan),https://ror.org/01cjash87,https://ror.org/041repn61,Astellas Pharma (Canada),Child,Release +9573,https://github.com/ror-community/ror-updates/issues/9573,Add a new organization to ROR: Stanford SystemX Alliance,Stanford SystemX Alliance,https://ror.org/0551gkb08,https://ror.org/00f54p054,Stanford University,Parent,Production +9573,https://github.com/ror-community/ror-updates/issues/9573,Add a new organization to ROR: Stanford SystemX Alliance,Stanford University,https://ror.org/00f54p054,https://ror.org/0551gkb08,Stanford SystemX Alliance,Child,Release +9574,https://github.com/ror-community/ror-updates/issues/9574,Add a new organization to ROR: National Centres of Competence in Research SwissMAP,NCCR SwissMAP,https://ror.org/00xzacp61,https://ror.org/00yjd3n13,Swiss National Science Foundation,Parent,Production +9574,https://github.com/ror-community/ror-updates/issues/9574,Add a new organization to ROR: National Centres of Competence in Research SwissMAP,Swiss National Science Foundation,https://ror.org/00yjd3n13,https://ror.org/00xzacp61,NCCR SwissMAP,Child,Release +9574,https://github.com/ror-community/ror-updates/issues/9574,Add a new organization to ROR: National Centres of Competence in Research SwissMAP,NCCR SwissMAP,https://ror.org/00xzacp61,https://ror.org/05a28rw58,ETH Zurich,Parent,Production +9574,https://github.com/ror-community/ror-updates/issues/9574,Add a new organization to ROR: National Centres of Competence in Research SwissMAP,ETH Zurich,https://ror.org/05a28rw58,https://ror.org/00xzacp61,NCCR SwissMAP,Child,Release +9574,https://github.com/ror-community/ror-updates/issues/9574,Add a new organization to ROR: National Centres of Competence in Research SwissMAP,NCCR SwissMAP,https://ror.org/00xzacp61,https://ror.org/01swzsf04,University of Geneva,Parent,Production +9574,https://github.com/ror-community/ror-updates/issues/9574,Add a new organization to ROR: National Centres of Competence in Research SwissMAP,University of Geneva,https://ror.org/01swzsf04,https://ror.org/00xzacp61,NCCR SwissMAP,Child,Release +9575,https://github.com/ror-community/ror-updates/issues/9575,"Add a new organization to ROR: Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development","Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development",https://ror.org/057p7e749,https://ror.org/05tgxx705,Department of Science and Technology,Parent,Production +9575,https://github.com/ror-community/ror-updates/issues/9575,"Add a new organization to ROR: Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development",Department of Science and Technology,https://ror.org/05tgxx705,https://ror.org/057p7e749,"Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development",Child,Release +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,Communauté Université Grenoble Alpes,https://ror.org/05v727m31,https://ror.org/02rx3b187,Université Grenoble Alpes,Related,Production +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,Université Grenoble Alpes,https://ror.org/02rx3b187,https://ror.org/05v727m31,Communauté Université Grenoble Alpes,Related,Release +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,Communauté Université Grenoble Alpes,https://ror.org/05v727m31,https://ror.org/05sbt2524,Grenoble Institute of Technology,Related,Production +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,Grenoble Institute of Technology,https://ror.org/05sbt2524,https://ror.org/05v727m31,Communauté Université Grenoble Alpes,Related,Release +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,Communauté Université Grenoble Alpes,https://ror.org/05v727m31,https://ror.org/02feahw73,French National Centre for Scientific Research,Related,Production +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,French National Centre for Scientific Research,https://ror.org/02feahw73,https://ror.org/05v727m31,Communauté Université Grenoble Alpes,Related,Release +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,Communauté Université Grenoble Alpes,https://ror.org/05v727m31,https://ror.org/02kvxyf05,French Institute for Research in Computer Science and Automation,Related,Release +9577,https://github.com/ror-community/ror-updates/issues/9577,Add a new organization to ROR: Communauté Université Grenoble Alpes,French Institute for Research in Computer Science and Automation,https://ror.org/02kvxyf05,https://ror.org/05v727m31,Communauté Université Grenoble Alpes,Related,Release +9580,https://github.com/ror-community/ror-updates/issues/9580,Add a new organization to ROR: Agricultural Experiment Station,Agricultural Experiment Station,https://ror.org/009q0jm69,https://ror.org/00hpz7z43,New Mexico State University,Parent,Production +9580,https://github.com/ror-community/ror-updates/issues/9580,Add a new organization to ROR: Agricultural Experiment Station,New Mexico State University,https://ror.org/00hpz7z43,https://ror.org/009q0jm69,Agricultural Experiment Station,Child,Release +9582,https://github.com/ror-community/ror-updates/issues/9582,Add a new organization to ROR: National Research Council of the Philippines,National Research Council of the Philippines,https://ror.org/00c746491,https://ror.org/05tgxx705,Department of Science and Technology,Parent,Production +9582,https://github.com/ror-community/ror-updates/issues/9582,Add a new organization to ROR: National Research Council of the Philippines,Department of Science and Technology,https://ror.org/05tgxx705,https://ror.org/00c746491,National Research Council of the Philippines,Child,Release +9583,https://github.com/ror-community/ror-updates/issues/9583,Add a new organization to ROR: Nuclear Science and Technology Research Institute,Nuclear Science and Technology Research Institute,https://ror.org/05cebxq10,https://ror.org/04feqxb79,Atomic Energy Organization of Iran,Parent,Production +9583,https://github.com/ror-community/ror-updates/issues/9583,Add a new organization to ROR: Nuclear Science and Technology Research Institute,Atomic Energy Organization of Iran,https://ror.org/04feqxb79,https://ror.org/05cebxq10,Nuclear Science and Technology Research Institute,Child,Release +9924,https://github.com/ror-community/ror-updates/issues/9924,Add a new organization to ROR: Zentrum für Klinische Tiermedizin,Zentrum für Klinische Tiermedizin,https://ror.org/02qqvpd39,https://ror.org/02am8se85,Klinik für Schweine,Child,Release +9924,https://github.com/ror-community/ror-updates/issues/9924,Add a new organization to ROR: Zentrum für Klinische Tiermedizin,Klinik für Schweine,https://ror.org/02am8se85,https://ror.org/02qqvpd39,Zentrum für Klinische Tiermedizin,Parent,Release +9585,https://github.com/ror-community/ror-updates/issues/9585,"Add a new organization to ROR: Office of Planning, Research and Evaluation","Office of Planning, Research and Evaluation",https://ror.org/05jnma812,https://ror.org/00g8hms52,Administration for Children and Families,Parent,Production +9585,https://github.com/ror-community/ror-updates/issues/9585,"Add a new organization to ROR: Office of Planning, Research and Evaluation",Administration for Children and Families,https://ror.org/00g8hms52,https://ror.org/05jnma812,"Office of Planning, Research and Evaluation",Child,Release +9586,https://github.com/ror-community/ror-updates/issues/9586,Add a new organization to ROR: Emory National Primate Research Center,Emory National Primate Research Center,https://ror.org/038kr2d80,https://ror.org/03czfpz43,Emory University,Parent,Production +9586,https://github.com/ror-community/ror-updates/issues/9586,Add a new organization to ROR: Emory National Primate Research Center,Emory University,https://ror.org/03czfpz43,https://ror.org/038kr2d80,Emory National Primate Research Center,Child,Release +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,Special Programme for Research and Training in Tropical Diseases,https://ror.org/046j7pv84,https://ror.org/02dg0pv02,United Nations Children's Fund,Parent,Production +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,United Nations Children's Fund,https://ror.org/02dg0pv02,https://ror.org/046j7pv84,Special Programme for Research and Training in Tropical Diseases,Child,Release +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,Special Programme for Research and Training in Tropical Diseases,https://ror.org/046j7pv84,https://ror.org/051777d98,United Nations Development Programme,Parent,Production +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,United Nations Development Programme,https://ror.org/051777d98,https://ror.org/046j7pv84,Special Programme for Research and Training in Tropical Diseases,Child,Release +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,Special Programme for Research and Training in Tropical Diseases,https://ror.org/046j7pv84,https://ror.org/00ae7jd04,World Bank,Parent,Production +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,World Bank,https://ror.org/00ae7jd04,https://ror.org/046j7pv84,Special Programme for Research and Training in Tropical Diseases,Child,Release +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,Special Programme for Research and Training in Tropical Diseases,https://ror.org/046j7pv84,https://ror.org/01f80g185,World Health Organization,Parent,Production +9590,https://github.com/ror-community/ror-updates/issues/9590,Add a new organization to ROR: Special Programme for Research and Training in Tropical Diseases,World Health Organization,https://ror.org/01f80g185,https://ror.org/046j7pv84,Special Programme for Research and Training in Tropical Diseases,Child,Release +9599,https://github.com/ror-community/ror-updates/issues/9599,Add a new organization to ROR: Cancer Research UK Manchester Centre,Cancer Research UK Manchester Centre,https://ror.org/033svsm10,https://ror.org/054225q67,Cancer Research UK,Parent,Production +9599,https://github.com/ror-community/ror-updates/issues/9599,Add a new organization to ROR: Cancer Research UK Manchester Centre,Cancer Research UK,https://ror.org/054225q67,https://ror.org/033svsm10,Cancer Research UK Manchester Centre,Child,Release +9599,https://github.com/ror-community/ror-updates/issues/9599,Add a new organization to ROR: Cancer Research UK Manchester Centre,Cancer Research UK Manchester Centre,https://ror.org/033svsm10,https://ror.org/027m9bs27,University of Manchester,Parent,Production +9599,https://github.com/ror-community/ror-updates/issues/9599,Add a new organization to ROR: Cancer Research UK Manchester Centre,University of Manchester,https://ror.org/027m9bs27,https://ror.org/033svsm10,Cancer Research UK Manchester Centre,Child,Release +9599,https://github.com/ror-community/ror-updates/issues/9599,Add a new organization to ROR: Cancer Research UK Manchester Centre,Cancer Research UK Manchester Centre,https://ror.org/033svsm10,https://ror.org/03v9efr22,The Christie NHS Foundation Trust,Parent,Production +9599,https://github.com/ror-community/ror-updates/issues/9599,Add a new organization to ROR: Cancer Research UK Manchester Centre,The Christie NHS Foundation Trust,https://ror.org/03v9efr22,https://ror.org/033svsm10,Cancer Research UK Manchester Centre,Child,Release +9597,https://github.com/ror-community/ror-updates/issues/9597,"Add a new organization to ROR: Johnson Cancer Research Center, Kansas State University",Johnson Cancer Research Center,https://ror.org/00nffqq91,https://ror.org/05p1j8758,Kansas State University,Parent,Production +9597,https://github.com/ror-community/ror-updates/issues/9597,"Add a new organization to ROR: Johnson Cancer Research Center, Kansas State University",Kansas State University,https://ror.org/05p1j8758,https://ror.org/00nffqq91,Johnson Cancer Research Center,Child,Release +9596,https://github.com/ror-community/ror-updates/issues/9596,Add a new organization to ROR: NIHR Greater Manchester Patient Safety Translational Research Centre,NIHR Greater Manchester Patient Safety Translational Research Centre,https://ror.org/0436znn81,https://ror.org/0187kwz08,National Institute for Health Research,Parent,Production +9596,https://github.com/ror-community/ror-updates/issues/9596,Add a new organization to ROR: NIHR Greater Manchester Patient Safety Translational Research Centre,National Institute for Health Research,https://ror.org/0187kwz08,https://ror.org/0436znn81,NIHR Greater Manchester Patient Safety Translational Research Centre,Child,Release +9595,https://github.com/ror-community/ror-updates/issues/9595,Add a new organization to ROR: Packard Center,Packard Center,https://ror.org/042fhmq33,https://ror.org/00za53h95,Johns Hopkins University,Parent,Production +9595,https://github.com/ror-community/ror-updates/issues/9595,Add a new organization to ROR: Packard Center,Johns Hopkins University,https://ror.org/00za53h95,https://ror.org/042fhmq33,Packard Center,Child,Release +9933,https://github.com/ror-community/ror-updates/issues/9933,"Add a new organization to ROR: The Affiliated Shunde Hospital of Jinan University, Foshan, China",The Affiliated Shunde Hospital of Jinan University,https://ror.org/04x2nq985,https://ror.org/02xe5ns62,Jinan University,Parent,Production +9933,https://github.com/ror-community/ror-updates/issues/9933,"Add a new organization to ROR: The Affiliated Shunde Hospital of Jinan University, Foshan, China",Jinan University,https://ror.org/02xe5ns62,https://ror.org/04x2nq985,The Affiliated Shunde Hospital of Jinan University,Child,Release +9594,https://github.com/ror-community/ror-updates/issues/9594,Add a new organization to ROR: Cornell University Agricultural Experiment Station,Cornell University Agricultural Experiment Station,https://ror.org/012qsrr25,https://ror.org/05bnh6r87,Cornell University,Parent,Production +9594,https://github.com/ror-community/ror-updates/issues/9594,Add a new organization to ROR: Cornell University Agricultural Experiment Station,Cornell University,https://ror.org/05bnh6r87,https://ror.org/012qsrr25,Cornell University Agricultural Experiment Station,Child,Release +9602,https://github.com/ror-community/ror-updates/issues/9602,Add a new organization to ROR: Waltham Centre for Pet Nutrition,Waltham Centre for Pet Nutrition,https://ror.org/00p7f7z86,https://ror.org/028vrr082,Mars (United States),Parent,Production +9602,https://github.com/ror-community/ror-updates/issues/9602,Add a new organization to ROR: Waltham Centre for Pet Nutrition,Mars (United States),https://ror.org/028vrr082,https://ror.org/00p7f7z86,Waltham Centre for Pet Nutrition,Child,Release +9601,https://github.com/ror-community/ror-updates/issues/9601,"Add a new organization to ROR: National Transportation Center, Morgan State University",National Transportation Center,https://ror.org/02wjh7838,https://ror.org/017d8gk22,Morgan State University,Parent,Production +9601,https://github.com/ror-community/ror-updates/issues/9601,"Add a new organization to ROR: National Transportation Center, Morgan State University",Morgan State University,https://ror.org/017d8gk22,https://ror.org/02wjh7838,National Transportation Center,Child,Release +9600,https://github.com/ror-community/ror-updates/issues/9600,"Add a new organization to ROR: Centre for Climate Change Economics and Policy, University of Leeds",Centre for Climate Change Economics and Policy,https://ror.org/03tsg3y65,https://ror.org/024mrxd33,University of Leeds,Parent,Production +9600,https://github.com/ror-community/ror-updates/issues/9600,"Add a new organization to ROR: Centre for Climate Change Economics and Policy, University of Leeds",University of Leeds,https://ror.org/024mrxd33,https://ror.org/03tsg3y65,Centre for Climate Change Economics and Policy,Child,Release +9600,https://github.com/ror-community/ror-updates/issues/9600,"Add a new organization to ROR: Centre for Climate Change Economics and Policy, University of Leeds",Centre for Climate Change Economics and Policy,https://ror.org/03tsg3y65,https://ror.org/0090zs177,London School of Economics and Political Science,Parent,Production +9600,https://github.com/ror-community/ror-updates/issues/9600,"Add a new organization to ROR: Centre for Climate Change Economics and Policy, University of Leeds",London School of Economics and Political Science,https://ror.org/0090zs177,https://ror.org/03tsg3y65,Centre for Climate Change Economics and Policy,Child,Release +9608,https://github.com/ror-community/ror-updates/issues/9608,Add a new organization to ROR: NIHR Applied Research Collaboration West,NIHR Applied Research Collaboration West,https://ror.org/03pzxq793,https://ror.org/0187kwz08,National Institute for Health Research,Parent,Production +9608,https://github.com/ror-community/ror-updates/issues/9608,Add a new organization to ROR: NIHR Applied Research Collaboration West,National Institute for Health Research,https://ror.org/0187kwz08,https://ror.org/03pzxq793,NIHR Applied Research Collaboration West,Child,Release +9606,https://github.com/ror-community/ror-updates/issues/9606,Add a new organization to ROR: Michigan Center for Urban African American Aging Research,Michigan Center for Urban African American Aging Research,https://ror.org/00q1brk57,https://ror.org/01070mq45,Wayne State University,Parent,Production +9606,https://github.com/ror-community/ror-updates/issues/9606,Add a new organization to ROR: Michigan Center for Urban African American Aging Research,Wayne State University,https://ror.org/01070mq45,https://ror.org/00q1brk57,Michigan Center for Urban African American Aging Research,Child,Release +9609,https://github.com/ror-community/ror-updates/issues/9609,Add a new organization to ROR: Defence and Security Accelerator,Defence and Security Accelerator,https://ror.org/05wnp0977,https://ror.org/01bvxzn29,Ministry of Defence,Parent,Production +9609,https://github.com/ror-community/ror-updates/issues/9609,Add a new organization to ROR: Defence and Security Accelerator,Ministry of Defence,https://ror.org/01bvxzn29,https://ror.org/05wnp0977,Defence and Security Accelerator,Child,Release +9610,https://github.com/ror-community/ror-updates/issues/9610,Add a new organization to ROR: NIHR Collaboration for Leadership in Applied Health Research and Care South London,NIHR Collaboration for Leadership in Applied Health Research and Care South London,https://ror.org/02gqg2511,https://ror.org/0187kwz08,National Institute for Health Research,Parent,Production +9610,https://github.com/ror-community/ror-updates/issues/9610,Add a new organization to ROR: NIHR Collaboration for Leadership in Applied Health Research and Care South London,National Institute for Health Research,https://ror.org/0187kwz08,https://ror.org/02gqg2511,NIHR Collaboration for Leadership in Applied Health Research and Care South London,Child,Release +9611,https://github.com/ror-community/ror-updates/issues/9611,Add a new organization to ROR: National Institute for Health Research Applied Research Collaboration South West Peninsula,NIHR Applied Research Collaboration South West Peninsula,https://ror.org/01qgn1839,https://ror.org/0187kwz08,National Institute for Health Research,Parent,Production +9611,https://github.com/ror-community/ror-updates/issues/9611,Add a new organization to ROR: National Institute for Health Research Applied Research Collaboration South West Peninsula,National Institute for Health Research,https://ror.org/0187kwz08,https://ror.org/01qgn1839,NIHR Applied Research Collaboration South West Peninsula,Child,Release +9921,https://github.com/ror-community/ror-updates/issues/9921,"Add a new organization to ROR: + +European Association for Education Law and Policy",European Association for Education Law and Policy,https://ror.org/016782g02,https://ror.org/006e5kg04,Vrije Universiteit Brussel,Related,Production +9921,https://github.com/ror-community/ror-updates/issues/9921,"Add a new organization to ROR: + +European Association for Education Law and Policy",Vrije Universiteit Brussel,https://ror.org/006e5kg04,https://ror.org/016782g02,European Association for Education Law and Policy,Related,Release +9615,https://github.com/ror-community/ror-updates/issues/9615,Add a new organization to ROR: Emerald Foundation,The Emerald Foundation,https://ror.org/031tb8x29,https://ror.org/02avhnb77,Emerald Group Publishing (United Kingdom),Parent,Production +9615,https://github.com/ror-community/ror-updates/issues/9615,Add a new organization to ROR: Emerald Foundation,Emerald Group Publishing (United Kingdom),https://ror.org/02avhnb77,https://ror.org/031tb8x29,The Emerald Foundation,Child,Release +9612,https://github.com/ror-community/ror-updates/issues/9612,Add a new organization to ROR: Taylor Family Institute for Innovative Psychiatric Research,Taylor Family Institute for Innovative Psychiatric Research,https://ror.org/03x3g5467,https://ror.org/01yc7t268,Washington University in St. Louis,Parent,Production +9612,https://github.com/ror-community/ror-updates/issues/9612,Add a new organization to ROR: Taylor Family Institute for Innovative Psychiatric Research,Washington University in St. Louis,https://ror.org/01yc7t268,https://ror.org/03x3g5467,Taylor Family Institute for Innovative Psychiatric Research,Child,Release +9621,https://github.com/ror-community/ror-updates/issues/9621,Add a new organization to ROR: International Progressive MS Alliance,International Progressive MS Alliance,https://ror.org/04hh1k009,https://ror.org/052gp0981,Multiple Sclerosis International Federation,Parent,Production +9621,https://github.com/ror-community/ror-updates/issues/9621,Add a new organization to ROR: International Progressive MS Alliance,Multiple Sclerosis International Federation,https://ror.org/052gp0981,https://ror.org/04hh1k009,International Progressive MS Alliance,Child,Release +9620,https://github.com/ror-community/ror-updates/issues/9620,Add a new organization to ROR: Center for Innovative Medicine,Center for Innovative Medicine,https://ror.org/04d4pvt78,https://ror.org/037zgn354,Johns Hopkins Medicine,Parent,Production +9620,https://github.com/ror-community/ror-updates/issues/9620,Add a new organization to ROR: Center for Innovative Medicine,Johns Hopkins Medicine,https://ror.org/037zgn354,https://ror.org/04d4pvt78,Center for Innovative Medicine,Child,Release +9619,https://github.com/ror-community/ror-updates/issues/9619,Add a new organization to ROR: Leverhulme Centre for Integrative Research on Agriculture and Health,Leverhulme Centre for Integrative Research on Agriculture and Health,https://ror.org/041qq2t66,https://ror.org/053xt2a19,London International Development Centre,Parent,Production +9619,https://github.com/ror-community/ror-updates/issues/9619,Add a new organization to ROR: Leverhulme Centre for Integrative Research on Agriculture and Health,London International Development Centre,https://ror.org/053xt2a19,https://ror.org/041qq2t66,Leverhulme Centre for Integrative Research on Agriculture and Health,Child,Release +9618,https://github.com/ror-community/ror-updates/issues/9618,Add a new organization to ROR: Scottish Office Home and Health Department,Scottish Home and Health Department,https://ror.org/043xqa828,https://ror.org/03t61s708,Parliament of United Kingdom,Parent,Production +9618,https://github.com/ror-community/ror-updates/issues/9618,Add a new organization to ROR: Scottish Office Home and Health Department,Parliament of United Kingdom,https://ror.org/03t61s708,https://ror.org/043xqa828,Scottish Home and Health Department,Child,Release +9627,https://github.com/ror-community/ror-updates/issues/9627,"Add a new organization to ROR: Center for Wireless Communications, University of California, San Diego",Center for Wireless Communications,https://ror.org/04b57z061,https://ror.org/0168r3w48,"University of California, San Diego",Parent,Production +9627,https://github.com/ror-community/ror-updates/issues/9627,"Add a new organization to ROR: Center for Wireless Communications, University of California, San Diego","University of California, San Diego",https://ror.org/0168r3w48,https://ror.org/04b57z061,Center for Wireless Communications,Child,Release +9624,https://github.com/ror-community/ror-updates/issues/9624,Add a new organization to ROR: National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care North West Coast,NIHR Collaboration for Leadership in Applied Health Research and Care North West Coast,https://ror.org/03tmzq288,https://ror.org/0187kwz08,National Institute for Health Research,Parent,Production +9624,https://github.com/ror-community/ror-updates/issues/9624,Add a new organization to ROR: National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care North West Coast,National Institute for Health Research,https://ror.org/0187kwz08,https://ror.org/03tmzq288,NIHR Collaboration for Leadership in Applied Health Research and Care North West Coast,Child,Release +9623,https://github.com/ror-community/ror-updates/issues/9623,Add a new organization to ROR: Real Colegio Complutense,Real Colegio Complutense,https://ror.org/05b0g2v72,https://ror.org/03vek6s52,Harvard University,Parent,Production +9623,https://github.com/ror-community/ror-updates/issues/9623,Add a new organization to ROR: Real Colegio Complutense,Harvard University,https://ror.org/03vek6s52,https://ror.org/05b0g2v72,Real Colegio Complutense,Child,Release +9630,https://github.com/ror-community/ror-updates/issues/9630,Add a new organization to ROR: MRC Centre for Environment and Health,MRC Centre for Environment and Health,https://ror.org/01vw4c203,https://ror.org/041kmwe10,Imperial College London,Parent,Production +9630,https://github.com/ror-community/ror-updates/issues/9630,Add a new organization to ROR: MRC Centre for Environment and Health,Imperial College London,https://ror.org/041kmwe10,https://ror.org/01vw4c203,MRC Centre for Environment and Health,Child,Release +9630,https://github.com/ror-community/ror-updates/issues/9630,Add a new organization to ROR: MRC Centre for Environment and Health,MRC Centre for Environment and Health,https://ror.org/01vw4c203,https://ror.org/03x94j517,Medical Research Council,Parent,Production +9630,https://github.com/ror-community/ror-updates/issues/9630,Add a new organization to ROR: MRC Centre for Environment and Health,Medical Research Council,https://ror.org/03x94j517,https://ror.org/01vw4c203,MRC Centre for Environment and Health,Child,Release +9629,https://github.com/ror-community/ror-updates/issues/9629,Add a new organization to ROR: Cancer Imaging Centre,Cancer Imaging Centre,https://ror.org/023a2er20,https://ror.org/013meh722,University of Cambridge,Parent,Production +9629,https://github.com/ror-community/ror-updates/issues/9629,Add a new organization to ROR: Cancer Imaging Centre,University of Cambridge,https://ror.org/013meh722,https://ror.org/023a2er20,Cancer Imaging Centre,Child,Release +9629,https://github.com/ror-community/ror-updates/issues/9629,Add a new organization to ROR: Cancer Imaging Centre,Cancer Imaging Centre,https://ror.org/023a2er20,https://ror.org/027m9bs27,University of Manchester,Parent,Production +9629,https://github.com/ror-community/ror-updates/issues/9629,Add a new organization to ROR: Cancer Imaging Centre,University of Manchester,https://ror.org/027m9bs27,https://ror.org/023a2er20,Cancer Imaging Centre,Child,Release +9628,https://github.com/ror-community/ror-updates/issues/9628,"Add a new organization to ROR: Pacific Earthquake Engineering Research Center, University of California Berkeley",Pacific Earthquake Engineering Research Center,https://ror.org/02cq2e244,https://ror.org/01an7q238,"University of California, Berkeley",Parent,Production +9628,https://github.com/ror-community/ror-updates/issues/9628,"Add a new organization to ROR: Pacific Earthquake Engineering Research Center, University of California Berkeley","University of California, Berkeley",https://ror.org/01an7q238,https://ror.org/02cq2e244,Pacific Earthquake Engineering Research Center,Child,Release +9632,https://github.com/ror-community/ror-updates/issues/9632,Add a new organization to ROR: Medical College of Wisconsin Cancer Center,Medical College of Wisconsin Cancer Center,https://ror.org/0115fxs14,https://ror.org/00qqv6244,Medical College of Wisconsin,Parent,Production +9632,https://github.com/ror-community/ror-updates/issues/9632,Add a new organization to ROR: Medical College of Wisconsin Cancer Center,Medical College of Wisconsin,https://ror.org/00qqv6244,https://ror.org/0115fxs14,Medical College of Wisconsin Cancer Center,Child,Release +9638,https://github.com/ror-community/ror-updates/issues/9638,Add a new organization to ROR: National Centre for Energy Systems Integration,National Centre for Energy Systems Integration,https://ror.org/02r4fqa76,https://ror.org/01kj2bm70,Newcastle University,Parent,Production +9638,https://github.com/ror-community/ror-updates/issues/9638,Add a new organization to ROR: National Centre for Energy Systems Integration,Newcastle University,https://ror.org/01kj2bm70,https://ror.org/02r4fqa76,National Centre for Energy Systems Integration,Child,Release +9640,https://github.com/ror-community/ror-updates/issues/9640,Add a new organization to ROR: QuantIC,QuantIC,https://ror.org/04qdwq068,https://ror.org/00vtgdb53,University of Glasgow,Parent,Production +9640,https://github.com/ror-community/ror-updates/issues/9640,Add a new organization to ROR: QuantIC,University of Glasgow,https://ror.org/00vtgdb53,https://ror.org/04qdwq068,QuantIC,Child,Release +9643,https://github.com/ror-community/ror-updates/issues/9643,Add a new organization to ROR: UCL Hospitals Charitable Foundation,UCL Hospitals Charitable Foundation,https://ror.org/05mz0pr34,https://ror.org/02jx3x895,University College London,Parent,Production +9643,https://github.com/ror-community/ror-updates/issues/9643,Add a new organization to ROR: UCL Hospitals Charitable Foundation,University College London,https://ror.org/02jx3x895,https://ror.org/05mz0pr34,UCL Hospitals Charitable Foundation,Child,Release +9642,https://github.com/ror-community/ror-updates/issues/9642,Add a new organization to ROR: Vodafone Foundation,Vodafone Foundation,https://ror.org/03thdsj80,https://ror.org/01v7jrq42,Vodafone (United Kingdom),Parent,Production +9642,https://github.com/ror-community/ror-updates/issues/9642,Add a new organization to ROR: Vodafone Foundation,Vodafone (United Kingdom),https://ror.org/01v7jrq42,https://ror.org/03thdsj80,Vodafone Foundation,Child,Release +9647,https://github.com/ror-community/ror-updates/issues/9647,Add a new organization to ROR: BMA Foundation for Medical Research,BMA Foundation for Medical Research,https://ror.org/03hvdbf98,https://ror.org/02caz1f24,British Medical Association,Parent,Production +9647,https://github.com/ror-community/ror-updates/issues/9647,Add a new organization to ROR: BMA Foundation for Medical Research,British Medical Association,https://ror.org/02caz1f24,https://ror.org/03hvdbf98,BMA Foundation for Medical Research,Child,Release +9645,https://github.com/ror-community/ror-updates/issues/9645,Add a new organization to ROR: Asthma UK Centre for Applied Research,Asthma UK Centre for Applied Research,https://ror.org/04ect1284,https://ror.org/01nrxwf90,University of Edinburgh,Parent,Production +9645,https://github.com/ror-community/ror-updates/issues/9645,Add a new organization to ROR: Asthma UK Centre for Applied Research,University of Edinburgh,https://ror.org/01nrxwf90,https://ror.org/04ect1284,Asthma UK Centre for Applied Research,Child,Release +9648,https://github.com/ror-community/ror-updates/issues/9648,Add a new organization to ROR: Life Sciences Research Network Wales,Life Sciences Research Network Wales,https://ror.org/0526zh358,https://ror.org/03kk7td41,Cardiff University,Parent,Production +9648,https://github.com/ror-community/ror-updates/issues/9648,Add a new organization to ROR: Life Sciences Research Network Wales,Cardiff University,https://ror.org/03kk7td41,https://ror.org/0526zh358,Life Sciences Research Network Wales,Child,Release +9650,https://github.com/ror-community/ror-updates/issues/9650,Add a new organization to ROR: Royal Marsden Cancer Charity,Royal Marsden Cancer Charity,https://ror.org/058ne9w36,https://ror.org/034vb5t35,Royal Marsden Hospital,Parent,Production +9650,https://github.com/ror-community/ror-updates/issues/9650,Add a new organization to ROR: Royal Marsden Cancer Charity,Royal Marsden Hospital,https://ror.org/034vb5t35,https://ror.org/058ne9w36,Royal Marsden Cancer Charity,Child,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/012zs8222,"University at Albany, State University of New York",Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,"University at Albany, State University of New York",https://ror.org/012zs8222,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/008rmbt77,Binghamton University,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Binghamton University,https://ror.org/008rmbt77,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/0306aeb62,SUNY Brockport,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,SUNY Brockport,https://ror.org/0306aeb62,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/01y64my43,"University at Buffalo, State University of New York",Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,"University at Buffalo, State University of New York",https://ror.org/01y64my43,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/01y64my43,"University at Buffalo, State University of New York",Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,"University at Buffalo, State University of New York",https://ror.org/01y64my43,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/03rwgpn18,Clarkson University,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Clarkson University,https://ror.org/03rwgpn18,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/05bnh6r87,Cornell University,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Cornell University,https://ror.org/05bnh6r87,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/05a4pj207,State University of New York College at Cortland,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,State University of New York College at Cortland,https://ror.org/05a4pj207,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/00qv0tw17,SUNY College of Environmental Science and Forestry,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,SUNY College of Environmental Science and Forestry,https://ror.org/00qv0tw17,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/05vrs0r17,SUNY Fredonia,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,SUNY Fredonia,https://ror.org/05vrs0r17,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/03g1q6c06,State University of New York at Geneseo,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,State University of New York at Geneseo,https://ror.org/03g1q6c06,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/004majf41,Hobart and William Smith Colleges,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Hobart and William Smith Colleges,https://ror.org/004majf41,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/01597g643,State University of New York at Oswego,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,State University of New York at Oswego,https://ror.org/01597g643,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/033zmj163,SUNY Plattsburgh,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,SUNY Plattsburgh,https://ror.org/033zmj163,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/032qgrc76,State University of New York at Potsdam,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,State University of New York at Potsdam,https://ror.org/032qgrc76,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/00v4yb702,Rochester Institute of Technology,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Rochester Institute of Technology,https://ror.org/00v4yb702,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/05pvqha70,St. Lawrence University,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,St. Lawrence University,https://ror.org/05pvqha70,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Great Lakes Research Consortium,https://ror.org/05cshtm26,https://ror.org/025r5qe02,Syracuse University,Related,Production +9654,https://github.com/ror-community/ror-updates/issues/9654,Add a new organization to ROR: Great Lakes Research Consortium,Syracuse University,https://ror.org/025r5qe02,https://ror.org/05cshtm26,Great Lakes Research Consortium,Related,Release +9655,https://github.com/ror-community/ror-updates/issues/9655,Add a new organization to ROR: Osher Center for Integrative Medicine,Osher Center for Integrative Medicine,https://ror.org/00wtrxf04,https://ror.org/04b6nzv94,Brigham and Women's Hospital,Parent,Production +9655,https://github.com/ror-community/ror-updates/issues/9655,Add a new organization to ROR: Osher Center for Integrative Medicine,Brigham and Women's Hospital,https://ror.org/04b6nzv94,https://ror.org/00wtrxf04,Osher Center for Integrative Medicine,Child,Release +9956,https://github.com/ror-community/ror-updates/issues/9956,"Add a new organization to ROR: + +Instituto Tecnológico de San Luis Potosí",Instituto Tecnológico de San Luis Potosí,https://ror.org/04w0a0617,https://ror.org/00davry38,National Technological Institute of Mexico,Parent,Production +9956,https://github.com/ror-community/ror-updates/issues/9956,"Add a new organization to ROR: + +Instituto Tecnológico de San Luis Potosí",National Technological Institute of Mexico,https://ror.org/00davry38,https://ror.org/04w0a0617,Instituto Tecnológico de San Luis Potosí,Child,Release +9968,https://github.com/ror-community/ror-updates/issues/9968,"Add a new organization to ROR: + +Lund Trust",Lund Trust,https://ror.org/017d4c820,https://ror.org/051z6e826,Arcadia Fund,Related,Production +9968,https://github.com/ror-community/ror-updates/issues/9968,"Add a new organization to ROR: + +Lund Trust",Arcadia Fund,https://ror.org/051z6e826,https://ror.org/017d4c820,Lund Trust,Related,Release +9977,https://github.com/ror-community/ror-updates/issues/9977,Add a new organization to ROR - University of Oklahoma Schusterman Center,University of Oklahoma - Tulsa,https://ror.org/04g1a0w27,https://ror.org/02aqsxs83,University of Oklahoma,Parent,Production +9977,https://github.com/ror-community/ror-updates/issues/9977,Add a new organization to ROR - University of Oklahoma Schusterman Center,University of Oklahoma,https://ror.org/02aqsxs83,https://ror.org/04g1a0w27,University of Oklahoma - Tulsa,Child,Release +9980,https://github.com/ror-community/ror-updates/issues/9980,"Add a new organization to ROR: + +INFN Gruppo Collegato di Cosenza",INFN Gruppo Collegato di Cosenza,https://ror.org/039epzh36,https://ror.org/005ta0471,Istituto Nazionale di Fisica Nucleare,Parent,Production +9980,https://github.com/ror-community/ror-updates/issues/9980,"Add a new organization to ROR: + +INFN Gruppo Collegato di Cosenza",Istituto Nazionale di Fisica Nucleare,https://ror.org/005ta0471,https://ror.org/039epzh36,INFN Gruppo Collegato di Cosenza,Child,Release +9980,https://github.com/ror-community/ror-updates/issues/9980,"Add a new organization to ROR: + +INFN Gruppo Collegato di Cosenza",INFN Gruppo Collegato di Cosenza,https://ror.org/039epzh36,https://ror.org/02rc97e94,University of Calabria,Related,Production +9980,https://github.com/ror-community/ror-updates/issues/9980,"Add a new organization to ROR: + +INFN Gruppo Collegato di Cosenza",University of Calabria,https://ror.org/02rc97e94,https://ror.org/039epzh36,INFN Gruppo Collegato di Cosenza,Related,Release +9981,https://github.com/ror-community/ror-updates/issues/9981,"Add a new organization to ROR: + +Center for Open Neuroscience",Center for Open Neuroscience,https://ror.org/04tfhh831,https://ror.org/049s0rh22,Dartmouth College,Related,Production +9981,https://github.com/ror-community/ror-updates/issues/9981,"Add a new organization to ROR: + +Center for Open Neuroscience",Dartmouth College,https://ror.org/049s0rh22,https://ror.org/04tfhh831,Center for Open Neuroscience,Related,Release +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",NODES S.c.a.r.l,https://ror.org/04hp1ky92,https://ror.org/00bgk9508,Polytechnic University of Turin,Related,Production +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",Polytechnic University of Turin,https://ror.org/00bgk9508,https://ror.org/04hp1ky92,NODES S.c.a.r.l,Related,Release +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",NODES S.c.a.r.l,https://ror.org/04hp1ky92,https://ror.org/048tbm396,University of Turin,Related,Production +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",University of Turin,https://ror.org/048tbm396,https://ror.org/04hp1ky92,NODES S.c.a.r.l,Related,Release +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",NODES S.c.a.r.l,https://ror.org/04hp1ky92,https://ror.org/04387x656,University of Eastern Piedmont Amadeo Avogadro,Related,Production +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",University of Eastern Piedmont Amadeo Avogadro,https://ror.org/04387x656,https://ror.org/04hp1ky92,NODES S.c.a.r.l,Related,Release +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",NODES S.c.a.r.l,https://ror.org/04hp1ky92,https://ror.org/00s409261,University of Insubria,Related,Production +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",University of Insubria,https://ror.org/00s409261,https://ror.org/04hp1ky92,NODES S.c.a.r.l,Related,Release +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",NODES S.c.a.r.l,https://ror.org/04hp1ky92,https://ror.org/03126ng80,University of Aosta Valley,Related,Production +9990,https://github.com/ror-community/ror-updates/issues/9990,"Add a new organization to ROR: + +HUB NODES Scarl",University of Aosta Valley,https://ror.org/03126ng80,https://ror.org/04hp1ky92,NODES S.c.a.r.l,Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/04b8d7j46,Anabaptist Mennonite Biblical Seminary,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Anabaptist Mennonite Biblical Seminary,https://ror.org/04b8d7j46,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/03cebjr81,Anderson University - Indiana,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Anderson University - Indiana,https://ror.org/03cebjr81,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/02faxbd19,Bethel University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Bethel University,https://ror.org/02faxbd19,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/05gq3a412,Butler University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Butler University,https://ror.org/05gq3a412,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/05vnxnq07,Christian Theological Seminary,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Christian Theological Seminary,https://ror.org/05vnxnq07,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/022fjwc94,Concordia Theological Seminary,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Concordia Theological Seminary,https://ror.org/022fjwc94,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/02mks6v46,DePauw University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",DePauw University,https://ror.org/02mks6v46,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/0566sj483,Earlham College,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Earlham College,https://ror.org/0566sj483,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/05w35s747,Franklin College,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Franklin College,https://ror.org/05w35s747,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/03tj80n37,Goshen College,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Goshen College,https://ror.org/03tj80n37,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/00qsr9g17,Grace College & Seminary,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Grace College & Seminary,https://ror.org/00qsr9g17,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/00vc14296,Hanover College,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Hanover College,https://ror.org/00vc14296,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/054wajj09,Huntington University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Huntington University,https://ror.org/054wajj09,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/02aswte26,Manchester University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Manchester University,https://ror.org/02aswte26,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/00p4ywg82,Marian University - Indiana,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Marian University - Indiana,https://ror.org/00p4ywg82,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/0453rg493,Oakland City University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Oakland City University,https://ror.org/0453rg493,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/045jby416,Saint Mary-of-the-Woods College,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Saint Mary-of-the-Woods College,https://ror.org/045jby416,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/02r839n55,Saint Mary's College,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Saint Mary's College,https://ror.org/02r839n55,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/05tyqjm34,Saint Meinrad Seminary and School of Theology,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Saint Meinrad Seminary and School of Theology,https://ror.org/05tyqjm34,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/005aghs32,Taylor University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Taylor University,https://ror.org/005aghs32,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/038e0dv78,Trine University,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Trine University,https://ror.org/038e0dv78,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/052133d12,University of Indianapolis,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",University of Indianapolis,https://ror.org/052133d12,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/01h6pze39,University of Saint Francis,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",University of Saint Francis,https://ror.org/01h6pze39,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)","Private Academic Library Network of Indiana, Inc. (PALNI)",https://ror.org/05dch6316,https://ror.org/00p11pk44,Wabash College,Related,Production +9993,https://github.com/ror-community/ror-updates/issues/9993,"Add a new organization to ROR: + +Private Academic Library Network of Indiana, Inc. (PALNI)",Wabash College,https://ror.org/00p11pk44,https://ror.org/05dch6316,"Private Academic Library Network of Indiana, Inc. (PALNI)",Related,Release +10020,https://github.com/ror-community/ror-updates/issues/10020,Add a new organization to ROR: NVIDIA (Italy),NVIDIA (Italy),https://ror.org/04z2hsy54,https://ror.org/03jdj4y14,Nvidia (United States),Parent,Production +10020,https://github.com/ror-community/ror-updates/issues/10020,Add a new organization to ROR: NVIDIA (Italy),Nvidia (United States),https://ror.org/03jdj4y14,https://ror.org/04z2hsy54,NVIDIA (Italy),Child,Release +10024,https://github.com/ror-community/ror-updates/issues/10024,Add a new organization to ROR: Institutul de Studii Sud-Est Europene,Institutul de Studii Sud-Est Europene,https://ror.org/007bytg49,https://ror.org/0561n6946,Romanian Academy,Parent,Production +10024,https://github.com/ror-community/ror-updates/issues/10024,Add a new organization to ROR: Institutul de Studii Sud-Est Europene,Romanian Academy,https://ror.org/0561n6946,https://ror.org/007bytg49,Institutul de Studii Sud-Est Europene,Child,Release +10052,https://github.com/ror-community/ror-updates/issues/10052,Add a new organization to ROR - Instituto de Ciências Sociais da Universidade de Lisboa,Instituto de Ciências Sociais,https://ror.org/020rfvw83,https://ror.org/01c27hj86,University of Lisbon,Parent,Production +10052,https://github.com/ror-community/ror-updates/issues/10052,Add a new organization to ROR - Instituto de Ciências Sociais da Universidade de Lisboa,University of Lisbon,https://ror.org/01c27hj86,https://ror.org/020rfvw83,Instituto de Ciências Sociais,Child,Release +10051,https://github.com/ror-community/ror-updates/issues/10051,Add a new organization to ROR - Instituto de Medicina Molecular,Instituto de Medicina Molecular João Lobo Antunes,https://ror.org/019g8w217,https://ror.org/01c27hj86,University of Lisbon,Parent,Production +10051,https://github.com/ror-community/ror-updates/issues/10051,Add a new organization to ROR - Instituto de Medicina Molecular,University of Lisbon,https://ror.org/01c27hj86,https://ror.org/019g8w217,Instituto de Medicina Molecular João Lobo Antunes,Child,Release +10049,https://github.com/ror-community/ror-updates/issues/10049,Add a new organization to ROR - Instituto Superior de Engenharia do Porto,Instituto Superior de Engenharia do Porto,https://ror.org/04h7zpy51,https://ror.org/04988re48,Polytechnic Institute of Porto,Parent,Production +10049,https://github.com/ror-community/ror-updates/issues/10049,Add a new organization to ROR - Instituto Superior de Engenharia do Porto,Polytechnic Institute of Porto,https://ror.org/04988re48,https://ror.org/04h7zpy51,Instituto Superior de Engenharia do Porto,Child,Release +10048,https://github.com/ror-community/ror-updates/issues/10048,Add a new organization to ROR: Fundación para la Investigación Médica Aplicada,Fundación para la Investigación Médica Aplicada,https://ror.org/01qew8q20,https://ror.org/02rxc7m23,Universidad de Navarra,Related,Production +10048,https://github.com/ror-community/ror-updates/issues/10048,Add a new organization to ROR: Fundación para la Investigación Médica Aplicada,Universidad de Navarra,https://ror.org/02rxc7m23,https://ror.org/01qew8q20,Fundación para la Investigación Médica Aplicada,Related,Release +10044,https://github.com/ror-community/ror-updates/issues/10044,Add a new organization to ROR: Centro de Estudos Sociais,Centro de Estudos Sociais,https://ror.org/04fab7w85,https://ror.org/04z8k9a98,University of Coimbra,Parent,Production +10044,https://github.com/ror-community/ror-updates/issues/10044,Add a new organization to ROR: Centro de Estudos Sociais,University of Coimbra,https://ror.org/04z8k9a98,https://ror.org/04fab7w85,Centro de Estudos Sociais,Child,Release +10039,https://github.com/ror-community/ror-updates/issues/10039,Add a new organization to ROR: Fondazione Ricerca Biomedica Avanzata Onlus - VIMM,Fondazione Ricerca Biomedica Avanzata Onlus - VIMM,https://ror.org/03q5e6q66,https://ror.org/0048jxt15,Veneto Institute of Molecular Medicine Home,Related,Release +10039,https://github.com/ror-community/ror-updates/issues/10039,Add a new organization to ROR: Fondazione Ricerca Biomedica Avanzata Onlus - VIMM,Veneto Institute of Molecular Medicine Home,https://ror.org/0048jxt15,https://ror.org/03q5e6q66,Fondazione Ricerca Biomedica Avanzata Onlus - VIMM,Related,Release +10030,https://github.com/ror-community/ror-updates/issues/10030,Add a new organization to ROR: The Aga Khan University (International) in the United Kingdom,The Aga Khan University (International) in the United Kingdom,https://ror.org/04m2z2476,https://ror.org/03gd0dm95,Aga Khan University,Parent,Production +10030,https://github.com/ror-community/ror-updates/issues/10030,Add a new organization to ROR: The Aga Khan University (International) in the United Kingdom,Aga Khan University,https://ror.org/03gd0dm95,https://ror.org/04m2z2476,The Aga Khan University (International) in the United Kingdom,Child,Release +10072,https://github.com/ror-community/ror-updates/issues/10072,"Add a new organization to ROR: + +Instituto Politécnico",Instituto Politécnico do Rio de Janeiro,https://ror.org/01g0jwx42,https://ror.org/0198v2949,Rio de Janeiro State University,Parent,Production +10072,https://github.com/ror-community/ror-updates/issues/10072,"Add a new organization to ROR: + +Instituto Politécnico",Rio de Janeiro State University,https://ror.org/0198v2949,https://ror.org/01g0jwx42,Instituto Politécnico do Rio de Janeiro,Child,Release +10071,https://github.com/ror-community/ror-updates/issues/10071,"Add a new organization to ROR: + +Vaccine & Gene Therapy Institute",Vaccine and Gene Therapy Institute,https://ror.org/00d4pqn65,https://ror.org/009avj582,Oregon Health & Science University,Parent,Production +10071,https://github.com/ror-community/ror-updates/issues/10071,"Add a new organization to ROR: + +Vaccine & Gene Therapy Institute",Oregon Health & Science University,https://ror.org/009avj582,https://ror.org/00d4pqn65,Vaccine and Gene Therapy Institute,Child,Release +10060,https://github.com/ror-community/ror-updates/issues/10060,Modify the information in an existing ROR record: Ghana Health Service - https://ror.org/052ss8w32,Ghana Health Service,https://ror.org/052ss8w32,https://ror.org/05c7h4935,Ministry of Health,Parent,Release +10060,https://github.com/ror-community/ror-updates/issues/10060,Modify the information in an existing ROR record: Ghana Health Service - https://ror.org/052ss8w32,Ministry of Health,https://ror.org/05c7h4935,https://ror.org/052ss8w32,Ghana Health Service,Child,Release +10062,https://github.com/ror-community/ror-updates/issues/10062,"Modify the information in an existing ROR record: +Université Saint-Louis https://ror.org/02ygek028 +",Université Saint-Louis,https://ror.org/02ygek028,https://ror.org/02495e989,UCLouvain,Parent,Release +10062,https://github.com/ror-community/ror-updates/issues/10062,"Modify the information in an existing ROR record: +Université Saint-Louis https://ror.org/02ygek028 +",UCLouvain,https://ror.org/02495e989,https://ror.org/02ygek028,Université Saint-Louis,Child,Release +10079,https://github.com/ror-community/ror-updates/issues/10079,"Modify the information in an existing ROR record: +Fresenius Medical Care (Germany) https://ror.org/04sk0bj73 +",Fresenius Medical Care (Germany),https://ror.org/04sk0bj73,https://ror.org/01v376g59,Fresenius (Germany),Related,Release +10079,https://github.com/ror-community/ror-updates/issues/10079,"Modify the information in an existing ROR record: +Fresenius Medical Care (Germany) https://ror.org/04sk0bj73 +",Fresenius (Germany),https://ror.org/01v376g59,https://ror.org/04sk0bj73,Fresenius Medical Care (Germany),Related,Release +10084,https://github.com/ror-community/ror-updates/issues/10084,Modify the information in an existing ROR record: Einaudi Institute for Economics and Finance - https://ror.org/04e874t64,Einaudi Institute for Economics and Finance,https://ror.org/04e874t64,https://ror.org/03v2nbx43,Bank of Italy,Related,Production +10084,https://github.com/ror-community/ror-updates/issues/10084,Modify the information in an existing ROR record: Einaudi Institute for Economics and Finance - https://ror.org/04e874t64,Bank of Italy,https://ror.org/03v2nbx43,https://ror.org/04e874t64,Einaudi Institute for Economics and Finance,Related,Release +10077,https://github.com/ror-community/ror-updates/issues/10077,Add a new organization to ROR: Central Adelaide Local Health Network,Central Adelaide Local Health Network,https://ror.org/02r40rn49,https://ror.org/00carf720,Royal Adelaide Hospital,Child,Production +10077,https://github.com/ror-community/ror-updates/issues/10077,Add a new organization to ROR: Central Adelaide Local Health Network,Royal Adelaide Hospital,https://ror.org/00carf720,https://ror.org/02r40rn49,Central Adelaide Local Health Network,Parent,Release +10077,https://github.com/ror-community/ror-updates/issues/10077,Add a new organization to ROR: Central Adelaide Local Health Network,Central Adelaide Local Health Network,https://ror.org/02r40rn49,https://ror.org/00x362k69,Queen Elizabeth Hospital,Child,Production +10077,https://github.com/ror-community/ror-updates/issues/10077,Add a new organization to ROR: Central Adelaide Local Health Network,Queen Elizabeth Hospital,https://ror.org/00x362k69,https://ror.org/02r40rn49,Central Adelaide Local Health Network,Parent,Release